您好,登錄后才能下訂單哦!
這篇文章主要講解了opencv自動光學檢測、目標分割和檢測的詳細分析,內(nèi)容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
步驟如下:
1.圖片灰化;
2.中值濾波 去噪
3.求圖片的光影(自動光學檢測)
4.除法去光影
5.閾值操作
6.實現(xiàn)了三種目標檢測方法
主要分兩種連通區(qū)域和findContours
過程遇到了錯誤主要是圖片忘了灰化處理,隨機顏色的問題。下面代碼都已經(jīng)進行了解決
這是findContours的效果
下面是連通區(qū)域的結(jié)果
#include <opencv2\core\utility.hpp> #include <opencv2\imgproc.hpp> #include <opencv2\highgui.hpp> #include<opencv2\opencv.hpp> #include <opencv2\core\core.hpp> #include <opencv2\core\matx.hpp> #include<string> #include <iostream> #include <limits> using namespace std; using namespace cv; Mat img = imread("C:\\Users\\hasee\\Desktop\\luosi.jpg",0); Mat removeLight(Mat imge, Mat pattern, int method); Mat calculateLightPattern(Mat img); static Scalar randomColor(RNG& rng); void ConnectedComponents(Mat img); void ConnectedComponetsStats(Mat img); void FindContoursBasic(Mat img); void main() { Mat img_noise; medianBlur(img,img_noise,3); Mat pattern = calculateLightPattern(img_noise); Mat re_light = removeLight(img_noise, pattern, 1); Mat img_thr; threshold(re_light,img_thr,30,255,THRESH_BINARY); //ConnectedComponents(img_thr); ConnectedComponetsStats(img_thr); //FindContoursBasic(img_thr); waitKey(0); } Mat removeLight(Mat imge, Mat pattern, int method) { Mat aux; if (method == 1) { Mat img32, pattern32; imge.convertTo(img32, CV_32F); pattern.convertTo(pattern32, CV_32F); aux = 1 - (img32 / pattern32); aux = aux * 255; aux.convertTo(aux, CV_8U); } else { aux = pattern - imge; } return aux; } Mat calculateLightPattern(Mat img) { Mat pattern; blur(img, pattern, Size(img.cols / 3, img.cols / 3)); return pattern; } static Scalar randomColor(RNG& rng) { int icolor = (unsigned)rng; return Scalar(icolor & 255, (icolor >> 8) & 255, (icolor >> 16) & 255); } void ConnectedComponents(Mat img) { Mat lables; int num_objects = connectedComponents(img, lables); if (num_objects < 2) { cout << "未檢測到目標" << endl; return; } else { cout << "檢測到的目標數(shù)量: " << num_objects - 1 << endl; } Mat output = Mat::zeros(img.rows,img.cols,CV_8UC3); RNG rng(0xFFFFFFFF); for (int i = 1; i < num_objects;i++) { Mat mask = lables == i; output.setTo(randomColor(rng),mask); } imshow("Result",output); } void ConnectedComponetsStats(Mat img) { Mat labels, stats, centroids; int num_objects = connectedComponentsWithStats(img,labels,stats,centroids); if (num_objects<2) { cout << "未檢測到目標" << endl; return; } else { cout << "檢測到的目標數(shù)量: " << num_objects - 1 << endl; } Mat output = Mat::zeros(img.rows, img.cols, CV_8UC3); RNG rng(0xFFFFFFFF); for (int i = 1; i < num_objects; i++) { Mat mask = labels == i; output.setTo(randomColor(rng), mask); stringstream ss; ss << "area: " << stats.at<int>(i,CC_STAT_AREA); putText(output,ss.str(), centroids.at<Point2d>(i),FONT_HERSHEY_SIMPLEX,0.4,Scalar(255,255,255)); } imshow("Result", output); } void FindContoursBasic(Mat img) { vector<vector<Point>> contours; findContours(img, contours, RETR_EXTERNAL, CHAIN_APPROX_SIMPLE); Mat output = Mat::zeros(img.rows, img.cols, CV_8UC3); if (contours.size()==0) { cout << "未檢測到對象" << endl; return; }else{ cout << "檢測到對象數(shù)量: " << contours.size() << endl; } RNG rng(0xFFFFFFFF); for (int i = 0; i < contours.size(); i++) drawContours(output,contours,i,randomColor(rng)); imshow("Result", output); }
補充知識:SURF特征點檢測與匹配之誤匹配點刪除
SURF特征點檢測與匹配之誤匹配點刪除
SURF(SpeededUp Robust Feature)是加速版的具有魯棒性的算法,是SIFT算法的加速版。
但是SURF特征匹配之后有大量的誤匹配點,需要對這些誤匹配點進行刪除。
這里不從理論上講解SURF原理等,直接說用法。
特征匹配的步驟分為三步:
1、找出特征點
2、描述特征點
3、特征點匹配
具體基本代碼見最后。具體的可以看毛星云的書籍,但是個人認為其編程風格不嚴謹,自己有做改動。
但是匹配出來的結(jié)果如下:
有很多的誤匹配點,如何對誤匹配點進行刪除呢。
雙向匹配加距離約束。
實驗結(jié)果如下:效果還是非常好的。
#include "stdafx.h" #include <opencv2\opencv.hpp> #include <opencv2\nonfree\nonfree.hpp> #include <opencv2\legacy\legacy.hpp> #include <iostream> int _tmain(int argc, _TCHAR* argv[]) { //讀取圖片 cv::Mat srcImg1 = cv::imread("1.jpg", 1); cv::Mat srcImg2 = cv::imread("2.jpg", 1); if (srcImg1.empty() || srcImg2.empty()) { std::cout << "Read Image ERROR!" << std::endl; return 0; } //SURF算子特征點檢測 int minHessian = 700; cv::SurfFeatureDetector detector(minHessian);//定義特征點類對象 std::vector<cv::KeyPoint> keyPoint1, keyPoint2;//存放動態(tài)數(shù)組,也就是特征點 detector.detect(srcImg1, keyPoint1); detector.detect(srcImg2, keyPoint2); //特征向量 cv::SurfDescriptorExtractor extrator;//定義描述類對象 cv::Mat descriptor1, descriptor2;//描述對象 extrator.compute(srcImg1, keyPoint1, descriptor1); extrator.compute(srcImg2, keyPoint2, descriptor2); //BruteForce暴力匹配 cv::BruteForceMatcher <cv::L2<float>>matcher;//匹配器 std::vector <cv::DMatch> matches; matcher12.match(descriptor1, descriptor2, matches); //繪制關(guān)鍵點 cv::Mat imgMatch; cv::drawMatches(srcImg1, keyPoint1, srcImg2, keyPoint2, matches, imgMatch); cv::namedWindow("匹配圖", CV_WINDOW_AUTOSIZE); cv::imshow("匹配圖", imgMatch); cv::imwrite("匹配圖.jpg", imgMatch); cv::waitKey(10); return 0; }
看完上述內(nèi)容,是不是對opencv自動光學檢測、目標分割和檢測的詳細分析有進一步的了解,如果還想學習更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。