├── .gitignore ├── .idea └── vcs.xml ├── Pipfile ├── Pipfile.lock ├── README.md ├── resources ├── SampleVideo_1280x720_1mb.mp4 ├── img │ ├── HindSiliguri-SemiBold.ttf │ ├── Roboto-Regular.ttf │ ├── arches.jpg │ ├── budapest_night.jpg │ ├── car_wash.png │ ├── farm-to-fork.jpg │ ├── handcreated_400x400_1.png │ ├── handcreated_400x400_2.png │ ├── image-fig1.jpg │ ├── lake_scene.jpg │ ├── lebron_james.jpg │ ├── national_park.jpg │ ├── nid1.jpg │ ├── nid2.jpg │ ├── nid3.jpg │ ├── nid4.jpg │ ├── nid42.jpg │ ├── nid5.jpg │ ├── opencv-logo-small.png │ ├── sign.jpg │ ├── table_data_with_long_text.png │ ├── tabular_data1.png │ ├── tabular_data2.jpg │ ├── tabular_data2_ori.png │ ├── time_out.png │ └── wiki_page.png ├── omr-imgs │ ├── 30.png │ ├── 35.png │ ├── 40.png │ ├── 50.png │ ├── 50_only_corners.png │ ├── answered-sheet-photo.jpg │ ├── final │ │ ├── omr.jpg │ │ ├── omr_m_1.jpg │ │ ├── omr_m_2.jpg │ │ ├── omr_m_3.jpg │ │ ├── omr_m_4.jpg │ │ ├── omr_m_5.jpg │ │ ├── omr_m_6.jpg │ │ ├── omr_m_7.jpg │ │ └── omr_m_8.jpg │ ├── final_mahamudvai_ver03.jpg │ ├── img-detected-circle.png │ ├── line.jpg │ ├── lsdjf.jpg │ ├── m-1.jpg │ ├── m-2.jpg │ ├── m-3.jpg │ ├── mahmud-vai5.png │ ├── omr-1-ans-ori.png │ ├── omr-1-ori.png │ ├── omr-2-ans.png │ ├── omr_region_img_50.png │ ├── omr_region_img_50_test.png │ ├── original.jpg │ ├── perspective_trans.jpg │ ├── rectangle.png │ ├── tgc.jpg │ └── tgc4.png └── output_dir │ ├── national-id-card3.jpg │ └── tableoutput.png └── src ├── circledetection ├── __init__.py ├── circle-detection.py ├── numpy_ex.py ├── omr-analysis.py ├── omrutils.py ├── perspectivetransform.py ├── playground.py └── rectangle-detection-omr.py ├── cv-basic.py ├── ffmpeg.py ├── gui_pyqt5.py ├── implementations ├── complex_table.py ├── nid_identify_pic.py ├── nid_txt_region_by_color.py ├── ocr_table.py └── txt_region_table.py ├── matchhistogram └── matchtemplate.py ├── matplot-test-basic.py ├── numpytest.py ├── omr_ana ├── __init__.py ├── detect_omr_rect.py ├── helper_functions.py ├── omr_rect_region_ana.py ├── omr_test_result.py └── test_before_imp.py ├── opencvtut ├── __init__.py ├── adding_bitwise.py ├── color_detection_shape.py ├── erode_dilate_tut_sample.py ├── gui │ ├── __init__.py │ ├── color_pallete.py │ └── threshholding.py ├── line_by_erode_dilate.py ├── morphology.py ├── region_sep_by_erode_dilate.py ├── separating_rectangles_nid.py └── txt_region_nid_crop.py ├── output_video.avi ├── readimage-basic.py ├── tessdata ├── ben.traineddata ├── configs │ └── logfile └── eng.traineddata ├── tesseract-basic.py ├── tesseract_tut ├── __init__.py └── ocr_nid_by_crop.py ├── text-zone-detection_contour.py ├── text_detection.py └── text_detection_video.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/README.md -------------------------------------------------------------------------------- /resources/SampleVideo_1280x720_1mb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/SampleVideo_1280x720_1mb.mp4 -------------------------------------------------------------------------------- /resources/img/HindSiliguri-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/HindSiliguri-SemiBold.ttf -------------------------------------------------------------------------------- /resources/img/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/Roboto-Regular.ttf -------------------------------------------------------------------------------- /resources/img/arches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/arches.jpg -------------------------------------------------------------------------------- /resources/img/budapest_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/budapest_night.jpg -------------------------------------------------------------------------------- /resources/img/car_wash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/car_wash.png -------------------------------------------------------------------------------- /resources/img/farm-to-fork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/farm-to-fork.jpg -------------------------------------------------------------------------------- /resources/img/handcreated_400x400_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/handcreated_400x400_1.png -------------------------------------------------------------------------------- /resources/img/handcreated_400x400_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/handcreated_400x400_2.png -------------------------------------------------------------------------------- /resources/img/image-fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/image-fig1.jpg -------------------------------------------------------------------------------- /resources/img/lake_scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/lake_scene.jpg -------------------------------------------------------------------------------- /resources/img/lebron_james.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/lebron_james.jpg -------------------------------------------------------------------------------- /resources/img/national_park.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/national_park.jpg -------------------------------------------------------------------------------- /resources/img/nid1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/nid1.jpg -------------------------------------------------------------------------------- /resources/img/nid2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/nid2.jpg -------------------------------------------------------------------------------- /resources/img/nid3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/nid3.jpg -------------------------------------------------------------------------------- /resources/img/nid4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/nid4.jpg -------------------------------------------------------------------------------- /resources/img/nid42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/nid42.jpg -------------------------------------------------------------------------------- /resources/img/nid5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/nid5.jpg -------------------------------------------------------------------------------- /resources/img/opencv-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/opencv-logo-small.png -------------------------------------------------------------------------------- /resources/img/sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/sign.jpg -------------------------------------------------------------------------------- /resources/img/table_data_with_long_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/table_data_with_long_text.png -------------------------------------------------------------------------------- /resources/img/tabular_data1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/tabular_data1.png -------------------------------------------------------------------------------- /resources/img/tabular_data2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/tabular_data2.jpg -------------------------------------------------------------------------------- /resources/img/tabular_data2_ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/tabular_data2_ori.png -------------------------------------------------------------------------------- /resources/img/time_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/time_out.png -------------------------------------------------------------------------------- /resources/img/wiki_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/img/wiki_page.png -------------------------------------------------------------------------------- /resources/omr-imgs/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/30.png -------------------------------------------------------------------------------- /resources/omr-imgs/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/35.png -------------------------------------------------------------------------------- /resources/omr-imgs/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/40.png -------------------------------------------------------------------------------- /resources/omr-imgs/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/50.png -------------------------------------------------------------------------------- /resources/omr-imgs/50_only_corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/50_only_corners.png -------------------------------------------------------------------------------- /resources/omr-imgs/answered-sheet-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/answered-sheet-photo.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr_m_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr_m_1.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr_m_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr_m_2.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr_m_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr_m_3.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr_m_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr_m_4.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr_m_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr_m_5.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr_m_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr_m_6.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr_m_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr_m_7.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final/omr_m_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final/omr_m_8.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/final_mahamudvai_ver03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/final_mahamudvai_ver03.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/img-detected-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/img-detected-circle.png -------------------------------------------------------------------------------- /resources/omr-imgs/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/line.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/lsdjf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/lsdjf.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/m-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/m-1.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/m-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/m-2.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/m-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/m-3.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/mahmud-vai5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/mahmud-vai5.png -------------------------------------------------------------------------------- /resources/omr-imgs/omr-1-ans-ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/omr-1-ans-ori.png -------------------------------------------------------------------------------- /resources/omr-imgs/omr-1-ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/omr-1-ori.png -------------------------------------------------------------------------------- /resources/omr-imgs/omr-2-ans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/omr-2-ans.png -------------------------------------------------------------------------------- /resources/omr-imgs/omr_region_img_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/omr_region_img_50.png -------------------------------------------------------------------------------- /resources/omr-imgs/omr_region_img_50_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/omr_region_img_50_test.png -------------------------------------------------------------------------------- /resources/omr-imgs/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/original.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/perspective_trans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/perspective_trans.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/rectangle.png -------------------------------------------------------------------------------- /resources/omr-imgs/tgc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/tgc.jpg -------------------------------------------------------------------------------- /resources/omr-imgs/tgc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/omr-imgs/tgc4.png -------------------------------------------------------------------------------- /resources/output_dir/national-id-card3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/resources/output_dir/national-id-card3.jpg -------------------------------------------------------------------------------- /resources/output_dir/tableoutput.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/circledetection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/circledetection/circle-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/circledetection/circle-detection.py -------------------------------------------------------------------------------- /src/circledetection/numpy_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/circledetection/numpy_ex.py -------------------------------------------------------------------------------- /src/circledetection/omr-analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/circledetection/omr-analysis.py -------------------------------------------------------------------------------- /src/circledetection/omrutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/circledetection/omrutils.py -------------------------------------------------------------------------------- /src/circledetection/perspectivetransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/circledetection/perspectivetransform.py -------------------------------------------------------------------------------- /src/circledetection/playground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/circledetection/playground.py -------------------------------------------------------------------------------- /src/circledetection/rectangle-detection-omr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/circledetection/rectangle-detection-omr.py -------------------------------------------------------------------------------- /src/cv-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/cv-basic.py -------------------------------------------------------------------------------- /src/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/ffmpeg.py -------------------------------------------------------------------------------- /src/gui_pyqt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/gui_pyqt5.py -------------------------------------------------------------------------------- /src/implementations/complex_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/implementations/complex_table.py -------------------------------------------------------------------------------- /src/implementations/nid_identify_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/implementations/nid_identify_pic.py -------------------------------------------------------------------------------- /src/implementations/nid_txt_region_by_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/implementations/nid_txt_region_by_color.py -------------------------------------------------------------------------------- /src/implementations/ocr_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/implementations/ocr_table.py -------------------------------------------------------------------------------- /src/implementations/txt_region_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/implementations/txt_region_table.py -------------------------------------------------------------------------------- /src/matchhistogram/matchtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/matchhistogram/matchtemplate.py -------------------------------------------------------------------------------- /src/matplot-test-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/matplot-test-basic.py -------------------------------------------------------------------------------- /src/numpytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/numpytest.py -------------------------------------------------------------------------------- /src/omr_ana/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/omr_ana/detect_omr_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/omr_ana/detect_omr_rect.py -------------------------------------------------------------------------------- /src/omr_ana/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/omr_ana/helper_functions.py -------------------------------------------------------------------------------- /src/omr_ana/omr_rect_region_ana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/omr_ana/omr_rect_region_ana.py -------------------------------------------------------------------------------- /src/omr_ana/omr_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/omr_ana/omr_test_result.py -------------------------------------------------------------------------------- /src/omr_ana/test_before_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/omr_ana/test_before_imp.py -------------------------------------------------------------------------------- /src/opencvtut/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opencvtut/adding_bitwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/adding_bitwise.py -------------------------------------------------------------------------------- /src/opencvtut/color_detection_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/color_detection_shape.py -------------------------------------------------------------------------------- /src/opencvtut/erode_dilate_tut_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/erode_dilate_tut_sample.py -------------------------------------------------------------------------------- /src/opencvtut/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opencvtut/gui/color_pallete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/gui/color_pallete.py -------------------------------------------------------------------------------- /src/opencvtut/gui/threshholding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/gui/threshholding.py -------------------------------------------------------------------------------- /src/opencvtut/line_by_erode_dilate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/line_by_erode_dilate.py -------------------------------------------------------------------------------- /src/opencvtut/morphology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/morphology.py -------------------------------------------------------------------------------- /src/opencvtut/region_sep_by_erode_dilate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/region_sep_by_erode_dilate.py -------------------------------------------------------------------------------- /src/opencvtut/separating_rectangles_nid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/separating_rectangles_nid.py -------------------------------------------------------------------------------- /src/opencvtut/txt_region_nid_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/opencvtut/txt_region_nid_crop.py -------------------------------------------------------------------------------- /src/output_video.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/output_video.avi -------------------------------------------------------------------------------- /src/readimage-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/readimage-basic.py -------------------------------------------------------------------------------- /src/tessdata/ben.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/tessdata/ben.traineddata -------------------------------------------------------------------------------- /src/tessdata/configs/logfile: -------------------------------------------------------------------------------- 1 | debug_file tesseract.log -------------------------------------------------------------------------------- /src/tessdata/eng.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/tessdata/eng.traineddata -------------------------------------------------------------------------------- /src/tesseract-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/tesseract-basic.py -------------------------------------------------------------------------------- /src/tesseract_tut/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tesseract_tut/ocr_nid_by_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/tesseract_tut/ocr_nid_by_crop.py -------------------------------------------------------------------------------- /src/text-zone-detection_contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/text-zone-detection_contour.py -------------------------------------------------------------------------------- /src/text_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/text_detection.py -------------------------------------------------------------------------------- /src/text_detection_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmmahmud/python_opencv_image_manipulation/HEAD/src/text_detection_video.py --------------------------------------------------------------------------------