Rename repo and move python files to src
This commit is contained in:
		@@ -7,4 +7,4 @@ WORKDIR /app
 | 
				
			|||||||
COPY . /app
 | 
					COPY . /app
 | 
				
			||||||
RUN pip install -r requirements.txt
 | 
					RUN pip install -r requirements.txt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CMD python main.py
 | 
					CMD python src/main.py
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,4 +1,5 @@
 | 
				
			|||||||
# CVZone MQTT Tracker
 | 
					# Face Detect MQTT
 | 
				
			||||||
 | 
					Face and Hand Gesture detector that emits MQTT events on detection
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Raspberry Pi Pre-requisites (using the RPi Camera Module)
 | 
					## Raspberry Pi Pre-requisites (using the RPi Camera Module)
 | 
				
			||||||
*Required*: Raspberry Pi OS 64-bit
 | 
					*Required*: Raspberry Pi OS 64-bit
 | 
				
			||||||
@@ -26,8 +27,8 @@ docker run \
 | 
				
			|||||||
  -e MQTT_PORT="1883" \
 | 
					  -e MQTT_PORT="1883" \
 | 
				
			||||||
  -e MQTT_CLIENT_ID="cvzone_tracker_01" \
 | 
					  -e MQTT_CLIENT_ID="cvzone_tracker_01" \
 | 
				
			||||||
  -e MIN_FACE_SCORE="0.5" \
 | 
					  -e MIN_FACE_SCORE="0.5" \
 | 
				
			||||||
  --name=cvzone-mqtt-tracker \ 
 | 
					  --name=face-detect-mqtt \ 
 | 
				
			||||||
  selexin/cvzone-mqtt-tracker:latest
 | 
					  selexin/face-detect-mqtt:latest
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Manually install and run
 | 
					## Manually install and run
 | 
				
			||||||
@@ -36,5 +37,5 @@ sudo apt update
 | 
				
			|||||||
sudo apt install pyhton3 python3-opencv
 | 
					sudo apt install pyhton3 python3-opencv
 | 
				
			||||||
sudo pip3 install -r requirements.txt
 | 
					sudo pip3 install -r requirements.txt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
python3 main.py
 | 
					python3 src/main.py
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,5 +9,5 @@ docker buildx inspect --bootstrap
 | 
				
			|||||||
docker buildx build \
 | 
					docker buildx build \
 | 
				
			||||||
  --push \
 | 
					  --push \
 | 
				
			||||||
  --platform linux/arm64/v8,linux/amd64 \
 | 
					  --platform linux/arm64/v8,linux/amd64 \
 | 
				
			||||||
  --tag selexin/cvzone-mqtt-tracker:latest .
 | 
					  --tag selexin/face-detect-mqtt:latest .
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user