├── .github ├── issues_labeler.yml └── workflows │ ├── greetings.yml │ └── issues_labeler.yml ├── .gitignore ├── 01. Basic operations ├── drawingOnImage.py ├── gettingStarted.py ├── gettingStartedWithVideos.py ├── mouseEvents.py ├── savingVideosFromCamera.py ├── usingMatplotlib.py └── usingSkimage.py ├── 02. Core operations ├── README.md ├── arithmaticOperations.py ├── basicImageMerge.py ├── binaryThresholding.py ├── cropping.py └── resizing.py ├── 03. Edge Detection ├── CannyEdgeRealTime.py ├── README.md └── cannyEdgeDetection.py ├── 04. Image Filter ├── SkImageFilter.py ├── bilateralFilter.py └── colorFiltering.py ├── 05. Corner Detection └── cornerDetection.py ├── 06. Background subtraction ├── liveBackgroundSubtraction.py ├── mogBackgroundDetection.py └── runningAverage.py ├── 07. Face Detection ├── README.md ├── blurTheFace.py ├── faceDetectionDNN.py ├── faceDetectionHaarCascade.py ├── realTimeFaceDetection.py ├── realTimeFaceDetectionDNN.py └── smileDetection.py ├── 08. Object Detection ├── README.md └── ojectDetectionCVLIB.py ├── 09. Template Matching ├── README.md └── portMatching.py ├── 10. Invisible_Cloak └── invisiblecloak.py ├── 11. Optical Flow └── opticalFlow.py ├── 12. Blob Detection └── blobDetection.py ├── 13. contouring ├── README.md ├── contouring.py ├── liveContourDetection.py └── shapeDetection.py ├── 14. ImageOperations ├── colvolutionaFeature.py ├── filterVGG16.py ├── imageEnocdingDecoding.py └── simpleImageOperations.py ├── 15. VirtualPen └── README.md ├── 16. EyeBall Tracking └── README.md ├── 17. Color Trackbar └── colorTrackbar.py ├── 18. SIFT Feature Extraction ├── README.md ├── basic.py └── compareFeatures.py ├── 19. Hog Feature Extraction ├── README.md └── featureExtractor.py ├── 20. Image Segmentation ├── KmeansImageSegmentation.py ├── README.md └── waterShedAlgorithm.py ├── 21. Facial Recognition ├── FaceRec.py ├── README.md └── images │ └── obama.jpg ├── 22. Optical Character Recognition └── README.md ├── 23. PixelLib Segmentation ├── README.md └── instanceSegmentationExample.py ├── 24. Road Lane Detection ├── README.md └── laneDetection.py ├── CONTRIBUTING.md ├── LICENSE ├── Media ├── Man_United.jpeg ├── Shape_Detected.png ├── Shapes.png ├── apple.jpeg ├── bnw.jfif ├── book.png ├── book_on_table.jpeg ├── coins.jpg ├── coins_hog.png ├── corner_detection.jpg ├── cropped image1.png ├── edge-detection.jpg ├── face-001.jpg ├── face-detected-dnn.jpeg ├── face-detected.jpeg ├── nature.png ├── nature_output.png ├── opencv-logo-white.png ├── pieboard-templatematching.jpg ├── port-detected.jpeg ├── port-templatematching.jpg ├── road.jpg ├── road_segmentation.jpg ├── sample.jpeg ├── sample2.jpeg ├── thumbs_up_down.jpg └── thumbs_up_down_countour.jpg ├── README.md ├── _config.yml ├── assets ├── deploy.prototxt.txt ├── haarcascade_eye.xml ├── haarcascade_frontalface_default.xml └── haarcascade_smile.xml ├── requirements.txt └── utils.py /.github/issues_labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/.github/issues_labeler.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/issues_labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/.github/workflows/issues_labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/.gitignore -------------------------------------------------------------------------------- /01. Basic operations/drawingOnImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/01. Basic operations/drawingOnImage.py -------------------------------------------------------------------------------- /01. Basic operations/gettingStarted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/01. Basic operations/gettingStarted.py -------------------------------------------------------------------------------- /01. Basic operations/gettingStartedWithVideos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/01. Basic operations/gettingStartedWithVideos.py -------------------------------------------------------------------------------- /01. Basic operations/mouseEvents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/01. Basic operations/mouseEvents.py -------------------------------------------------------------------------------- /01. Basic operations/savingVideosFromCamera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/01. Basic operations/savingVideosFromCamera.py -------------------------------------------------------------------------------- /01. Basic operations/usingMatplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/01. Basic operations/usingMatplotlib.py -------------------------------------------------------------------------------- /01. Basic operations/usingSkimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/01. Basic operations/usingSkimage.py -------------------------------------------------------------------------------- /02. Core operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/02. Core operations/README.md -------------------------------------------------------------------------------- /02. Core operations/arithmaticOperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/02. Core operations/arithmaticOperations.py -------------------------------------------------------------------------------- /02. Core operations/basicImageMerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/02. Core operations/basicImageMerge.py -------------------------------------------------------------------------------- /02. Core operations/binaryThresholding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/02. Core operations/binaryThresholding.py -------------------------------------------------------------------------------- /02. Core operations/cropping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/02. Core operations/cropping.py -------------------------------------------------------------------------------- /02. Core operations/resizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/02. Core operations/resizing.py -------------------------------------------------------------------------------- /03. Edge Detection/CannyEdgeRealTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/03. Edge Detection/CannyEdgeRealTime.py -------------------------------------------------------------------------------- /03. Edge Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/03. Edge Detection/README.md -------------------------------------------------------------------------------- /03. Edge Detection/cannyEdgeDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/03. Edge Detection/cannyEdgeDetection.py -------------------------------------------------------------------------------- /04. Image Filter/SkImageFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/04. Image Filter/SkImageFilter.py -------------------------------------------------------------------------------- /04. Image Filter/bilateralFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/04. Image Filter/bilateralFilter.py -------------------------------------------------------------------------------- /04. Image Filter/colorFiltering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/04. Image Filter/colorFiltering.py -------------------------------------------------------------------------------- /05. Corner Detection/cornerDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/05. Corner Detection/cornerDetection.py -------------------------------------------------------------------------------- /06. Background subtraction/liveBackgroundSubtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/06. Background subtraction/liveBackgroundSubtraction.py -------------------------------------------------------------------------------- /06. Background subtraction/mogBackgroundDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/06. Background subtraction/mogBackgroundDetection.py -------------------------------------------------------------------------------- /06. Background subtraction/runningAverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/06. Background subtraction/runningAverage.py -------------------------------------------------------------------------------- /07. Face Detection/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07. Face Detection/blurTheFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/07. Face Detection/blurTheFace.py -------------------------------------------------------------------------------- /07. Face Detection/faceDetectionDNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/07. Face Detection/faceDetectionDNN.py -------------------------------------------------------------------------------- /07. Face Detection/faceDetectionHaarCascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/07. Face Detection/faceDetectionHaarCascade.py -------------------------------------------------------------------------------- /07. Face Detection/realTimeFaceDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/07. Face Detection/realTimeFaceDetection.py -------------------------------------------------------------------------------- /07. Face Detection/realTimeFaceDetectionDNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/07. Face Detection/realTimeFaceDetectionDNN.py -------------------------------------------------------------------------------- /07. Face Detection/smileDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/07. Face Detection/smileDetection.py -------------------------------------------------------------------------------- /08. Object Detection/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08. Object Detection/ojectDetectionCVLIB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/08. Object Detection/ojectDetectionCVLIB.py -------------------------------------------------------------------------------- /09. Template Matching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/09. Template Matching/README.md -------------------------------------------------------------------------------- /09. Template Matching/portMatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/09. Template Matching/portMatching.py -------------------------------------------------------------------------------- /10. Invisible_Cloak/invisiblecloak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/10. Invisible_Cloak/invisiblecloak.py -------------------------------------------------------------------------------- /11. Optical Flow/opticalFlow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/11. Optical Flow/opticalFlow.py -------------------------------------------------------------------------------- /12. Blob Detection/blobDetection.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13. contouring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/13. contouring/README.md -------------------------------------------------------------------------------- /13. contouring/contouring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/13. contouring/contouring.py -------------------------------------------------------------------------------- /13. contouring/liveContourDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/13. contouring/liveContourDetection.py -------------------------------------------------------------------------------- /13. contouring/shapeDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/13. contouring/shapeDetection.py -------------------------------------------------------------------------------- /14. ImageOperations/colvolutionaFeature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/14. ImageOperations/colvolutionaFeature.py -------------------------------------------------------------------------------- /14. ImageOperations/filterVGG16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/14. ImageOperations/filterVGG16.py -------------------------------------------------------------------------------- /14. ImageOperations/imageEnocdingDecoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/14. ImageOperations/imageEnocdingDecoding.py -------------------------------------------------------------------------------- /14. ImageOperations/simpleImageOperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/14. ImageOperations/simpleImageOperations.py -------------------------------------------------------------------------------- /15. VirtualPen/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /16. EyeBall Tracking/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. Color Trackbar/colorTrackbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/17. Color Trackbar/colorTrackbar.py -------------------------------------------------------------------------------- /18. SIFT Feature Extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/18. SIFT Feature Extraction/README.md -------------------------------------------------------------------------------- /18. SIFT Feature Extraction/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/18. SIFT Feature Extraction/basic.py -------------------------------------------------------------------------------- /18. SIFT Feature Extraction/compareFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/18. SIFT Feature Extraction/compareFeatures.py -------------------------------------------------------------------------------- /19. Hog Feature Extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/19. Hog Feature Extraction/README.md -------------------------------------------------------------------------------- /19. Hog Feature Extraction/featureExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/19. Hog Feature Extraction/featureExtractor.py -------------------------------------------------------------------------------- /20. Image Segmentation/KmeansImageSegmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/20. Image Segmentation/KmeansImageSegmentation.py -------------------------------------------------------------------------------- /20. Image Segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/20. Image Segmentation/README.md -------------------------------------------------------------------------------- /20. Image Segmentation/waterShedAlgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/20. Image Segmentation/waterShedAlgorithm.py -------------------------------------------------------------------------------- /21. Facial Recognition/FaceRec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/21. Facial Recognition/FaceRec.py -------------------------------------------------------------------------------- /21. Facial Recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/21. Facial Recognition/README.md -------------------------------------------------------------------------------- /21. Facial Recognition/images/obama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/21. Facial Recognition/images/obama.jpg -------------------------------------------------------------------------------- /22. Optical Character Recognition/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23. PixelLib Segmentation/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23. PixelLib Segmentation/instanceSegmentationExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/23. PixelLib Segmentation/instanceSegmentationExample.py -------------------------------------------------------------------------------- /24. Road Lane Detection/README.md: -------------------------------------------------------------------------------- 1 | # Road Lane Detection 2 | -------------------------------------------------------------------------------- /24. Road Lane Detection/laneDetection.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/Man_United.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/Man_United.jpeg -------------------------------------------------------------------------------- /Media/Shape_Detected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/Shape_Detected.png -------------------------------------------------------------------------------- /Media/Shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/Shapes.png -------------------------------------------------------------------------------- /Media/apple.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/apple.jpeg -------------------------------------------------------------------------------- /Media/bnw.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/bnw.jfif -------------------------------------------------------------------------------- /Media/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/book.png -------------------------------------------------------------------------------- /Media/book_on_table.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/book_on_table.jpeg -------------------------------------------------------------------------------- /Media/coins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/coins.jpg -------------------------------------------------------------------------------- /Media/coins_hog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/coins_hog.png -------------------------------------------------------------------------------- /Media/corner_detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/corner_detection.jpg -------------------------------------------------------------------------------- /Media/cropped image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/cropped image1.png -------------------------------------------------------------------------------- /Media/edge-detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/edge-detection.jpg -------------------------------------------------------------------------------- /Media/face-001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/face-001.jpg -------------------------------------------------------------------------------- /Media/face-detected-dnn.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/face-detected-dnn.jpeg -------------------------------------------------------------------------------- /Media/face-detected.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/face-detected.jpeg -------------------------------------------------------------------------------- /Media/nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/nature.png -------------------------------------------------------------------------------- /Media/nature_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/nature_output.png -------------------------------------------------------------------------------- /Media/opencv-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/opencv-logo-white.png -------------------------------------------------------------------------------- /Media/pieboard-templatematching.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/pieboard-templatematching.jpg -------------------------------------------------------------------------------- /Media/port-detected.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/port-detected.jpeg -------------------------------------------------------------------------------- /Media/port-templatematching.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/port-templatematching.jpg -------------------------------------------------------------------------------- /Media/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/road.jpg -------------------------------------------------------------------------------- /Media/road_segmentation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/road_segmentation.jpg -------------------------------------------------------------------------------- /Media/sample.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/sample.jpeg -------------------------------------------------------------------------------- /Media/sample2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/sample2.jpeg -------------------------------------------------------------------------------- /Media/thumbs_up_down.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/thumbs_up_down.jpg -------------------------------------------------------------------------------- /Media/thumbs_up_down_countour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/Media/thumbs_up_down_countour.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/deploy.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/assets/deploy.prototxt.txt -------------------------------------------------------------------------------- /assets/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/assets/haarcascade_eye.xml -------------------------------------------------------------------------------- /assets/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/assets/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /assets/haarcascade_smile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/assets/haarcascade_smile.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/ComputerVision-Essentials/HEAD/utils.py --------------------------------------------------------------------------------