- github代码下载报错或者下载后解压报错
- 解答:可以在项目"Clone or download"中选择https方式,用本地git工具下载:git clone https://github.com/Betterming/opencv_exercises.git
- 方便大家下载使用,提供本项目压缩包链接:opencv-exercises (访问码:my7k)
- 找不到包:ModuleNotFoundError:No module named 'cv2'
- 解决:首先要安装opencv包 pip install opencv-python,若还没有解决,需要在pycharm中引入解释器环境,setting->Project Interpreter 点击Project Interpreter右侧锯齿选择python环境,可能需要重启pycharm
- 报错:error: (-215:Assertion failed) size.width>0 && size.height>0 in function 'cv::imshow'
- 解决: 这种问题一般是因为图片/视频的路径有问题,路径做好不能有中文,注意不同系统之间路径可能表示不一样,可以在路径字符串前面加一个字符r
- 验证码那节报错:raise TesseractNotFoundError() pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it's not in your path
- 解答:不同系统采用不同策略:
On Linux sudo apt update sudo apt install tesseract-ocr sudo apt install libtesseract-dev On Mac brew install tesseract On Windows 先下载tesseract包:https://github.com/UB-Mannheim/tesseract/wiki. 然后修改源码pytesseract.py中tesseract_cmd指向的路径:tesseract_cmd = 'C:\\Program Files (x86)\\Tesseract-OCR\\tesseract.exe'
- 概述与环境 tutorial_1_demo
- 图像和视频读取与保存 tutorial_1_RW
- 绘图函数 tutorial_1_draw
- 把鼠标当画笔 tutorial_1_set_mouse
- 用滑动条做调色板 tutorial_1_tracebar
- numpy在图像处理中的基本使用 tutorial_2_numpy
- 颜色空间 tutorial_3_colorspace
- 像素运算 tutorial_4_Arithmetic
- 图像roi与泛洪填充 tutorial_5_roi
- 几何变换 tutorial_5_perspective_transform
- 模糊操作 tutorial_6_7_blur
- 边缘保留滤波 tutorial_8_EPF
- 直方图 tutorial_9_10_histogram
- 直方图反向投影 tutorial_11_backprojection
- 模板匹配 tutorial_12_template
- 图像二值化 tutorial_13_14_threshold
- 图像金字塔 tutorial_15_pyramid
- 图像梯度 tutorial_16_grad
- Canny边缘检测 tutorial_17_canny
- 直线检测和圆检测 tutorial_18_19_Hough
- 轮廓发现 tutorial_20_contours
- 对象测量 tutorial_21_measure
- 膨胀与腐蚀 tutorial_22_erode_dilate
- 开闭操作 tutorial_23_24_morphology
- 分水岭算法 tutorial_25_watershed
- 人脸检测 tutorial_26_face_detection
- 数字验证码识别 tutorial_27_recognization