实例介绍
This Zip contains Practical Python and OpenCV + Case Studies by Adrian Rosebrock - 3rd Edition bundle with the Supplementary Code. Site : pyimagesearch.com
【实例截图】
【核心代码】
4744300845384672882.zip
└── Books
├── Case Studies, 3rd Edition
│ ├── Case Studies, 3rd Edition.pdf
│ ├── Case Studies, 3rd Ed.mobi
│ ├── code
│ │ ├── book_covers
│ │ │ ├── books.csv
│ │ │ ├── covers
│ │ │ │ ├── cover001.png
│ │ │ │ ├── cover002.png
│ │ │ │ ├── cover003.png
│ │ │ │ ├── cover004.png
│ │ │ │ ├── cover005.png
│ │ │ │ ├── cover006.png
│ │ │ │ ├── cover007.png
│ │ │ │ ├── cover008.png
│ │ │ │ ├── cover009.png
│ │ │ │ ├── cover010.png
│ │ │ │ ├── cover011.png
│ │ │ │ ├── cover012.png
│ │ │ │ ├── cover013.png
│ │ │ │ ├── cover014.png
│ │ │ │ ├── cover015.png
│ │ │ │ ├── cover016.png
│ │ │ │ ├── cover017.png
│ │ │ │ ├── cover018.png
│ │ │ │ ├── cover019.png
│ │ │ │ ├── cover020.png
│ │ │ │ ├── cover021.png
│ │ │ │ ├── cover022.png
│ │ │ │ ├── cover023.png
│ │ │ │ ├── cover024.png
│ │ │ │ ├── cover025.png
│ │ │ │ ├── cover026.png
│ │ │ │ ├── cover027.png
│ │ │ │ ├── cover028.png
│ │ │ │ ├── cover029.png
│ │ │ │ ├── cover030.png
│ │ │ │ ├── cover031.png
│ │ │ │ ├── cover032.png
│ │ │ │ ├── cover033.png
│ │ │ │ ├── cover034.png
│ │ │ │ ├── cover035.png
│ │ │ │ ├── cover036.png
│ │ │ │ ├── cover037.png
│ │ │ │ ├── cover038.png
│ │ │ │ ├── cover039.png
│ │ │ │ ├── cover040.png
│ │ │ │ ├── cover041.png
│ │ │ │ ├── cover042.png
│ │ │ │ ├── cover043.png
│ │ │ │ ├── cover044.png
│ │ │ │ ├── cover045.png
│ │ │ │ ├── cover046.png
│ │ │ │ ├── cover047.png
│ │ │ │ ├── cover048.png
│ │ │ │ ├── cover049.png
│ │ │ │ └── cover050.png
│ │ │ ├── pyimagesearch
│ │ │ │ ├── coverdescriptor.py
│ │ │ │ ├── coverdescriptor.pyc
│ │ │ │ ├── covermatcher.py
│ │ │ │ ├── covermatcher.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ └── __init__.pyc
│ │ │ ├── queries
│ │ │ │ ├── query01.png
│ │ │ │ ├── query02.png
│ │ │ │ ├── query03.png
│ │ │ │ ├── query04.png
│ │ │ │ └── query05.png
│ │ │ └── search.py
│ │ ├── color_tracking
│ │ │ ├── track.py
│ │ │ └── video
│ │ │ └── iphonecase.mov
│ │ ├── digits
│ │ │ ├── classify.py
│ │ │ ├── data
│ │ │ │ └── digits.csv
│ │ │ ├── images
│ │ │ │ ├── apple_phonenumber.png
│ │ │ │ ├── cellphone.png
│ │ │ │ ├── digit_sample.png
│ │ │ │ └── umbc_zipcode.png
│ │ │ ├── models
│ │ │ │ ├── svm.cpickle
│ │ │ │ ├── svm.cpickle_01.npy
│ │ │ │ ├── svm.cpickle_02.npy
│ │ │ │ ├── svm.cpickle_03.npy
│ │ │ │ ├── svm.cpickle_04.npy
│ │ │ │ └── svm.cpickle_05.npy
│ │ │ ├── pyimagesearch
│ │ │ │ ├── dataset.py
│ │ │ │ ├── dataset.pyc
│ │ │ │ ├── hog.py
│ │ │ │ ├── hog.pyc
│ │ │ │ ├── imutils.py
│ │ │ │ ├── imutils.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ └── __pycache__
│ │ │ │ ├── dataset.cpython-34.pyc
│ │ │ │ ├── dataset.cpython-35.pyc
│ │ │ │ ├── hog.cpython-34.pyc
│ │ │ │ ├── hog.cpython-35.pyc
│ │ │ │ ├── imutils.cpython-34.pyc
│ │ │ │ ├── imutils.cpython-35.pyc
│ │ │ │ ├── __init__.cpython-34.pyc
│ │ │ │ └── __init__.cpython-35.pyc
│ │ │ └── train.py
│ │ ├── eye_tracking
│ │ │ ├── cascades
│ │ │ │ ├── haarcascade_eye.xml
│ │ │ │ └── haarcascade_frontalface_default.xml
│ │ │ ├── eyetracking.py
│ │ │ ├── pyimagesearch
│ │ │ │ ├── eyetracker.py
│ │ │ │ ├── eyetracker.pyc
│ │ │ │ ├── facedetector.pyc
│ │ │ │ ├── imutils.py
│ │ │ │ ├── imutils.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ └── __pycache__
│ │ │ │ ├── eyetracker.cpython-34.pyc
│ │ │ │ ├── imutils.cpython-34.pyc
│ │ │ │ └── __init__.cpython-34.pyc
│ │ │ └── video
│ │ │ └── adrian_eyes.mov
│ │ ├── face_detection
│ │ │ ├── cascades
│ │ │ │ ├── haarcascade_eye.xml
│ │ │ │ └── haarcascade_frontalface_default.xml
│ │ │ ├── detect_faces.py
│ │ │ ├── images
│ │ │ │ ├── messi2.png
│ │ │ │ ├── messi.png
│ │ │ │ ├── obama2.png
│ │ │ │ └── obama.png
│ │ │ ├── notes.txt
│ │ │ ├── param_notes.txt
│ │ │ └── pyimagesearch
│ │ │ ├── facedetector.py
│ │ │ ├── facedetector.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ └── __pycache__
│ │ │ ├── facedetector.cpython-34.pyc
│ │ │ └── __init__.cpython-34.pyc
│ │ ├── plant_classification
│ │ │ ├── classify.py
│ │ │ ├── dataset
│ │ │ │ ├── images
│ │ │ │ │ ├── image_crocus_0001.png
│ │ │ │ │ ├── image_crocus_0002.png
│ │ │ │ │ ├── image_crocus_0003.png
│ │ │ │ │ ├── image_crocus_0004.png
│ │ │ │ │ ├── image_crocus_0005.png
│ │ │ │ │ ├── image_crocus_0006.png
│ │ │ │ │ ├── image_crocus_0007.png
│ │ │ │ │ ├── image_crocus_0008.png
│ │ │ │ │ ├── image_crocus_0009.png
│ │ │ │ │ ├── image_crocus_0010.png
│ │ │ │ │ ├── image_crocus_0011.png
│ │ │ │ │ ├── image_crocus_0012.png
│ │ │ │ │ ├── image_crocus_0013.png
│ │ │ │ │ ├── image_crocus_0014.png
│ │ │ │ │ ├── image_crocus_0015.png
│ │ │ │ │ ├── image_crocus_0016.png
│ │ │ │ │ ├── image_crocus_0017.png
│ │ │ │ │ ├── image_crocus_0018.png
│ │ │ │ │ ├── image_crocus_0019.png
│ │ │ │ │ ├── image_crocus_0020.png
│ │ │ │ │ ├── image_crocus_0021.png
│ │ │ │ │ ├── image_crocus_0022.png
│ │ │ │ │ ├── image_crocus_0023.png
│ │ │ │ │ ├── image_crocus_0024.png
│ │ │ │ │ ├── image_crocus_0025.png
│ │ │ │ │ ├── image_crocus_0026.png
│ │ │ │ │ ├── image_crocus_0027.png
│ │ │ │ │ ├── image_crocus_0028.png
│ │ │ │ │ ├── image_crocus_0029.png
│ │ │ │ │ ├── image_crocus_0030.png
│ │ │ │ │ ├── image_crocus_0031.png
│ │ │ │ │ ├── image_crocus_0032.png
│ │ │ │ │ ├── image_crocus_0033.png
│ │ │ │ │ ├── image_crocus_0034.png
│ │ │ │ │ ├── image_crocus_0035.png
│ │ │ │ │ ├── image_crocus_0036.png
│ │ │ │ │ ├── image_crocus_0037.png
│ │ │ │ │ ├── image_crocus_0038.png
│ │ │ │ │ ├── image_crocus_0039.png
│ │ │ │ │ ├── image_crocus_0040.png
│ │ │ │ │ ├── image_crocus_0041.png
│ │ │ │ │ ├── image_crocus_0042.png
│ │ │ │ │ ├── image_crocus_0043.png
│ │ │ │ │ ├── image_crocus_0044.png
│ │ │ │ │ ├── image_crocus_0045.png
│ │ │ │ │ ├── image_crocus_0046.png
│ │ │ │ │ ├── image_crocus_0047.png
│ │ │ │ │ ├── image_crocus_0048.png
│ │ │ │ │ ├── image_crocus_0049.png
│ │ │ │ │ ├── image_crocus_0050.png
│ │ │ │ │ ├── image_daisy_0122.png
│ │ │ │ │ ├── image_daisy_0123.png
│ │ │ │ │ ├── image_daisy_0124.png
│ │ │ │ │ ├── image_daisy_0125.png
│ │ │ │ │ ├── image_daisy_0126.png
│ │ │ │ │ ├── image_daisy_0127.png
│ │ │ │ │ ├── image_daisy_0128.png
│ │ │ │ │ ├── image_daisy_0129.png
│ │ │ │ │ ├── image_daisy_0130.png
│ │ │ │ │ ├── image_daisy_0131.png
│ │ │ │ │ ├── image_daisy_0132.png
│ │ │ │ │ ├── image_daisy_0133.png
│ │ │ │ │ ├── image_daisy_0134.png
│ │ │ │ │ ├── image_daisy_0135.png
│ │ │ │ │ ├── image_daisy_0136.png
│ │ │ │ │ ├── image_daisy_0137.png
│ │ │ │ │ ├── image_daisy_0138.png
│ │ │ │ │ ├── image_daisy_0139.png
│ │ │ │ │ ├── image_daisy_0140.png
│ │ │ │ │ ├── image_daisy_0141.png
│ │ │ │ │ ├── image_daisy_0142.png
│ │ │ │ │ ├── image_daisy_0143.png
│ │ │ │ │ ├── image_daisy_0144.png
│ │ │ │ │ ├── image_daisy_0145.png
│ │ │ │ │ ├── image_daisy_0146.png
│ │ │ │ │ ├── image_daisy_0147.png
│ │ │ │ │ ├── image_daisy_0148.png
│ │ │ │ │ ├── image_daisy_0149.png
│ │ │ │ │ ├── image_daisy_0150.png
│ │ │ │ │ ├── image_daisy_0151.png
│ │ │ │ │ ├── image_daisy_0152.png
│ │ │ │ │ ├── image_daisy_0153.png
│ │ │ │ │ ├── image_daisy_0154.png
│ │ │ │ │ ├── image_daisy_0155.png
│ │ │ │ │ ├── image_daisy_0156.png
│ │ │ │ │ ├── image_daisy_0157.png
│ │ │ │ │ ├── image_daisy_0158.png
│ │ │ │ │ ├── image_daisy_0159.png
│ │ │ │ │ ├── image_daisy_0160.png
│ │ │ │ │ ├── image_daisy_0161.png
│ │ │ │ │ ├── image_daisy_0162.png
│ │ │ │ │ ├── image_daisy_0163.png
│ │ │ │ │ ├── image_daisy_0164.png
│ │ │ │ │ ├── image_daisy_0165.png
│ │ │ │ │ ├── image_daisy_0166.png
│ │ │ │ │ ├── image_daisy_0167.png
│ │ │ │ │ ├── image_daisy_0168.png
│ │ │ │ │ ├── image_daisy_0169.png
│ │ │ │ │ ├── image_daisy_0170.png
│ │ │ │ │ ├── image_daisy_0171.png
│ │ │ │ │ ├── image_daisy_0172.png
│ │ │ │ │ ├── image_daisy_0173.png
│ │ │ │ │ ├── image_daisy_0174.png
│ │ │ │ │ ├── image_daisy_0175.png
│ │ │ │ │ ├── image_daisy_0176.png
│ │ │ │ │ ├── image_daisy_0177.png
│ │ │ │ │ ├── image_daisy_0178.png
│ │ │ │ │ ├── image_pansy_0179.png
│ │ │ │ │ ├── image_pansy_0180.png
│ │ │ │ │ ├── image_pansy_0181.png
│ │ │ │ │ ├── image_pansy_0182.png
│ │ │ │ │ ├── image_pansy_0183.png
│ │ │ │ │ ├── image_pansy_0184.png
│ │ │ │ │ ├── image_pansy_0185.png
│ │ │ │ │ ├── image_pansy_0186.png
│ │ │ │ │ ├── image_pansy_0187.png
│ │ │ │ │ ├── image_pansy_0188.png
│ │ │ │ │ ├── image_pansy_0189.png
│ │ │ │ │ ├── image_pansy_0190.png
│ │ │ │ │ ├── image_pansy_0191.png
│ │ │ │ │ ├── image_pansy_0192.png
│ │ │ │ │ ├── image_pansy_0193.png
│ │ │ │ │ ├── image_pansy_0194.png
│ │ │ │ │ ├── image_pansy_0195.png
│ │ │ │ │ ├── image_pansy_0196.png
│ │ │ │ │ ├── image_pansy_0197.png
│ │ │ │ │ ├── image_pansy_0198.png
│ │ │ │ │ ├── image_pansy_0199.png
│ │ │ │ │ ├── image_pansy_0200.png
│ │ │ │ │ ├── image_pansy_0201.png
│ │ │ │ │ ├── image_pansy_0202.png
│ │ │ │ │ ├── image_pansy_0203.png
│ │ │ │ │ ├── image_pansy_0204.png
│ │ │ │ │ ├── image_pansy_0205.png
│ │ │ │ │ ├── image_pansy_0206.png
│ │ │ │ │ ├── image_pansy_0207.png
│ │ │ │ │ ├── image_pansy_0208.png
│ │ │ │ │ ├── image_pansy_0209.png
│ │ │ │ │ ├── image_pansy_0210.png
│ │ │ │ │ ├── image_pansy_0211.png
│ │ │ │ │ ├── image_pansy_0212.png
│ │ │ │ │ ├── image_pansy_0213.png
│ │ │ │ │ ├── image_pansy_0214.png
│ │ │ │ │ ├── image_pansy_0215.png
│ │ │ │ │ ├── image_pansy_0216.png
│ │ │ │ │ ├── image_pansy_0217.png
│ │ │ │ │ ├── image_pansy_0218.png
│ │ │ │ │ ├── image_pansy_0219.png
│ │ │ │ │ ├── image_pansy_0220.png
│ │ │ │ │ ├── image_pansy_0221.png
│ │ │ │ │ ├── image_pansy_0222.png
│ │ │ │ │ ├── image_pansy_0223.png
│ │ │ │ │ ├── image_pansy_0224.png
│ │ │ │ │ ├── image_pansy_0225.png
│ │ │ │ │ ├── image_pansy_0226.png
│ │ │ │ │ ├── image_pansy_0227.png
│ │ │ │ │ ├── image_pansy_0228.png
│ │ │ │ │ ├── image_pansy_0229.png
│ │ │ │ │ ├── image_pansy_0230.png
│ │ │ │ │ ├── image_pansy_0231.png
│ │ │ │ │ ├── image_pansy_0232.png
│ │ │ │ │ ├── image_pansy_0233.png
│ │ │ │ │ ├── image_pansy_0234.png
│ │ │ │ │ ├── image_sunflower_0051.png
│ │ │ │ │ ├── image_sunflower_0052.png
│ │ │ │ │ ├── image_sunflower_0053.png
│ │ │ │ │ ├── image_sunflower_0054.png
│ │ │ │ │ ├── image_sunflower_0055.png
│ │ │ │ │ ├── image_sunflower_0056.png
│ │ │ │ │ ├── image_sunflower_0057.png
│ │ │ │ │ ├── image_sunflower_0058.png
│ │ │ │ │ ├── image_sunflower_0059.png
│ │ │ │ │ ├── image_sunflower_0060.png
│ │ │ │ │ ├── image_sunflower_0061.png
│ │ │ │ │ ├── image_sunflower_0062.png
│ │ │ │ │ ├── image_sunflower_0063.png
│ │ │ │ │ ├── image_sunflower_0064.png
│ │ │ │ │ ├── image_sunflower_0065.png
│ │ │ │ │ ├── image_sunflower_0066.png
│ │ │ │ │ ├── image_sunflower_0067.png
│ │ │ │ │ ├── image_sunflower_0068.png
│ │ │ │ │ ├── image_sunflower_0069.png
│ │ │ │ │ ├── image_sunflower_0070.png
│ │ │ │ │ ├── image_sunflower_0071.png
│ │ │ │ │ ├── image_sunflower_0072.png
│ │ │ │ │ ├── image_sunflower_0073.png
│ │ │ │ │ ├── image_sunflower_0074.png
│ │ │ │ │ ├── image_sunflower_0075.png
│ │ │ │ │ ├── image_sunflower_0076.png
│ │ │ │ │ ├── image_sunflower_0077.png
│ │ │ │ │ ├── image_sunflower_0078.png
│ │ │ │ │ ├── image_sunflower_0079.png
│ │ │ │ │ ├── image_sunflower_0080.png
│ │ │ │ │ ├── image_sunflower_0081.png
│ │ │ │ │ ├── image_sunflower_0082.png
│ │ │ │ │ ├── image_sunflower_0083.png
│ │ │ │ │ ├── image_sunflower_0084.png
│ │ │ │ │ ├── image_sunflower_0085.png
│ │ │ │ │ ├── image_sunflower_0086.png
│ │ │ │ │ ├── image_sunflower_0087.png
│ │ │ │ │ ├── image_sunflower_0088.png
│ │ │ │ │ ├── image_sunflower_0089.png
│ │ │ │ │ ├── image_sunflower_0090.png
│ │ │ │ │ ├── image_sunflower_0091.png
│ │ │ │ │ ├── image_sunflower_0092.png
│ │ │ │ │ ├── image_sunflower_0093.png
│ │ │ │ │ ├── image_sunflower_0094.png
│ │ │ │ │ ├── image_sunflower_0095.png
│ │ │ │ │ ├── image_sunflower_0096.png
│ │ │ │ │ ├── image_sunflower_0097.png
│ │ │ │ │ ├── image_sunflower_0098.png
│ │ │ │ │ ├── image_sunflower_0099.png
│ │ │ │ │ ├── image_sunflower_0100.png
│ │ │ │ │ ├── image_sunflower_0101.png
│ │ │ │ │ ├── image_sunflower_0102.png
│ │ │ │ │ ├── image_sunflower_0103.png
│ │ │ │ │ ├── image_sunflower_0104.png
│ │ │ │ │ ├── image_sunflower_0105.png
│ │ │ │ │ ├── image_sunflower_0106.png
│ │ │ │ │ ├── image_sunflower_0107.png
│ │ │ │ │ ├── image_sunflower_0108.png
│ │ │ │ │ ├── image_sunflower_0109.png
│ │ │ │ │ ├── image_sunflower_0110.png
│ │ │ │ │ ├── image_sunflower_0111.png
│ │ │ │ │ ├── image_sunflower_0112.png
│ │ │ │ │ ├── image_sunflower_0113.png
│ │ │ │ │ ├── image_sunflower_0114.png
│ │ │ │ │ ├── image_sunflower_0115.png
│ │ │ │ │ ├── image_sunflower_0116.png
│ │ │ │ │ ├── image_sunflower_0117.png
│ │ │ │ │ ├── image_sunflower_0118.png
│ │ │ │ │ ├── image_sunflower_0119.png
│ │ │ │ │ ├── image_sunflower_0120.png
│ │ │ │ │ └── image_sunflower_0121.png
│ │ │ │ └── masks
│ │ │ │ ├── mask_crocus_0001.png
│ │ │ │ ├── mask_crocus_0002.png
│ │ │ │ ├── mask_crocus_0003.png
│ │ │ │ ├── mask_crocus_0004.png
│ │ │ │ ├── mask_crocus_0005.png
│ │ │ │ ├── mask_crocus_0006.png
│ │ │ │ ├── mask_crocus_0007.png
│ │ │ │ ├── mask_crocus_0008.png
│ │ │ │ ├── mask_crocus_0009.png
│ │ │ │ ├── mask_crocus_0010.png
│ │ │ │ ├── mask_crocus_0011.png
│ │ │ │ ├── mask_crocus_0012.png
│ │ │ │ ├── mask_crocus_0013.png
│ │ │ │ ├── mask_crocus_0014.png
│ │ │ │ ├── mask_crocus_0015.png
│ │ │ │ ├── mask_crocus_0016.png
│ │ │ │ ├── mask_crocus_0017.png
│ │ │ │ ├── mask_crocus_0018.png
│ │ │ │ ├── mask_crocus_0019.png
│ │ │ │ ├── mask_crocus_0020.png
│ │ │ │ ├── mask_crocus_0021.png
│ │ │ │ ├── mask_crocus_0022.png
│ │ │ │ ├── mask_crocus_0023.png
│ │ │ │ ├── mask_crocus_0024.png
│ │ │ │ ├── mask_crocus_0025.png
│ │ │ │ ├── mask_crocus_0026.png
│ │ │ │ ├── mask_crocus_0027.png
│ │ │ │ ├── mask_crocus_0028.png
│ │ │ │ ├── mask_crocus_0029.png
│ │ │ │ ├── mask_crocus_0030.png
│ │ │ │ ├── mask_crocus_0031.png
│ │ │ │ ├── mask_crocus_0032.png
│ │ │ │ ├── mask_crocus_0033.png
│ │ │ │ ├── mask_crocus_0034.png
│ │ │ │ ├── mask_crocus_0035.png
│ │ │ │ ├── mask_crocus_0036.png
│ │ │ │ ├── mask_crocus_0037.png
│ │ │ │ ├── mask_crocus_0038.png
│ │ │ │ ├── mask_crocus_0039.png
│ │ │ │ ├── mask_crocus_0040.png
│ │ │ │ ├── mask_crocus_0041.png
│ │ │ │ ├── mask_crocus_0042.png
│ │ │ │ ├── mask_crocus_0043.png
│ │ │ │ ├── mask_crocus_0044.png
│ │ │ │ ├── mask_crocus_0045.png
│ │ │ │ ├── mask_crocus_0046.png
│ │ │ │ ├── mask_crocus_0047.png
│ │ │ │ ├── mask_crocus_0048.png
│ │ │ │ ├── mask_crocus_0049.png
│ │ │ │ ├── mask_crocus_0050.png
│ │ │ │ ├── mask_daisy_0122.png
│ │ │ │ ├── mask_daisy_0123.png
│ │ │ │ ├── mask_daisy_0124.png
│ │ │ │ ├── mask_daisy_0125.png
│ │ │ │ ├── mask_daisy_0126.png
│ │ │ │ ├── mask_daisy_0127.png
│ │ │ │ ├── mask_daisy_0128.png
│ │ │ │ ├── mask_daisy_0129.png
│ │ │ │ ├── mask_daisy_0130.png
│ │ │ │ ├── mask_daisy_0131.png
│ │ │ │ ├── mask_daisy_0132.png
│ │ │ │ ├── mask_daisy_0133.png
│ │ │ │ ├── mask_daisy_0134.png
│ │ │ │ ├── mask_daisy_0135.png
│ │ │ │ ├── mask_daisy_0136.png
│ │ │ │ ├── mask_daisy_0137.png
│ │ │ │ ├── mask_daisy_0138.png
│ │ │ │ ├── mask_daisy_0139.png
│ │ │ │ ├── mask_daisy_0140.png
│ │ │ │ ├── mask_daisy_0141.png
│ │ │ │ ├── mask_daisy_0142.png
│ │ │ │ ├── mask_daisy_0143.png
│ │ │ │ ├── mask_daisy_0144.png
│ │ │ │ ├── mask_daisy_0145.png
│ │ │ │ ├── mask_daisy_0146.png
│ │ │ │ ├── mask_daisy_0147.png
│ │ │ │ ├── mask_daisy_0148.png
│ │ │ │ ├── mask_daisy_0149.png
│ │ │ │ ├── mask_daisy_0150.png
│ │ │ │ ├── mask_daisy_0151.png
│ │ │ │ ├── mask_daisy_0152.png
│ │ │ │ ├── mask_daisy_0153.png
│ │ │ │ ├── mask_daisy_0154.png
│ │ │ │ ├── mask_daisy_0155.png
│ │ │ │ ├── mask_daisy_0156.png
│ │ │ │ ├── mask_daisy_0157.png
│ │ │ │ ├── mask_daisy_0158.png
│ │ │ │ ├── mask_daisy_0159.png
│ │ │ │ ├── mask_daisy_0160.png
│ │ │ │ ├── mask_daisy_0161.png
│ │ │ │ ├── mask_daisy_0162.png
│ │ │ │ ├── mask_daisy_0163.png
│ │ │ │ ├── mask_daisy_0164.png
│ │ │ │ ├── mask_daisy_0165.png
│ │ │ │ ├── mask_daisy_0166.png
│ │ │ │ ├── mask_daisy_0167.png
│ │ │ │ ├── mask_daisy_0168.png
│ │ │ │ ├── mask_daisy_0169.png
│ │ │ │ ├── mask_daisy_0170.png
│ │ │ │ ├── mask_daisy_0171.png
│ │ │ │ ├── mask_daisy_0172.png
│ │ │ │ ├── mask_daisy_0173.png
│ │ │ │ ├── mask_daisy_0174.png
│ │ │ │ ├── mask_daisy_0175.png
│ │ │ │ ├── mask_daisy_0176.png
│ │ │ │ ├── mask_daisy_0177.png
│ │ │ │ ├── mask_daisy_0178.png
│ │ │ │ ├── mask_pansy_0179.png
│ │ │ │ ├── mask_pansy_0180.png
│ │ │ │ ├── mask_pansy_0181.png
│ │ │ │ ├── mask_pansy_0182.png
│ │ │ │ ├── mask_pansy_0183.png
│ │ │ │ ├── mask_pansy_0184.png
│ │ │ │ ├── mask_pansy_0185.png
│ │ │ │ ├── mask_pansy_0186.png
│ │ │ │ ├── mask_pansy_0187.png
│ │ │ │ ├── mask_pansy_0188.png
│ │ │ │ ├── mask_pansy_0189.png
│ │ │ │ ├── mask_pansy_0190.png
│ │ │ │ ├── mask_pansy_0191.png
│ │ │ │ ├── mask_pansy_0192.png
│ │ │ │ ├── mask_pansy_0193.png
│ │ │ │ ├── mask_pansy_0194.png
│ │ │ │ ├── mask_pansy_0195.png
│ │ │ │ ├── mask_pansy_0196.png
│ │ │ │ ├── mask_pansy_0197.png
│ │ │ │ ├── mask_pansy_0198.png
│ │ │ │ ├── mask_pansy_0199.png
│ │ │ │ ├── mask_pansy_0200.png
│ │ │ │ ├── mask_pansy_0201.png
│ │ │ │ ├── mask_pansy_0202.png
│ │ │ │ ├── mask_pansy_0203.png
│ │ │ │ ├── mask_pansy_0204.png
│ │ │ │ ├── mask_pansy_0205.png
│ │ │ │ ├── mask_pansy_0206.png
│ │ │ │ ├── mask_pansy_0207.png
│ │ │ │ ├── mask_pansy_0208.png
│ │ │ │ ├── mask_pansy_0209.png
│ │ │ │ ├── mask_pansy_0210.png
│ │ │ │ ├── mask_pansy_0211.png
│ │ │ │ ├── mask_pansy_0212.png
│ │ │ │ ├── mask_pansy_0213.png
│ │ │ │ ├── mask_pansy_0214.png
│ │ │ │ ├── mask_pansy_0215.png
│ │ │ │ ├── mask_pansy_0216.png
│ │ │ │ ├── mask_pansy_0217.png
│ │ │ │ ├── mask_pansy_0218.png
│ │ │ │ ├── mask_pansy_0219.png
│ │ │ │ ├── mask_pansy_0220.png
│ │ │ │ ├── mask_pansy_0221.png
│ │ │ │ ├── mask_pansy_0222.png
│ │ │ │ ├── mask_pansy_0223.png
│ │ │ │ ├── mask_pansy_0224.png
│ │ │ │ ├── mask_pansy_0225.png
│ │ │ │ ├── mask_pansy_0226.png
│ │ │ │ ├── mask_pansy_0227.png
│ │ │ │ ├── mask_pansy_0228.png
│ │ │ │ ├── mask_pansy_0229.png
│ │ │ │ ├── mask_pansy_0230.png
│ │ │ │ ├── mask_pansy_0231.png
│ │ │ │ ├── mask_pansy_0232.png
│ │ │ │ ├── mask_pansy_0233.png
│ │ │ │ ├── mask_pansy_0234.png
│ │ │ │ ├── mask_sunflower_0051.png
│ │ │ │ ├── mask_sunflower_0052.png
│ │ │ │ ├── mask_sunflower_0053.png
│ │ │ │ ├── mask_sunflower_0054.png
│ │ │ │ ├── mask_sunflower_0055.png
│ │ │ │ ├── mask_sunflower_0056.png
│ │ │ │ ├── mask_sunflower_0057.png
│ │ │ │ ├── mask_sunflower_0058.png
│ │ │ │ ├── mask_sunflower_0059.png
│ │ │ │ ├── mask_sunflower_0060.png
│ │ │ │ ├── mask_sunflower_0061.png
│ │ │ │ ├── mask_sunflower_0062.png
│ │ │ │ ├── mask_sunflower_0063.png
│ │ │ │ ├── mask_sunflower_0064.png
│ │ │ │ ├── mask_sunflower_0065.png
│ │ │ │ ├── mask_sunflower_0066.png
│ │ │ │ ├── mask_sunflower_0067.png
│ │ │ │ ├── mask_sunflower_0068.png
│ │ │ │ ├── mask_sunflower_0069.png
│ │ │ │ ├── mask_sunflower_0070.png
│ │ │ │ ├── mask_sunflower_0071.png
│ │ │ │ ├── mask_sunflower_0072.png
│ │ │ │ ├── mask_sunflower_0073.png
│ │ │ │ ├── mask_sunflower_0074.png
│ │ │ │ ├── mask_sunflower_0075.png
│ │ │ │ ├── mask_sunflower_0076.png
│ │ │ │ ├── mask_sunflower_0077.png
│ │ │ │ ├── mask_sunflower_0078.png
│ │ │ │ ├── mask_sunflower_0079.png
│ │ │ │ ├── mask_sunflower_0080.png
│ │ │ │ ├── mask_sunflower_0081.png
│ │ │ │ ├── mask_sunflower_0082.png
│ │ │ │ ├── mask_sunflower_0083.png
│ │ │ │ ├── mask_sunflower_0084.png
│ │ │ │ ├── mask_sunflower_0085.png
│ │ │ │ ├── mask_sunflower_0086.png
│ │ │ │ ├── mask_sunflower_0087.png
│ │ │ │ ├── mask_sunflower_0088.png
│ │ │ │ ├── mask_sunflower_0089.png
│ │ │ │ ├── mask_sunflower_0090.png
│ │ │ │ ├── mask_sunflower_0091.png
│ │ │ │ ├── mask_sunflower_0092.png
│ │ │ │ ├── mask_sunflower_0093.png
│ │ │ │ ├── mask_sunflower_0094.png
│ │ │ │ ├── mask_sunflower_0095.png
│ │ │ │ ├── mask_sunflower_0096.png
│ │ │ │ ├── mask_sunflower_0097.png
│ │ │ │ ├── mask_sunflower_0098.png
│ │ │ │ ├── mask_sunflower_0099.png
│ │ │ │ ├── mask_sunflower_0100.png
│ │ │ │ ├── mask_sunflower_0101.png
│ │ │ │ ├── mask_sunflower_0102.png
│ │ │ │ ├── mask_sunflower_0103.png
│ │ │ │ ├── mask_sunflower_0104.png
│ │ │ │ ├── mask_sunflower_0105.png
│ │ │ │ ├── mask_sunflower_0106.png
│ │ │ │ ├── mask_sunflower_0107.png
│ │ │ │ ├── mask_sunflower_0108.png
│ │ │ │ ├── mask_sunflower_0109.png
│ │ │ │ ├── mask_sunflower_0110.png
│ │ │ │ ├── mask_sunflower_0111.png
│ │ │ │ ├── mask_sunflower_0112.png
│ │ │ │ ├── mask_sunflower_0113.png
│ │ │ │ ├── mask_sunflower_0114.png
│ │ │ │ ├── mask_sunflower_0115.png
│ │ │ │ ├── mask_sunflower_0116.png
│ │ │ │ ├── mask_sunflower_0117.png
│ │ │ │ ├── mask_sunflower_0118.png
│ │ │ │ ├── mask_sunflower_0119.png
│ │ │ │ ├── mask_sunflower_0120.png
│ │ │ │ └── mask_sunflower_0121.png
│ │ │ └── pyimagesearch
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-34.pyc
│ │ │ │ ├── __init__.cpython-35.pyc
│ │ │ │ ├── rgbhistogram.cpython-34.pyc
│ │ │ │ └── rgbhistogram.cpython-35.pyc
│ │ │ ├── rgbhistogram.py
│ │ │ └── rgbhistogram.pyc
│ │ └── webcam_face_detection
│ │ ├── cam.py
│ │ ├── cascades
│ │ │ └── haarcascade_frontalface_default.xml
│ │ ├── pyimagesearch
│ │ │ ├── facedetector.py
│ │ │ ├── facedetector.pyc
│ │ │ ├── imutils.py
│ │ │ ├── imutils.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ └── __pycache__
│ │ │ ├── facedetector.cpython-34.pyc
│ │ │ ├── imutils.cpython-34.pyc
│ │ │ └── __init__.cpython-34.pyc
│ │ └── video
│ │ └── adrian_face.mov
│ └── pi_code
│ ├── eye_tracking
│ │ ├── cascades
│ │ │ ├── haarcascade_eye.xml
│ │ │ └── haarcascade_frontalface_default.xml
│ │ ├── eyetracking_video.py
│ │ ├── eyetracking_webcam.py
│ │ ├── pyimagesearch
│ │ │ ├── eyetracker.py
│ │ │ ├── eyetracker.pyc
│ │ │ ├── facedetector.pyc
│ │ │ ├── imutils.py
│ │ │ ├── imutils.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ └── video
│ │ └── adrian_eyes.mov
│ └── webcam_face_detection
│ ├── cascades
│ │ └── haarcascade_frontalface_default.xml
│ ├── pyimagesearch
│ │ ├── facedetector.py
│ │ ├── facedetector.pyc
│ │ ├── imutils.py
│ │ ├── imutils.pyc
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ ├── video
│ │ └── adrian_face.mov
│ ├── video.py
│ └── webcam.py
└── Practical Python and OpenCV, 3rd Edition
├── code
│ ├── chapter-03
│ │ ├── load_display_save.py
│ │ └── newimage.jpg
│ ├── chapter-04
│ │ └── getting_and_setting.py
│ ├── chapter-05
│ │ └── drawing.py
│ ├── chapter-06
│ │ ├── arithmetic.py
│ │ ├── bitwise.py
│ │ ├── colorspaces.py
│ │ ├── crop.py
│ │ ├── flipping.py
│ │ ├── imutils.py
│ │ ├── imutils.pyc
│ │ ├── masking.py
│ │ ├── resize.py
│ │ ├── rotate.py
│ │ ├── splitting_and_merging.py
│ │ └── translation.py
│ ├── chapter-07
│ │ ├── color_histograms.py
│ │ ├── equalize.py
│ │ ├── grayscale_histogram.py
│ │ └── histogram_with_mask.py
│ ├── chapter-08
│ │ └── blurring.py
│ ├── chapter-09
│ │ ├── adaptive_thresholding.py
│ │ ├── otsu_and_riddler.py
│ │ └── simple_thresholding.py
│ ├── chapter-10
│ │ ├── canny.py
│ │ └── sobel_and_laplacian.py
│ ├── chapter-11
│ │ └── counting_coins.py
│ └── images
│ ├── beach.png
│ ├── coins.png
│ ├── trex.png
│ └── wave.png
├── Practical Python and OpenCV, 3rd Edition.mobi
└── Practical Python and OpenCV, 3rd Edition.pdf
57 directories, 669 files
标签:
Practical Python and OpenCV + Case Studies by Adrian Rosebrock -...
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论