├── .gitattributes ├── .gitignore ├── Affine_Trans ├── Screenshot.png ├── main.py └── test.png ├── Bit_Operation ├── Screenshot.png ├── logo.jpg ├── main.py └── test.png ├── Capture_Video ├── Screenshot .png └── main.py ├── Color_Track ├── Screenshot.png └── main.py ├── Draw_Mouse ├── Screenshot.png └── main.py ├── Draw_Shape ├── Screenshot.png └── main.py ├── Geometric_Trans ├── Screenshot.png └── main.py ├── Hist_Display ├── color.png ├── gray.png ├── main.py ├── test1.jpg └── test2.jpg ├── Image_Mix ├── Screenshot.png ├── main.py ├── test1.png └── test2.png ├── Image_Pixels ├── Screenshot.png ├── main.py └── test.png ├── LICENSE ├── Matplotlib_Display ├── Screenshot1.png ├── Screenshot2.png ├── Screenshot3.png ├── Screenshot4.png ├── main.py ├── test1.jpg └── test2.jpg ├── OpenCV_test ├── cat.png ├── main.py └── screen.png ├── README.md ├── RGB_Extract ├── Screenshot.png ├── main.py └── test.png ├── Read_Vedio ├── Screenshot.png └── main.py ├── Run_Time ├── Screenshot.png └── main.py ├── Save_Video ├── Screenshot.png ├── main.py └── output.avi ├── Track_Bar ├── Screenshot.png └── main.py ├── test.avi ├── test1.jpg └── test2.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/.gitignore -------------------------------------------------------------------------------- /Affine_Trans/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Affine_Trans/Screenshot.png -------------------------------------------------------------------------------- /Affine_Trans/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Affine_Trans/main.py -------------------------------------------------------------------------------- /Affine_Trans/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Affine_Trans/test.png -------------------------------------------------------------------------------- /Bit_Operation/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Bit_Operation/Screenshot.png -------------------------------------------------------------------------------- /Bit_Operation/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Bit_Operation/logo.jpg -------------------------------------------------------------------------------- /Bit_Operation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Bit_Operation/main.py -------------------------------------------------------------------------------- /Bit_Operation/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Bit_Operation/test.png -------------------------------------------------------------------------------- /Capture_Video/Screenshot .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Capture_Video/Screenshot .png -------------------------------------------------------------------------------- /Capture_Video/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Capture_Video/main.py -------------------------------------------------------------------------------- /Color_Track/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Color_Track/Screenshot.png -------------------------------------------------------------------------------- /Color_Track/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Color_Track/main.py -------------------------------------------------------------------------------- /Draw_Mouse/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Draw_Mouse/Screenshot.png -------------------------------------------------------------------------------- /Draw_Mouse/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Draw_Mouse/main.py -------------------------------------------------------------------------------- /Draw_Shape/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Draw_Shape/Screenshot.png -------------------------------------------------------------------------------- /Draw_Shape/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Draw_Shape/main.py -------------------------------------------------------------------------------- /Geometric_Trans/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Geometric_Trans/Screenshot.png -------------------------------------------------------------------------------- /Geometric_Trans/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Geometric_Trans/main.py -------------------------------------------------------------------------------- /Hist_Display/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Hist_Display/color.png -------------------------------------------------------------------------------- /Hist_Display/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Hist_Display/gray.png -------------------------------------------------------------------------------- /Hist_Display/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Hist_Display/main.py -------------------------------------------------------------------------------- /Hist_Display/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Hist_Display/test1.jpg -------------------------------------------------------------------------------- /Hist_Display/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Hist_Display/test2.jpg -------------------------------------------------------------------------------- /Image_Mix/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Image_Mix/Screenshot.png -------------------------------------------------------------------------------- /Image_Mix/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Image_Mix/main.py -------------------------------------------------------------------------------- /Image_Mix/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Image_Mix/test1.png -------------------------------------------------------------------------------- /Image_Mix/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Image_Mix/test2.png -------------------------------------------------------------------------------- /Image_Pixels/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Image_Pixels/Screenshot.png -------------------------------------------------------------------------------- /Image_Pixels/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Image_Pixels/main.py -------------------------------------------------------------------------------- /Image_Pixels/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Image_Pixels/test.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/LICENSE -------------------------------------------------------------------------------- /Matplotlib_Display/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Matplotlib_Display/Screenshot1.png -------------------------------------------------------------------------------- /Matplotlib_Display/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Matplotlib_Display/Screenshot2.png -------------------------------------------------------------------------------- /Matplotlib_Display/Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Matplotlib_Display/Screenshot3.png -------------------------------------------------------------------------------- /Matplotlib_Display/Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Matplotlib_Display/Screenshot4.png -------------------------------------------------------------------------------- /Matplotlib_Display/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Matplotlib_Display/main.py -------------------------------------------------------------------------------- /Matplotlib_Display/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Matplotlib_Display/test1.jpg -------------------------------------------------------------------------------- /Matplotlib_Display/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Matplotlib_Display/test2.jpg -------------------------------------------------------------------------------- /OpenCV_test/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/OpenCV_test/cat.png -------------------------------------------------------------------------------- /OpenCV_test/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/OpenCV_test/main.py -------------------------------------------------------------------------------- /OpenCV_test/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/OpenCV_test/screen.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # python-opencv-learning 2 | -------------------------------------------------------------------------------- /RGB_Extract/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/RGB_Extract/Screenshot.png -------------------------------------------------------------------------------- /RGB_Extract/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/RGB_Extract/main.py -------------------------------------------------------------------------------- /RGB_Extract/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/RGB_Extract/test.png -------------------------------------------------------------------------------- /Read_Vedio/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Read_Vedio/Screenshot.png -------------------------------------------------------------------------------- /Read_Vedio/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Read_Vedio/main.py -------------------------------------------------------------------------------- /Run_Time/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Run_Time/Screenshot.png -------------------------------------------------------------------------------- /Run_Time/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Run_Time/main.py -------------------------------------------------------------------------------- /Save_Video/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Save_Video/Screenshot.png -------------------------------------------------------------------------------- /Save_Video/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Save_Video/main.py -------------------------------------------------------------------------------- /Save_Video/output.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Save_Video/output.avi -------------------------------------------------------------------------------- /Track_Bar/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Track_Bar/Screenshot.png -------------------------------------------------------------------------------- /Track_Bar/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/Track_Bar/main.py -------------------------------------------------------------------------------- /test.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/test.avi -------------------------------------------------------------------------------- /test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/test1.jpg -------------------------------------------------------------------------------- /test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlthu/Python-OpenCV-Learn/HEAD/test2.jpg --------------------------------------------------------------------------------