快活林资源网 Design By www.csstdc.com
今天在弄一个查找连通的最大面积的问题。
要把图像弄成黑底,白字,这样才可以正确找到。
然后调用下边的方法:
RETR_CCOMP:提取所有轮廓,并将轮廓组织成双层结构(two-level hierarchy),顶层为连通域的外围边界,次层位内层边界
#include <opencv2/imgproc.hpp> #include <opencv2/highgui.hpp> using namespace cv; using namespace std; int main( int argc, char** argv ) { Mat src = imread( argv[1] ); int largest_area=0; int largest_contour_index=0; Rect bounding_rect; Mat thr; cvtColor( src, thr, COLOR_BGR2GRAY ); //Convert to gray threshold( thr, thr, 125, 255, THRESH_BINARY ); //Threshold the gray bitwise_not(thr,thr); //这里先变反转颜色 vector<vector<Point> > contours; // Vector for storing contours findContours( thr, contours, RETR_CCOMP, CHAIN_APPROX_SIMPLE ); // Find the contours in the image for( size_t i = 0; i< contours.size(); i++ ) // iterate through each contour. { double area = contourArea( contours[i] ); // Find the area of contour if( area > largest_area ) { largest_area = area; largest_contour_index = i; //Store the index of largest contour bounding_rect = boundingRect( contours[i] ); // Find the bounding rectangle for biggest contour } } drawContours( src, contours,largest_contour_index, Scalar( 0, 255, 0 ), 2 ); // Draw the largest contour using previously stored index. imshow( "result", src ); waitKey(); return 0; }
方法二: connectedComponentsWithStats
std::pair< int , int > MaxAreaFromSource(Mat srcImage, Mat &dstImage, int index) { /* vector<vector<cv::Point> > contours; // Vector for storing contours int largest_area=0; size_t largest_contour_index=0; Rect bounding_rect; findContours( srcImage, contours, RETR_CCOMP, CHAIN_APPROX_SIMPLE ); // Find the contours in the image for( size_t i = 0; i< contours.size(); i++ ) // iterate through each contour. { double area = contourArea( contours[i] ); // Find the area of contour if( area > largest_area ) { largest_area = area; largest_contour_index = i; //Store the index of largest contour bounding_rect = boundingRect( contours[i] ); // Find the bounding rectangle for biggest contour } } Mat dst; cvtColor(srcImage, dst, CV_GRAY2RGB); drawContours( dst, contours,largest_contour_index, Scalar( 0, 255, 0 ), 2 ); // Draw the largest contour using previously stored index. imshow( "result", dst ); waitKey(); printf("%%%%%%%%%%%max area:%d\n", largest_area); return make_pair( largest_area, index); */ cv::Mat img_bool, labels, stats, centroids, img_color, img_gray; //连通域计算 int nccomps = cv::connectedComponentsWithStats ( srcImage, //二值图像 labels, //和原图一样大的标记图 stats, //nccomps×5的矩阵 表示每个连通区域的外接矩形和面积(pixel) centroids //nccomps×2的矩阵 表示每个连通区域的质心 ); //cv::imshow("labels", labels); //cv::waitKey(); vector<cv::Vec3b> colors(nccomps); colors[0] = cv::Vec3b(0,0,0); // background pixels remain black. printf( "index:%d==================\n",index ); vector< int >vec_width,vec_area,vec_height; for(int label = 1; label < nccomps; ++label) { colors[label] = cv::Vec3b( (std::rand()&255), (std::rand()&255), (std::rand()&255) ); std::cout << "Component "<< label << std::endl; std::cout << "CC_STAT_LEFT = " << stats.at<int>(label,cv::CC_STAT_LEFT) << std::endl; std::cout << "CC_STAT_TOP = " << stats.at<int>(label,cv::CC_STAT_TOP) << std::endl; std::cout << "CC_STAT_WIDTH = " << stats.at<int>(label,cv::CC_STAT_WIDTH) << std::endl; std::cout << "CC_STAT_HEIGHT = " << stats.at<int>(label,cv::CC_STAT_HEIGHT) << std::endl; std::cout << "CC_STAT_AREA = " << stats.at<int>(label,cv::CC_STAT_AREA) << std::endl; std::cout << "CENTER = (" << centroids.at<double>(label, 0) <<","<< centroids.at<double>(label, 1) << ")"<< std::endl << std::endl; int area = stats.at<int>(label,cv::CC_STAT_AREA); int left = stats.at<int>(label,cv::CC_STAT_LEFT); int top = stats.at<int>(label,cv::CC_STAT_TOP); int width = stats.at<int>(label,cv::CC_STAT_WIDTH); int height = stats.at<int>(label,cv::CC_STAT_HEIGHT); vec_area.push_back(area); vec_width.push_back(width); vec_height.push_back(height); } vector<int>::iterator bigwidth = std::max_element(std::begin(vec_width), std::end(vec_width)); vector<int>::iterator bigheight = std::max_element(std::begin(vec_height), std::end(vec_height)); vector<int>::iterator bigarea = std::max_element(std::begin(vec_area), std::end(vec_area)); //printf( "area:%d------------width:%d height:%d \n", *bigarea, *bigwidth, *bigheight ); //按照label值,对不同的连通域进行着色 img_color = cv::Mat::zeros(srcImage.size(), CV_8UC3); for( int y = 0; y < img_color.rows; y++ ) for( int x = 0; x < img_color.cols; x++ ) { int label = labels.at<int>(y, x); CV_Assert(0 <= label && label <= nccomps); img_color.at<cv::Vec3b>(y, x) = colors[label]; } cv::imshow("color", img_color); cv::waitKey(); return make_pair( *bigarea , index ); }
我先用这个函数实现了一下,效果正确,还是opencv demo 是正确的,网上找了个例子,害死我了。
说明一下:方法一 比 第二种方法 运行速度快很多哦! 这一点很重要。
以上这篇opencv 查找连通区域 最大面积实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
快活林资源网 Design By www.csstdc.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
快活林资源网 Design By www.csstdc.com
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2024年12月26日
2024年12月26日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]