opencv自学
qq_16968451
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
calcHist()直方图
#include <opencv2/opencv.hpp> #include <iostream>using namespace std; using namespace cv;int main() { Mat image = imread("D:/group.jpg", 0); MatND hist; const int channels[] = { 0 }; co原创 2017-10-19 18:38:57 · 383 阅读 · 0 评论 -
直方图的均衡化
#include <opencv2/opencv.hpp> #include <iostream>using namespace std; using namespace cv;int main() { Mat image = imread("D:/group.jpg", 0); MatND hist; const int channels[] = { 0 }; co原创 2017-10-19 19:00:48 · 287 阅读 · 0 评论 -
膨胀腐蚀开运算闭运算
#include <iostream> #include <opencv2/opencv.hpp>using namespace std; using namespace cv;int main() { Mat image, binary, eroded, dilated; image = imread("D:/image/group.jpg", 0); //二值化,取反原创 2017-10-19 19:53:16 · 448 阅读 · 0 评论
分享