diff --git a/cmd/README.md b/cmd/README.md index 27e2c241..ab6cbb8c 100644 --- a/cmd/README.md +++ b/cmd/README.md @@ -34,6 +34,10 @@ Opens a video capture device, then streams MJPEG from it that you can view in an Opens a video capture device, then processes it looking for motion, human or otherwise. +## Pose + +Advanced Deep Neural Network example does pose detection. + ## Saveimage Capture a single frame from a connected webcam, then save it to an image file on disk. @@ -46,6 +50,10 @@ Capture video from a connected camera, and save 100 frames worth to a video file Open an image file from disk, then display it in a window. +## SSD-Facedetect + +Advanced Deep Neural Network example uses SSD classifier to detect faces. + ## TF Classifier Capture video from a connected webcam, then use the Tensorflow machine learning framework to classify whatever is in front of the camera. diff --git a/cmd/dnn-advanced/pose.go b/cmd/pose/main.go similarity index 100% rename from cmd/dnn-advanced/pose.go rename to cmd/pose/main.go diff --git a/cmd/dnn-advanced/ssd-facedetect.go b/cmd/ssd-facedetect/main.go similarity index 100% rename from cmd/dnn-advanced/ssd-facedetect.go rename to cmd/ssd-facedetect/main.go