├── .gitattributes ├── .gitignore ├── Official_Tutorial_Python_Codes ├── 1_introduction │ ├── display_image.py │ └── modify_image.py ├── 2_core │ ├── BasicLinearTransforms.py │ ├── add_images.py │ └── fiter2d.py ├── 3_imgproc │ ├── border.py │ ├── boundingrect.py │ ├── canny.py │ ├── comparehist.py │ ├── convexhull.py │ ├── equalizehist.py │ ├── findcontours.py │ ├── geometric_transform.py │ ├── histogram1d.py │ ├── houghcircles.py │ ├── houghlines.py │ ├── laplacian.py │ ├── linear_filter.py │ ├── minarearect.py │ ├── moments.py │ ├── morphology_1.py │ ├── pointpolygontest.py │ ├── pyramids.py │ ├── remap.py │ ├── smoothing.py │ ├── sobel.py │ └── templatematching.py └── README ├── OpenCV_Python_Blog ├── kmeans_clustering │ └── kmeans_data.txt └── sudoku_v_0.0.6 │ ├── .picasa.ini │ ├── README.txt │ ├── feature_vector_pixels.data │ ├── perfect.py │ ├── sampleout.jpg │ ├── samples_pixels.data │ ├── sudoku.jpg │ └── sudoku.py └── README /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/1_introduction/display_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/1_introduction/display_image.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/1_introduction/modify_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/1_introduction/modify_image.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/2_core/BasicLinearTransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/2_core/BasicLinearTransforms.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/2_core/add_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/2_core/add_images.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/2_core/fiter2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/2_core/fiter2d.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/border.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/border.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/boundingrect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/boundingrect.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/canny.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/comparehist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/comparehist.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/convexhull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/convexhull.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/equalizehist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/equalizehist.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/findcontours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/findcontours.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/geometric_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/geometric_transform.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/histogram1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/histogram1d.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/houghcircles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/houghcircles.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/houghlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/houghlines.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/laplacian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/laplacian.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/linear_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/linear_filter.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/minarearect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/minarearect.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/moments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/moments.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/morphology_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/morphology_1.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/pointpolygontest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/pointpolygontest.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/pyramids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/pyramids.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/remap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/remap.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/smoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/smoothing.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/sobel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/sobel.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/3_imgproc/templatematching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/3_imgproc/templatematching.py -------------------------------------------------------------------------------- /Official_Tutorial_Python_Codes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/Official_Tutorial_Python_Codes/README -------------------------------------------------------------------------------- /OpenCV_Python_Blog/kmeans_clustering/kmeans_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/kmeans_clustering/kmeans_data.txt -------------------------------------------------------------------------------- /OpenCV_Python_Blog/sudoku_v_0.0.6/.picasa.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/sudoku_v_0.0.6/.picasa.ini -------------------------------------------------------------------------------- /OpenCV_Python_Blog/sudoku_v_0.0.6/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/sudoku_v_0.0.6/README.txt -------------------------------------------------------------------------------- /OpenCV_Python_Blog/sudoku_v_0.0.6/feature_vector_pixels.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/sudoku_v_0.0.6/feature_vector_pixels.data -------------------------------------------------------------------------------- /OpenCV_Python_Blog/sudoku_v_0.0.6/perfect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/sudoku_v_0.0.6/perfect.py -------------------------------------------------------------------------------- /OpenCV_Python_Blog/sudoku_v_0.0.6/sampleout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/sudoku_v_0.0.6/sampleout.jpg -------------------------------------------------------------------------------- /OpenCV_Python_Blog/sudoku_v_0.0.6/samples_pixels.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/sudoku_v_0.0.6/samples_pixels.data -------------------------------------------------------------------------------- /OpenCV_Python_Blog/sudoku_v_0.0.6/sudoku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/sudoku_v_0.0.6/sudoku.jpg -------------------------------------------------------------------------------- /OpenCV_Python_Blog/sudoku_v_0.0.6/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/OpenCV_Python_Blog/sudoku_v_0.0.6/sudoku.py -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python/HEAD/README --------------------------------------------------------------------------------