import cv2import numpy as np#此方法可以将彩色图根据一定的阈值转换为黑白图。其中阈值用于划分图片的黑白(局部方法)def threshold_deom(image): gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) ret, ...
分类:
编程语言 时间:
2020-03-28 23:22:47
阅读次数:
103
opencv图像处理入门第5节:图像基本操作,包含获得和修改图像像素点的值,获取图像大小,得到图像总像素数,ROI操作,图像通道分割与合并等。 ...
分类:
其他好文 时间:
2020-03-28 18:09:00
阅读次数:
70
opencv图像处理入门第2节:opencv中图像读写、显示方法和matplotlib库图像读写、显示方法讲解。 ...
分类:
其他好文 时间:
2020-03-27 21:42:06
阅读次数:
107
环境安装: 1. zxing-cpp 源码和源码编译后生成的lib,我的版本是V1.0.8,编译方法见:https://www.cnblogs.com/zhenjin-huaxiazongdai/p/12545959.html。zxing-cpp项目路径:https://github.com/nu-... ...
分类:
其他好文 时间:
2020-03-26 01:00:40
阅读次数:
93
遇到的问题:写完Android.mk和Application.mk文件,然后使用cygwin+NDK编译 总是遇到下面的编译错误: fatal error: opencv2/core.hpp: No such file or directory #include "opencv2/core.hpp" ...
分类:
其他好文 时间:
2020-03-24 17:13:02
阅读次数:
165
问题如下: Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simpleERROR: Could not find a version that satisfies the requirement opencv-python (from v ...
分类:
编程语言 时间:
2020-03-24 16:05:27
阅读次数:
213
实验效果: 代码地址:https://github.com/cyssmile/openCV_learning_notes/blob/master/opencv_test/opencv_030/main.cpp include include using namespace std; using na ...
分类:
其他好文 时间:
2020-03-24 15:50:53
阅读次数:
65
VideoCapture类实现视频获取,可以从摄像头或者文件进行视频读取。首先,创建一个VideoCapture对象,参数可以是设备索引(摄像头索引)或视频文件的名称。如果是设备索引,当只连接一台摄像机时,可以是0或-1;也可以通过传递1来选择第二个摄像头。然后,便可以通过该对象一帧一帧的获取视频... ...
分类:
其他好文 时间:
2020-03-23 22:14:48
阅读次数:
119
import cv2import numpy as npdef blur_demo(image): dst = cv2.blur(image,(5,5)) #5*5 blur[均值模糊] cv2.imshow('blur demo',dst)def median_blur_demo(image): ...
分类:
编程语言 时间:
2020-03-23 20:12:49
阅读次数:
76
import cv2import numpy as np#视频读取def video_demo(): capture = cv2.VideoCapture(0) while(True): ret, frame = capture.read() #frame = cv2.flip(frame,1) # ...
分类:
编程语言 时间:
2020-03-22 19:25:32
阅读次数:
94