├── .gitignore ├── Image_Lib ├── Face_Data │ ├── haarcascade_eye.xml │ ├── haarcascade_frontalface_alt2.xml │ └── haarcascade_frontalface_default.xml ├── __init__.py ├── image_transform.py └── image_utils.py ├── IpythonNotebooks ├── .ipynb_checkpoints │ └── FootprintContour-checkpoint.ipynb └── FootprintContour.ipynb ├── LICENSE.md ├── PyImageSearchProblems ├── ColorTransform.py ├── ImageScanner.py ├── ObjectTracking.py ├── SkinDetection.py └── TemplateMatching.py ├── PythonProjects ├── EyeTracking │ ├── EyeTracking.py │ ├── EyeTrackingLib.py │ ├── EyeTrackingVideo.py │ └── __init__.py ├── FootprintContour │ ├── EdgeBased.py │ ├── FootprintContour.py │ ├── foot_contour_Side Left.png │ └── footprint_images │ │ ├── Background.png │ │ ├── Side Left.png │ │ ├── background.jpg │ │ ├── foot_contour_Side Left.png │ │ ├── foot_contour_left_leg.jpg │ │ ├── foot_contour_right_leg.jpg │ │ ├── img-910 │ │ ├── background.png │ │ ├── foot_contour_side left.png │ │ ├── foot_contour_side right.png │ │ ├── side left.png │ │ └── side right.png │ │ ├── img-911 │ │ ├── background.png │ │ ├── foot_contour_side left.png │ │ ├── foot_contour_side right.png │ │ ├── side left.png │ │ └── side right.png │ │ ├── img-912 │ │ ├── background.png │ │ ├── foot_contour_side left.png │ │ ├── foot_contour_side right.png │ │ ├── side left.png │ │ └── side right.png │ │ ├── img-913 │ │ ├── background.png │ │ ├── foot_contour_side left.png │ │ ├── foot_contour_side right.png │ │ ├── side left.png │ │ └── side right.png │ │ ├── img-914 │ │ ├── background.png │ │ ├── foot_contour_side left.png │ │ ├── foot_contour_side right.png │ │ ├── side left.png │ │ └── side right.png │ │ ├── left_leg.jpg │ │ └── right_leg.jpg ├── ImageManipulation │ ├── ClusterImageColoring.py │ ├── ColorFilter.py │ ├── ColorTransformHue.py │ ├── ContentAwareResizing.py │ ├── DayOrNight.py │ ├── EdgeHighlight.py │ ├── FloydSteinbergDither.py │ ├── HalfToning.py │ ├── ImageManipulation.py │ ├── ImageSharpen.py │ ├── ImageStitching.py │ ├── SizeObjectsWithRef.py │ ├── SnapImage.py │ └── UnwarpPresentationSnaps.py ├── MazeSolver.py ├── Stereo │ ├── CameraCalibration.py │ ├── CaptureAndSaveImages.py │ └── StereoMatching.py ├── Tracking │ ├── EyeTracking.py │ ├── FaceBlurring.py │ ├── FaceLocalization.py │ ├── FaceTrackWithOpticalFlow.py │ ├── HandTracking.py │ └── LucasKanadeTracker.py └── Video_Manipulation │ ├── AnimatedVideo.py │ ├── EdgesInVideo.py │ └── StitchingFromVideo.py ├── README.md ├── SelfProjectUtils ├── FeatureDetection.py ├── VisualizeColorChannels.py └── randomCode.py ├── images ├── ActualPhoneSize.jpg ├── Dog.jpg ├── EyeTracking │ ├── 810nm_dark.png │ └── image-6.png ├── Image1.jpg ├── Image2.jpg ├── aloeL.jpg ├── aloeR.jpg ├── camera_calibration │ ├── chessboard01.jpg │ ├── chessboard02.jpg │ ├── chessboard03.jpg │ ├── chessboard04.jpg │ ├── chessboard05.jpg │ ├── chessboard06.jpg │ ├── chessboard07.jpg │ ├── chessboard08.jpg │ ├── chessboard09.jpg │ ├── chessboard10.jpg │ ├── chessboard11.jpg │ ├── chessboard12.jpg │ ├── chessboard13.jpg │ ├── chessboard14.jpg │ └── chessboard15.jpg └── recipt.jpg ├── output_check.jpg ├── result.jpg ├── results ├── 10ClusterImage.jpg ├── 20PercentWidthReduction.jpg ├── AutoDetectedPhoneSize.jpg ├── CartoonishImaging.jpg ├── FaceBlurring_result.png ├── FaceLocalization │ ├── calibration_screen.png │ └── localization_screen.png ├── ImageDithering.jpg ├── ImageStitiching.jpg ├── MazeSolver50x50.jpg ├── OldSchoolSadnessFilter.jpg ├── StatisticalColorTransform.jpg ├── Unwarping presentations │ ├── .DS_Store │ ├── unwarped_presentation2.jpg │ └── unwarped_presentation3.jpg ├── eye_tracker_result.png └── out.ply └── skin_segment.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/.gitignore -------------------------------------------------------------------------------- /Image_Lib/Face_Data/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/Image_Lib/Face_Data/haarcascade_eye.xml -------------------------------------------------------------------------------- /Image_Lib/Face_Data/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/Image_Lib/Face_Data/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /Image_Lib/Face_Data/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/Image_Lib/Face_Data/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /Image_Lib/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Charlie' 2 | -------------------------------------------------------------------------------- /Image_Lib/image_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/Image_Lib/image_transform.py -------------------------------------------------------------------------------- /Image_Lib/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/Image_Lib/image_utils.py -------------------------------------------------------------------------------- /IpythonNotebooks/.ipynb_checkpoints/FootprintContour-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/IpythonNotebooks/.ipynb_checkpoints/FootprintContour-checkpoint.ipynb -------------------------------------------------------------------------------- /IpythonNotebooks/FootprintContour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/IpythonNotebooks/FootprintContour.ipynb -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PyImageSearchProblems/ColorTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PyImageSearchProblems/ColorTransform.py -------------------------------------------------------------------------------- /PyImageSearchProblems/ImageScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PyImageSearchProblems/ImageScanner.py -------------------------------------------------------------------------------- /PyImageSearchProblems/ObjectTracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PyImageSearchProblems/ObjectTracking.py -------------------------------------------------------------------------------- /PyImageSearchProblems/SkinDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PyImageSearchProblems/SkinDetection.py -------------------------------------------------------------------------------- /PyImageSearchProblems/TemplateMatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PyImageSearchProblems/TemplateMatching.py -------------------------------------------------------------------------------- /PythonProjects/EyeTracking/EyeTracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/EyeTracking/EyeTracking.py -------------------------------------------------------------------------------- /PythonProjects/EyeTracking/EyeTrackingLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/EyeTracking/EyeTrackingLib.py -------------------------------------------------------------------------------- /PythonProjects/EyeTracking/EyeTrackingVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/EyeTracking/EyeTrackingVideo.py -------------------------------------------------------------------------------- /PythonProjects/EyeTracking/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Charlie' 2 | -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/EdgeBased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/EdgeBased.py -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/FootprintContour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/FootprintContour.py -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/foot_contour_Side Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/foot_contour_Side Left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/Background.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/Side Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/Side Left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/background.jpg -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/foot_contour_Side Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/foot_contour_Side Left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/foot_contour_left_leg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/foot_contour_left_leg.jpg -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/foot_contour_right_leg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/foot_contour_right_leg.jpg -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-910/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-910/background.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-910/foot_contour_side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-910/foot_contour_side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-910/foot_contour_side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-910/foot_contour_side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-910/side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-910/side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-910/side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-910/side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-911/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-911/background.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-911/foot_contour_side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-911/foot_contour_side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-911/foot_contour_side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-911/foot_contour_side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-911/side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-911/side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-911/side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-911/side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-912/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-912/background.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-912/foot_contour_side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-912/foot_contour_side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-912/foot_contour_side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-912/foot_contour_side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-912/side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-912/side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-912/side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-912/side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-913/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-913/background.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-913/foot_contour_side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-913/foot_contour_side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-913/foot_contour_side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-913/foot_contour_side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-913/side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-913/side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-913/side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-913/side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-914/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-914/background.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-914/foot_contour_side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-914/foot_contour_side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-914/foot_contour_side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-914/foot_contour_side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-914/side left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-914/side left.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/img-914/side right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/img-914/side right.png -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/left_leg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/left_leg.jpg -------------------------------------------------------------------------------- /PythonProjects/FootprintContour/footprint_images/right_leg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/FootprintContour/footprint_images/right_leg.jpg -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/ClusterImageColoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/ClusterImageColoring.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/ColorFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/ColorFilter.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/ColorTransformHue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/ColorTransformHue.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/ContentAwareResizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/ContentAwareResizing.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/DayOrNight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/DayOrNight.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/EdgeHighlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/EdgeHighlight.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/FloydSteinbergDither.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/FloydSteinbergDither.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/HalfToning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/HalfToning.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/ImageManipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/ImageManipulation.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/ImageSharpen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/ImageSharpen.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/ImageStitching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/ImageStitching.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/SizeObjectsWithRef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/SizeObjectsWithRef.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/SnapImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/SnapImage.py -------------------------------------------------------------------------------- /PythonProjects/ImageManipulation/UnwarpPresentationSnaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/ImageManipulation/UnwarpPresentationSnaps.py -------------------------------------------------------------------------------- /PythonProjects/MazeSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/MazeSolver.py -------------------------------------------------------------------------------- /PythonProjects/Stereo/CameraCalibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Stereo/CameraCalibration.py -------------------------------------------------------------------------------- /PythonProjects/Stereo/CaptureAndSaveImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Stereo/CaptureAndSaveImages.py -------------------------------------------------------------------------------- /PythonProjects/Stereo/StereoMatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Stereo/StereoMatching.py -------------------------------------------------------------------------------- /PythonProjects/Tracking/EyeTracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Tracking/EyeTracking.py -------------------------------------------------------------------------------- /PythonProjects/Tracking/FaceBlurring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Tracking/FaceBlurring.py -------------------------------------------------------------------------------- /PythonProjects/Tracking/FaceLocalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Tracking/FaceLocalization.py -------------------------------------------------------------------------------- /PythonProjects/Tracking/FaceTrackWithOpticalFlow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Tracking/FaceTrackWithOpticalFlow.py -------------------------------------------------------------------------------- /PythonProjects/Tracking/HandTracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Tracking/HandTracking.py -------------------------------------------------------------------------------- /PythonProjects/Tracking/LucasKanadeTracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Tracking/LucasKanadeTracker.py -------------------------------------------------------------------------------- /PythonProjects/Video_Manipulation/AnimatedVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Video_Manipulation/AnimatedVideo.py -------------------------------------------------------------------------------- /PythonProjects/Video_Manipulation/EdgesInVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Video_Manipulation/EdgesInVideo.py -------------------------------------------------------------------------------- /PythonProjects/Video_Manipulation/StitchingFromVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/PythonProjects/Video_Manipulation/StitchingFromVideo.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/README.md -------------------------------------------------------------------------------- /SelfProjectUtils/FeatureDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/SelfProjectUtils/FeatureDetection.py -------------------------------------------------------------------------------- /SelfProjectUtils/VisualizeColorChannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/SelfProjectUtils/VisualizeColorChannels.py -------------------------------------------------------------------------------- /SelfProjectUtils/randomCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/SelfProjectUtils/randomCode.py -------------------------------------------------------------------------------- /images/ActualPhoneSize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/ActualPhoneSize.jpg -------------------------------------------------------------------------------- /images/Dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/Dog.jpg -------------------------------------------------------------------------------- /images/EyeTracking/810nm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/EyeTracking/810nm_dark.png -------------------------------------------------------------------------------- /images/EyeTracking/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/EyeTracking/image-6.png -------------------------------------------------------------------------------- /images/Image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/Image1.jpg -------------------------------------------------------------------------------- /images/Image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/Image2.jpg -------------------------------------------------------------------------------- /images/aloeL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/aloeL.jpg -------------------------------------------------------------------------------- /images/aloeR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/aloeR.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard01.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard02.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard03.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard04.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard05.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard06.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard07.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard08.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard09.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard10.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard11.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard12.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard13.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard14.jpg -------------------------------------------------------------------------------- /images/camera_calibration/chessboard15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/camera_calibration/chessboard15.jpg -------------------------------------------------------------------------------- /images/recipt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/images/recipt.jpg -------------------------------------------------------------------------------- /output_check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/output_check.jpg -------------------------------------------------------------------------------- /result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/result.jpg -------------------------------------------------------------------------------- /results/10ClusterImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/10ClusterImage.jpg -------------------------------------------------------------------------------- /results/20PercentWidthReduction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/20PercentWidthReduction.jpg -------------------------------------------------------------------------------- /results/AutoDetectedPhoneSize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/AutoDetectedPhoneSize.jpg -------------------------------------------------------------------------------- /results/CartoonishImaging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/CartoonishImaging.jpg -------------------------------------------------------------------------------- /results/FaceBlurring_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/FaceBlurring_result.png -------------------------------------------------------------------------------- /results/FaceLocalization/calibration_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/FaceLocalization/calibration_screen.png -------------------------------------------------------------------------------- /results/FaceLocalization/localization_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/FaceLocalization/localization_screen.png -------------------------------------------------------------------------------- /results/ImageDithering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/ImageDithering.jpg -------------------------------------------------------------------------------- /results/ImageStitiching.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/ImageStitiching.jpg -------------------------------------------------------------------------------- /results/MazeSolver50x50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/MazeSolver50x50.jpg -------------------------------------------------------------------------------- /results/OldSchoolSadnessFilter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/OldSchoolSadnessFilter.jpg -------------------------------------------------------------------------------- /results/StatisticalColorTransform.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/StatisticalColorTransform.jpg -------------------------------------------------------------------------------- /results/Unwarping presentations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/Unwarping presentations/.DS_Store -------------------------------------------------------------------------------- /results/Unwarping presentations/unwarped_presentation2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/Unwarping presentations/unwarped_presentation2.jpg -------------------------------------------------------------------------------- /results/Unwarping presentations/unwarped_presentation3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/Unwarping presentations/unwarped_presentation3.jpg -------------------------------------------------------------------------------- /results/eye_tracker_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/eye_tracker_result.png -------------------------------------------------------------------------------- /results/out.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/results/out.ply -------------------------------------------------------------------------------- /skin_segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekkizh/ImageProcessingProjects/HEAD/skin_segment.png --------------------------------------------------------------------------------