您好,登錄后才能下訂單哦!
使用OpenCV怎么實現一個顏色追蹤功能,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
FPS 每秒幀數背景消除建模 BSMBackground SUbtractionBS算法
圖像分割(GMM-高斯混合模型) 機器學習(KNN-K臨近)
#include <opencv2/core/utility.hpp>#include <opencv2/tracking.hpp>#include <opencv2/videoio.hpp>#include <opencv2/highgui.hpp>#include<opencv2/opencv.hpp>#include <iostream>#include <cstring>using namespace std;using namespace cv;int main(){VideoCapture cap;cap.open("/media/laniakea/新加卷/ubuntu/board/train1.mp4");if(!cap.isOpened()){cout<<"no video";return -1;}Mat frame;Mat idontknoew;namedWindow("input",CV_WINDOW_AUTOSIZE);namedWindow("MOG2",CV_WINDOW_AUTOSIZE);Ptr<BackgroundSubtractor> pMOG2 = createBackgroundSubtractorMOG2();while (cap.read(frame)){imshow("input",frame);pMOG2->apply(frame,idontknoew);imshow("MOG2",idontknoew);char c = waitKey(100);if(c == 27){break;}}cap.release();waitKey(0);return 0;}
一般應用于背景靜止狀態
基于顏色的對象跟蹤
顏色范圍過濾 標注與測量
顏色過濾
inRange過濾 形態學操作提取 輪廓查找 外界矩形獲取 位置標定
#include<opencv2/opencv.hpp>#include <iostream>#include <string.h>using namespace std;using namespace cv;Rect roi;void processFrame(Mat &binary, Rect &rect){vector<vector<Point> > contours;vector<Vec4i> hierarchy;findContours(binary,contours,hierarchy,RETR_EXTERNAL,CHAIN_APPROX_SIMPLE,Point(0,0));if (contours.size() > 0){double maxArea = 0.0;for (size_t t = 0; t < contours.size(); t++){double area = contourArea(contours[static_cast<int>(t)]);//最大外接矩形if (area > maxArea){maxArea = area;rect = boundingRect(contours[static_cast<int>(t)]); } } }else {rect.x = rect.y = rect.width = rect.height = 0; }}int main(){ VideoCapture cap; cap.open("/media/laniakea/新加卷/ubuntu/board/train1.mp4"); if(!cap.isOpened()){ cout<<"no file to open \n"; return -1; } Mat frame,mask; namedWindow("input",CV_WINDOW_AUTOSIZE); namedWindow("mask",CV_WINDOW_AUTOSIZE); Mat kernel1 = getStructuringElement(MORPH_RECT, Size(3, 3), Point(-1, -1));//(-1,-1) 默認中心位置 Mat kernel2 = getStructuringElement(MORPH_RECT, Size(5, 5), Point(-1, -1)); while (cap.read(frame)){ inRange(frame,Scalar(0,0,107),Scalar(90,90,255),mask);//2 形態學操作提取 morphologyEx(mask, mask, MORPH_OPEN, kernel1, Point(-1, -1), 1); // 開操作//3 輪廓查找 dilate(mask, mask, kernel2, Point(-1, -1), 4);// 膨脹 imshow("mask",mask); processFrame(mask,roi); rectangle(frame,roi,Scalar(0,255,0),3,8,0); //roi就是矩形 Point p = Point(roi.tl().x,roi.tl().y); String s = to_string(roi.tl().x) + " ," + to_string(roi.tl().y); putText(frame,s,p,FONT_HERSHEY_TRIPLEX,0.8,Scalar(255,0,0),2,CV_AA); imshow("input",frame); char c = waitKey(100); if(c==27){ break; } } cap.release(); waitKey(0); return 0;}
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。