Object Detection Notes
Introduction Task description Object detection is a computer technology related to computer vision and image processing that deals with detecting instances of semantic objects of a certain class ...
Introduction Task description Object detection is a computer technology related to computer vision and image processing that deals with detecting instances of semantic objects of a certain class ...
Setup Project Virtual Environment python -m venv .venv . .venv/bin/activate pip install django pip install djangorestframework pip install markdown # Markdown support for the browsable API p...
Heading Markdown supports 6 levels of heading with # x n={1, 2, 3, 4, 5, 6} # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ##### Heading 6 Emphasizing Italic This ...
If you are only interested in the usage of Git, jump to here. Introduction to Version Control Systems (VCS) Local VCS Many people’s version-control method of choice is to copy files into anothe...
VPN Software Clash for Windows - Release Terminal macOS and Linux The environment variables for proxy are http_proxy, https_proxy, and all_proxy. The port I used (also the default for C...
Quick Introduction Python is an interpreted programming language where codes go through a program called interpreter, which reads and executes the code line by line. Flexible Platform indepe...
Variables Naming Conventions Most popular naming conventions For example, naming two variables first name and last name Camel Case firstName, lastName Snake Case ...