├── Basics ├── 5_Must_Know_OpenCV_Functions.py ├── ColorPicker.py ├── Crop_Resize_Images.py ├── Detecting_Clicks_On_Images.py ├── Draw_Shapes_Text.py ├── Intsall.py ├── Joining_Multiple_Images_To_Display.py ├── Read_Image_Video_Webcam.py ├── Warp_Prespective.py └── screenCap.py ├── Intermediate ├── Custom Object Detection │ ├── createData.py │ ├── haarcascades │ │ ├── haarcascade_eye.xml │ │ ├── haarcascade_eye_tree_eyeglasses.xml │ │ ├── haarcascade_frontalcatface.xml │ │ ├── haarcascade_frontalcatface_extended.xml │ │ ├── haarcascade_frontalface_alt.xml │ │ ├── haarcascade_frontalface_alt2.xml │ │ ├── haarcascade_frontalface_alt_tree.xml │ │ ├── haarcascade_frontalface_default.xml │ │ ├── haarcascade_fullbody.xml │ │ ├── haarcascade_lefteye_2splits.xml │ │ ├── haarcascade_licence_plate_rus_16stages.xml │ │ ├── haarcascade_lowerbody.xml │ │ ├── haarcascade_profileface.xml │ │ ├── haarcascade_righteye_2splits.xml │ │ ├── haarcascade_russian_plate_number.xml │ │ ├── haarcascade_smile.xml │ │ ├── haarcascade_upperbody.xml │ │ └── haarcascade_wall_clock.xml │ └── objectDetectoin.py ├── Object Measurement │ ├── 1.jpg │ ├── ObjectMeasurement.py │ ├── ReadMe.md │ └── utlis.py ├── QrCodeBarCode │ ├── 1.png │ ├── Images │ │ ├── Barcode (1).gif │ │ ├── Barcode (4).gif │ │ ├── Barcode (5).gif │ │ ├── Barnangen.png │ │ ├── Emily.png │ │ ├── Jhon.png │ │ ├── Perfume.png │ │ ├── Qr (1).png │ │ ├── Qr (2).png │ │ ├── Qr (3).png │ │ ├── Qr (4).png │ │ ├── Qr (5).png │ │ ├── Qr (6).png │ │ ├── Qr (7).png │ │ ├── Qr (8).png │ │ ├── Qr (9).png │ │ └── Vitamin.png │ ├── QrBarTest.py │ ├── QrCodeProject.py │ ├── Readme.md │ └── myDataFile.text ├── RealTime_Color_Detection.py ├── RealTime_Shape_Detection_Contours.py ├── TextDetection │ ├── ReadMe.md │ ├── TextMoreExamples.py │ ├── TextSimple.py │ ├── oem.PNG │ └── psm.PNG └── objectTracking.py ├── README.md ├── Resources ├── chess.jpg ├── lena.png ├── readme.md ├── shapes.png └── testVideo.mp4 └── thumbnails ├── 0.jpg ├── 1.jpg ├── 10.png ├── 11.PNG ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── 9.jpg ├── QrCode.jpg ├── ScreenCap.gif └── TextDetection.gif /Basics/5_Must_Know_OpenCV_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/5_Must_Know_OpenCV_Functions.py -------------------------------------------------------------------------------- /Basics/ColorPicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/ColorPicker.py -------------------------------------------------------------------------------- /Basics/Crop_Resize_Images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/Crop_Resize_Images.py -------------------------------------------------------------------------------- /Basics/Detecting_Clicks_On_Images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/Detecting_Clicks_On_Images.py -------------------------------------------------------------------------------- /Basics/Draw_Shapes_Text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/Draw_Shapes_Text.py -------------------------------------------------------------------------------- /Basics/Intsall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/Intsall.py -------------------------------------------------------------------------------- /Basics/Joining_Multiple_Images_To_Display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/Joining_Multiple_Images_To_Display.py -------------------------------------------------------------------------------- /Basics/Read_Image_Video_Webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/Read_Image_Video_Webcam.py -------------------------------------------------------------------------------- /Basics/Warp_Prespective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/Warp_Prespective.py -------------------------------------------------------------------------------- /Basics/screenCap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Basics/screenCap.py -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/createData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/createData.py -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_eye.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalcatface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalcatface.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalcatface_extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalcatface_extended.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalface_alt_tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalface_alt_tree.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_fullbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_fullbody.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_lefteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_lefteye_2splits.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_licence_plate_rus_16stages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_licence_plate_rus_16stages.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_lowerbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_lowerbody.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_profileface.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_righteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_righteye_2splits.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_russian_plate_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_russian_plate_number.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_smile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_smile.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_upperbody.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/haarcascades/haarcascade_wall_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/haarcascades/haarcascade_wall_clock.xml -------------------------------------------------------------------------------- /Intermediate/Custom Object Detection/objectDetectoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Custom Object Detection/objectDetectoin.py -------------------------------------------------------------------------------- /Intermediate/Object Measurement/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Object Measurement/1.jpg -------------------------------------------------------------------------------- /Intermediate/Object Measurement/ObjectMeasurement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Object Measurement/ObjectMeasurement.py -------------------------------------------------------------------------------- /Intermediate/Object Measurement/ReadMe.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Intermediate/Object Measurement/utlis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/Object Measurement/utlis.py -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/1.png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Barcode (1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Barcode (1).gif -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Barcode (4).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Barcode (4).gif -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Barcode (5).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Barcode (5).gif -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Barnangen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Barnangen.png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Emily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Emily.png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Jhon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Jhon.png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Perfume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Perfume.png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (1).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (2).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (3).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (4).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (5).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (6).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (7).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (8).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Qr (9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Qr (9).png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Images/Vitamin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/Images/Vitamin.png -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/QrBarTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/QrBarTest.py -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/QrCodeProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/QrCodeProject.py -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Intermediate/QrCodeBarCode/myDataFile.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/QrCodeBarCode/myDataFile.text -------------------------------------------------------------------------------- /Intermediate/RealTime_Color_Detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/RealTime_Color_Detection.py -------------------------------------------------------------------------------- /Intermediate/RealTime_Shape_Detection_Contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/RealTime_Shape_Detection_Contours.py -------------------------------------------------------------------------------- /Intermediate/TextDetection/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/TextDetection/ReadMe.md -------------------------------------------------------------------------------- /Intermediate/TextDetection/TextMoreExamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/TextDetection/TextMoreExamples.py -------------------------------------------------------------------------------- /Intermediate/TextDetection/TextSimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/TextDetection/TextSimple.py -------------------------------------------------------------------------------- /Intermediate/TextDetection/oem.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/TextDetection/oem.PNG -------------------------------------------------------------------------------- /Intermediate/TextDetection/psm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/TextDetection/psm.PNG -------------------------------------------------------------------------------- /Intermediate/objectTracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Intermediate/objectTracking.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/README.md -------------------------------------------------------------------------------- /Resources/chess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Resources/chess.jpg -------------------------------------------------------------------------------- /Resources/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Resources/lena.png -------------------------------------------------------------------------------- /Resources/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Resources/shapes.png -------------------------------------------------------------------------------- /Resources/testVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/Resources/testVideo.mp4 -------------------------------------------------------------------------------- /thumbnails/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/0.jpg -------------------------------------------------------------------------------- /thumbnails/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/1.jpg -------------------------------------------------------------------------------- /thumbnails/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/10.png -------------------------------------------------------------------------------- /thumbnails/11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/11.PNG -------------------------------------------------------------------------------- /thumbnails/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/2.jpg -------------------------------------------------------------------------------- /thumbnails/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/3.jpg -------------------------------------------------------------------------------- /thumbnails/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/4.jpg -------------------------------------------------------------------------------- /thumbnails/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/5.jpg -------------------------------------------------------------------------------- /thumbnails/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/6.jpg -------------------------------------------------------------------------------- /thumbnails/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/7.jpg -------------------------------------------------------------------------------- /thumbnails/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/8.jpg -------------------------------------------------------------------------------- /thumbnails/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/9.jpg -------------------------------------------------------------------------------- /thumbnails/QrCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/QrCode.jpg -------------------------------------------------------------------------------- /thumbnails/ScreenCap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/ScreenCap.gif -------------------------------------------------------------------------------- /thumbnails/TextDetection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/Python-Tutorials-and-Projects/HEAD/thumbnails/TextDetection.gif --------------------------------------------------------------------------------