├── CaseStudies ├── chapter2 │ ├── cascades │ │ ├── .DS_Store │ │ ├── haarcascade_eye.xml │ │ └── haarcascade_frontalface_default.xml │ ├── detect_faces.py │ ├── face_detector.py │ ├── face_detector.pyc │ └── images │ │ ├── .DS_Store │ │ ├── messi.png │ │ ├── messi2.png │ │ ├── obama.png │ │ └── obama2.png ├── chapter3 │ ├── cam.py │ ├── cascades │ │ ├── haarcascade_eye.xml │ │ └── haarcascade_frontalface_default.xml │ └── packages │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── face_detector.py │ │ └── face_detector.pyc ├── chapter4 │ └── track.py ├── chapter5 │ ├── cascades │ │ ├── .DS_Store │ │ ├── haarcascade_eye.xml │ │ └── haarcascade_frontalface_default.xml │ ├── detect_eyes.py │ └── packages │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── eyetracker.py │ │ └── eyetracker.pyc └── video │ ├── .DS_Store │ └── iphonecase.mov ├── chapter10 ├── canny.py └── sobel_and_laplacian.py ├── chapter11 └── counting_coins.py ├── chapter5 └── drawing.py ├── chapter6 ├── arithmetic.py ├── bitwise.py ├── colorspaces.py ├── crop.py ├── flipping.py ├── imutils.py ├── imutils.pyc ├── masking.py ├── resize.py ├── rotation.py ├── splitting_and_merging.py └── translation.py ├── chapter7 ├── color_histograms.py ├── equalize.py ├── grayscale_histogram.py └── histogram_with_mask.py ├── chapter8 └── blurring.py ├── chapter9 ├── adaptive_thresholding.py ├── otsu_and_riddler.py └── simple_thresholding.py ├── getting_and_setting.py ├── images ├── TRex.jpg ├── beach.png ├── coins.png ├── landscape.bmp ├── newImage.jpg └── wave.png └── load_display_save.py /CaseStudies/chapter2/cascades/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/cascades/.DS_Store -------------------------------------------------------------------------------- /CaseStudies/chapter2/cascades/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/cascades/haarcascade_eye.xml -------------------------------------------------------------------------------- /CaseStudies/chapter2/cascades/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/cascades/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /CaseStudies/chapter2/detect_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/detect_faces.py -------------------------------------------------------------------------------- /CaseStudies/chapter2/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/face_detector.py -------------------------------------------------------------------------------- /CaseStudies/chapter2/face_detector.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/face_detector.pyc -------------------------------------------------------------------------------- /CaseStudies/chapter2/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/images/.DS_Store -------------------------------------------------------------------------------- /CaseStudies/chapter2/images/messi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/images/messi.png -------------------------------------------------------------------------------- /CaseStudies/chapter2/images/messi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/images/messi2.png -------------------------------------------------------------------------------- /CaseStudies/chapter2/images/obama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/images/obama.png -------------------------------------------------------------------------------- /CaseStudies/chapter2/images/obama2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter2/images/obama2.png -------------------------------------------------------------------------------- /CaseStudies/chapter3/cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter3/cam.py -------------------------------------------------------------------------------- /CaseStudies/chapter3/cascades/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter3/cascades/haarcascade_eye.xml -------------------------------------------------------------------------------- /CaseStudies/chapter3/cascades/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter3/cascades/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /CaseStudies/chapter3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CaseStudies/chapter3/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter3/packages/__init__.pyc -------------------------------------------------------------------------------- /CaseStudies/chapter3/packages/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter3/packages/face_detector.py -------------------------------------------------------------------------------- /CaseStudies/chapter3/packages/face_detector.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter3/packages/face_detector.pyc -------------------------------------------------------------------------------- /CaseStudies/chapter4/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter4/track.py -------------------------------------------------------------------------------- /CaseStudies/chapter5/cascades/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter5/cascades/.DS_Store -------------------------------------------------------------------------------- /CaseStudies/chapter5/cascades/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter5/cascades/haarcascade_eye.xml -------------------------------------------------------------------------------- /CaseStudies/chapter5/cascades/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter5/cascades/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /CaseStudies/chapter5/detect_eyes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter5/detect_eyes.py -------------------------------------------------------------------------------- /CaseStudies/chapter5/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CaseStudies/chapter5/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter5/packages/__init__.pyc -------------------------------------------------------------------------------- /CaseStudies/chapter5/packages/eyetracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter5/packages/eyetracker.py -------------------------------------------------------------------------------- /CaseStudies/chapter5/packages/eyetracker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/chapter5/packages/eyetracker.pyc -------------------------------------------------------------------------------- /CaseStudies/video/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/video/.DS_Store -------------------------------------------------------------------------------- /CaseStudies/video/iphonecase.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/CaseStudies/video/iphonecase.mov -------------------------------------------------------------------------------- /chapter10/canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter10/canny.py -------------------------------------------------------------------------------- /chapter10/sobel_and_laplacian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter10/sobel_and_laplacian.py -------------------------------------------------------------------------------- /chapter11/counting_coins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter11/counting_coins.py -------------------------------------------------------------------------------- /chapter5/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter5/drawing.py -------------------------------------------------------------------------------- /chapter6/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/arithmetic.py -------------------------------------------------------------------------------- /chapter6/bitwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/bitwise.py -------------------------------------------------------------------------------- /chapter6/colorspaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/colorspaces.py -------------------------------------------------------------------------------- /chapter6/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/crop.py -------------------------------------------------------------------------------- /chapter6/flipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/flipping.py -------------------------------------------------------------------------------- /chapter6/imutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/imutils.py -------------------------------------------------------------------------------- /chapter6/imutils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/imutils.pyc -------------------------------------------------------------------------------- /chapter6/masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/masking.py -------------------------------------------------------------------------------- /chapter6/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/resize.py -------------------------------------------------------------------------------- /chapter6/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/rotation.py -------------------------------------------------------------------------------- /chapter6/splitting_and_merging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/splitting_and_merging.py -------------------------------------------------------------------------------- /chapter6/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter6/translation.py -------------------------------------------------------------------------------- /chapter7/color_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter7/color_histograms.py -------------------------------------------------------------------------------- /chapter7/equalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter7/equalize.py -------------------------------------------------------------------------------- /chapter7/grayscale_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter7/grayscale_histogram.py -------------------------------------------------------------------------------- /chapter7/histogram_with_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter7/histogram_with_mask.py -------------------------------------------------------------------------------- /chapter8/blurring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter8/blurring.py -------------------------------------------------------------------------------- /chapter9/adaptive_thresholding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter9/adaptive_thresholding.py -------------------------------------------------------------------------------- /chapter9/otsu_and_riddler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter9/otsu_and_riddler.py -------------------------------------------------------------------------------- /chapter9/simple_thresholding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/chapter9/simple_thresholding.py -------------------------------------------------------------------------------- /getting_and_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/getting_and_setting.py -------------------------------------------------------------------------------- /images/TRex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/images/TRex.jpg -------------------------------------------------------------------------------- /images/beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/images/beach.png -------------------------------------------------------------------------------- /images/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/images/coins.png -------------------------------------------------------------------------------- /images/landscape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/images/landscape.bmp -------------------------------------------------------------------------------- /images/newImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/images/newImage.jpg -------------------------------------------------------------------------------- /images/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/images/wave.png -------------------------------------------------------------------------------- /load_display_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhsinali/opencv-book/HEAD/load_display_save.py --------------------------------------------------------------------------------