使用均值漂移算法查找物体,源代码

2024-02-20 20:18

本文主要是介绍使用均值漂移算法查找物体,源代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


本文转自:http://blog.csdn.net/williamfan21c/article/details/24333785
[cpp] view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. #if !defined OFINDER  
  2. #define OFINDER  
  3.   
  4. #include <opencv2\core\core.hpp>  
  5. #include <opencv2\imgproc\imgproc.hpp>  
  6.   
  7. class ContentFinder {  
  8.   
  9. private:  
  10.   
  11.     float hranges[2];  
  12.     const float* ranges[3];  
  13.     int channels[3];  
  14.   
  15.     float threshold;  
  16.     cv::MatND histogram;  
  17.     cv::SparseMat shistogram;  
  18.     bool isSparse;  
  19.   
  20.   public:  
  21.   
  22.     ContentFinder() : threshold(0.1f), isSparse(false) {  
  23.   
  24.         ranges[0]= hranges; // all channels have the same range   
  25.         ranges[1]= hranges;   
  26.         ranges[2]= hranges;   
  27.     }  
  28.      
  29.     // Sets the threshold on histogram values [0,1]  
  30.     void setThreshold(float t) {  
  31.   
  32.         threshold= t;  
  33.     }  
  34.   
  35.     // Gets the threshold  
  36.     float getThreshold() {  
  37.   
  38.         return threshold;  
  39.     }  
  40.   
  41.     // Sets the reference histogram  
  42.     void setHistogram(const cv::MatND& h) {  
  43.   
  44.         isSparse= false;  
  45.         histogram= h;  
  46.         cv::normalize(histogram,histogram,1.0);  
  47.     }  
  48.   
  49.     // Sets the reference histogram  
  50.     void setHistogram(const cv::SparseMat& h) {  
  51.   
  52.         isSparse= true;  
  53.         shistogram= h;  
  54.         cv::normalize(shistogram,shistogram,1.0,cv::NORM_L2);  
  55.     }  
  56.   
  57. cv::Mat find(const cv::Mat& image) {  
  58.   
  59.         cv::Mat result;  
  60.   
  61.         hranges[0]= 0.0;    // range [0,255]  
  62.         hranges[1]= 255.0;  
  63.         channels[0]= 0;     // the three channels   
  64.         channels[1]= 1;   
  65.         channels[2]= 2;   
  66.   
  67.         if (isSparse) { // call the right function based on histogram type  
  68.   
  69.            cv::calcBackProject(&image,  
  70.                       1,            // one image  
  71.                       channels,     // vector specifying what histogram dimensions belong to what image channels  
  72.                       shistogram,   // the histogram we are using  
  73.                       result,       // the resulting back projection image  
  74.                       ranges,       // the range of values, for each dimension  
  75.                       255.0         // the scaling factor is chosen such that a histogram value of 1 maps to 255  
  76.            );  
  77.   
  78.         } else {  
  79.   
  80.            cv::calcBackProject(&image,  
  81.                       1,            // one image  
  82.                       channels,     // vector specifying what histogram dimensions belong to what image channels  
  83.                       histogram,    // the histogram we are using  
  84.                       result,       // the resulting back projection image  
  85.                       ranges,       // the range of values, for each dimension  
  86.                       255.0         // the scaling factor is chosen such that a histogram value of 1 maps to 255  
  87.            );  
  88.         }  
  89.   
  90.   
  91.         // Threshold back projection to obtain a binary image  
  92.         if (threshold>0.0)  
  93.             cv::threshold(result, result, 255*threshold, 255, cv::THRESH_BINARY);  
  94.   
  95.         return result;  
  96.     }  
  97.   
  98. cv::Mat find(const cv::Mat& image, float minValue, float maxValue, int *channels, int dim) {  
  99.   
  100.         cv::Mat result;  
  101.   
  102.         hranges[0]= minValue;  
  103.         hranges[1]= maxValue;  
  104.   
  105.         for (int i=0; i<dim; i++)  
  106.             this->channels[i]= channels[i];  
  107.   
  108.         if (isSparse) { // call the right function based on histogram type  
  109.   
  110.            cv::calcBackProject(&image,  
  111.                       1,            // we only use one image at a time  
  112.                       channels,     // vector specifying what histogram dimensions belong to what image channels  
  113.                       shistogram,   // the histogram we are using  
  114.                       result,       // the resulting back projection image  
  115.                       ranges,       // the range of values, for each dimension  
  116.                       255.0         // the scaling factor is chosen such that a histogram value of 1 maps to 255  
  117.            );  
  118.   
  119.         } else {  
  120.   
  121.            cv::calcBackProject(&image,  
  122.                       1,            // we only use one image at a time  
  123.                       channels,     // vector specifying what histogram dimensions belong to what image channels  
  124.                       histogram,    // the histogram we are using  
  125.                       result,       // the resulting back projection image  
  126.                       ranges,       // the range of values, for each dimension  
  127.                       255.0         // the scaling factor is chosen such that a histogram value of 1 maps to 255  
  128.            );  
  129.         }  
  130.   
  131.         // Threshold back projection to obtain a binary image  
  132.         if (threshold>0.0)  
  133.             cv::threshold(result, result, 255*threshold, 255, cv::THRESH_BINARY);  
  134.   
  135.         return result;  
  136.     }  
  137.   
  138. };  
  139.   
  140.   
  141. #endif  
  142.   
  143. #if !defined COLHISTOGRAM  
  144. #define COLHISTOGRAM  
  145.   
  146. #include <opencv2\core\core.hpp>  
  147. #include <opencv2\imgproc\imgproc.hpp>  
  148. #include<opencv2/highgui/highgui.hpp>  
  149. class ColorHistogram {  
  150.   
  151.   private:  
  152.   
  153.     int histSize[3];  
  154.     float hranges[2];  
  155.     const float* ranges[3];  
  156.     int channels[3];  
  157.   
  158.   public:  
  159.   
  160.     ColorHistogram() {  
  161.   
  162.         // Prepare arguments for a color histogram  
  163.         histSize[0]= histSize[1]= histSize[2]= 256;  
  164.         hranges[0]= 0.0;    // BRG range  
  165.         hranges[1]= 255.0;  
  166.         ranges[0]= hranges; // all channels have the same range   
  167.         ranges[1]= hranges;   
  168.         ranges[2]= hranges;   
  169.         channels[0]= 0;     // the three channels   
  170.         channels[1]= 1;   
  171.         channels[2]= 2;   
  172.     }  
  173.   
  174.     // Computes the histogram.  
  175.     cv::MatND getHistogram(const cv::Mat &image) {  
  176.   
  177.         cv::MatND hist;  
  178.   
  179.         // BGR color histogram  
  180.         hranges[0]= 0.0;    // BRG range  
  181.         hranges[1]= 255.0;  
  182.         channels[0]= 0;     // the three channels   
  183.         channels[1]= 1;   
  184.         channels[2]= 2;   
  185.   
  186.         // Compute histogram  
  187.         cv::calcHist(&image,   
  188.             1,          // histogram of 1 image only  
  189.             channels,   // the channel used  
  190.             cv::Mat(),  // no mask is used  
  191.             hist,       // the resulting histogram  
  192.             3,          // it is a 3D histogram  
  193.             histSize,   // number of bins  
  194.             ranges      // pixel value range  
  195.         );  
  196.   
  197.         return hist;  
  198.     }  
  199.   
  200.     // Computes the 1D Hue histogram with a mask.  
  201.     // BGR source image is converted to HSV  
  202.     cv::MatND getHueHistogram(const cv::Mat &image) {  
  203.   
  204.         cv::MatND hist;  
  205.   
  206.         // Convert to Lab color space  
  207.         cv::Mat hue;  
  208.         cv::cvtColor(image, hue, CV_BGR2HSV);  
  209.   
  210.         // Prepare arguments for a 1D hue histogram  
  211.         hranges[0]= 0.0;  
  212.         hranges[1]= 180.0;  
  213.         channels[0]= 0; // the hue channel   
  214.   
  215.         // Compute histogram  
  216.         cv::calcHist(&hue,   
  217.             1,          // histogram of 1 image only  
  218.             channels,   // the channel used  
  219.             cv::Mat(),  // no mask is used  
  220.             hist,       // the resulting histogram  
  221.             1,          // it is a 1D histogram  
  222.             histSize,   // number of bins  
  223.             ranges      // pixel value range  
  224.         );  
  225.   
  226.         return hist;  
  227.     }  
  228.   
  229.       
  230. cv::MatND getHueHistogram(const cv::Mat &image,int minSaturation)  
  231.     {  
  232.         cv::MatND hist;  
  233.         cv::Mat hsv;  
  234.         cv::cvtColor(image,hsv,CV_BGR2HSV);  
  235.         cv::Mat mask;  
  236.         if(minSaturation>0)  
  237.         {  
  238.             std::vector<cv::Mat>v;  
  239.             cv::split(hsv,v);  
  240.             cv::threshold(v[1],mask,minSaturation,255,cv::THRESH_BINARY);  
  241.         }  
  242.         hranges[0]=0.0;  
  243.         hranges[1]=180.0;  
  244.         channels[0]=0;  
  245.         calcHist(&hsv,1,channels,mask,hist,1,histSize,ranges);  
  246.         return hist;  
  247.     }  
  248.   
  249. };  
  250.   
  251.   
  252. #endif  
  253.   
  254. #include<opencv2/core/core.hpp>  
  255. #include<opencv2/highgui/highgui.hpp>  
  256. #include<opencv2/imgproc/imgproc.hpp>  
  257. #include<opencv2/video/video.hpp>  
  258. #include<iostream>  
  259. #include"colorhistogram.h"  
  260. #include"ContentFinder.h"  
  261.   
  262. using namespace std;  
  263. using namespace cv;  
  264.    
  265.   
  266. int main()  
  267. {  
  268.     Mat image=imread("d:/test/opencv/baboon1.jpg");  
  269.     Mat imageROI=image(Rect(110,260,35,40));  
  270.     int minSat=65;  
  271.     ColorHistogram hc;  
  272.     MatND colorhist=hc.getHueHistogram(imageROI,minSat);  
  273.   
  274.     namedWindow("image 1");  
  275.     imshow("image 1",image);  
  276.   
  277.     ContentFinder finder;  
  278.     finder.setHistogram(colorhist);  
  279.     Mat hsv;  
  280.     image=imread("d:/test/opencv/baboon3.jpg");  
  281.     namedWindow("image 2");  
  282.     imshow("image 2",image);  
  283.     cvtColor(image,hsv,CV_BGR2HSV);  
  284.     vector<Mat>v;  
  285.     split(hsv,v);  
  286.     threshold(v[1],v[1],minSat,255,THRESH_BINARY);  
  287.     cv::namedWindow("Saturation");  
  288.     cv::imshow("Saturation",v[1]);  
  289.     int channel[1]={0};  
  290.     Mat result=finder.find(hsv,0.0f,180.0f,channel,1);  
  291.   
  292.   
  293.     cv::namedWindow("Result Hue");  
  294.     cv::imshow("Result Hue",result);  
  295.   
  296.     cv::bitwise_and(result,v[1],result);  
  297.     cv::namedWindow("Result Hue and");  
  298.     cv::imshow("Result Hue and",result);  
  299.   
  300.   
  301.     finder.setThreshold(-1.0f);//  
  302.     result= finder.find(hsv,0.0f,180.0f,channel,1);  
  303.     cv::bitwise_and(result,v[1],result);  
  304.     cv::namedWindow("Result Hue and raw");  
  305.     cv::imshow("Result Hue and raw",result);  
  306.   
  307.     cv::Rect rect(110,260,35,40);  
  308.     cv::rectangle(image, rect, cv::Scalar(0,0,255));  
  309.   
  310.     cv::TermCriteria criteria(cv::TermCriteria::MAX_ITER,10,0.01);  
  311.     cout << "meanshift= " << cv::meanShift(result,rect,criteria) << endl;//  
  312.   
  313.     cv::rectangle(image, rect, cv::Scalar(0,255,0));//  
  314.   
  315.     // Display image  
  316.     cv::namedWindow("Image 2 result");  
  317.     cv::imshow("Image 2 result",image);  
  318.   
  319.     cv::waitKey();  
  320.     return 0;  
  321.   
  322. }  
#if !defined OFINDER
#define OFINDER#include <opencv2\core\core.hpp>
#include <opencv2\imgproc\imgproc.hpp>class ContentFinder {private:float hranges[2];const float* ranges[3];int channels[3];float threshold;cv::MatND histogram;cv::SparseMat shistogram;bool isSparse;public:ContentFinder() : threshold(0.1f), isSparse(false) {ranges[0]= hranges; // all channels have the same range ranges[1]= hranges; ranges[2]= hranges; }// Sets the threshold on histogram values [0,1]void setThreshold(float t) {threshold= t;}// Gets the thresholdfloat getThreshold() {return threshold;}// Sets the reference histogramvoid setHistogram(const cv::MatND& h) {isSparse= false;histogram= h;cv::normalize(histogram,histogram,1.0);}// Sets the reference histogramvoid setHistogram(const cv::SparseMat& h) {isSparse= true;shistogram= h;cv::normalize(shistogram,shistogram,1.0,cv::NORM_L2);}cv::Mat find(const cv::Mat& image) {cv::Mat result;hranges[0]= 0.0;	// range [0,255]hranges[1]= 255.0;channels[0]= 0;		// the three channels channels[1]= 1; channels[2]= 2; if (isSparse) { // call the right function based on histogram typecv::calcBackProject(&image,1,            // one imagechannels,     // vector specifying what histogram dimensions belong to what image channelsshistogram,   // the histogram we are usingresult,       // the resulting back projection imageranges,       // the range of values, for each dimension255.0         // the scaling factor is chosen such that a histogram value of 1 maps to 255);} else {cv::calcBackProject(&image,1,            // one imagechannels,     // vector specifying what histogram dimensions belong to what image channelshistogram,    // the histogram we are usingresult,       // the resulting back projection imageranges,       // the range of values, for each dimension255.0         // the scaling factor is chosen such that a histogram value of 1 maps to 255);}// Threshold back projection to obtain a binary imageif (threshold>0.0)cv::threshold(result, result, 255*threshold, 255, cv::THRESH_BINARY);return result;}cv::Mat find(const cv::Mat& image, float minValue, float maxValue, int *channels, int dim) {cv::Mat result;hranges[0]= minValue;hranges[1]= maxValue;for (int i=0; i<dim; i++)this->channels[i]= channels[i];if (isSparse) { // call the right function based on histogram typecv::calcBackProject(&image,1,            // we only use one image at a timechannels,     // vector specifying what histogram dimensions belong to what image channelsshistogram,   // the histogram we are usingresult,       // the resulting back projection imageranges,       // the range of values, for each dimension255.0         // the scaling factor is chosen such that a histogram value of 1 maps to 255);} else {cv::calcBackProject(&image,1,            // we only use one image at a timechannels,     // vector specifying what histogram dimensions belong to what image channelshistogram,    // the histogram we are usingresult,       // the resulting back projection imageranges,       // the range of values, for each dimension255.0         // the scaling factor is chosen such that a histogram value of 1 maps to 255);}// Threshold back projection to obtain a binary imageif (threshold>0.0)cv::threshold(result, result, 255*threshold, 255, cv::THRESH_BINARY);return result;}};#endif#if !defined COLHISTOGRAM
#define COLHISTOGRAM#include <opencv2\core\core.hpp>
#include <opencv2\imgproc\imgproc.hpp>
#include<opencv2/highgui/highgui.hpp>
class ColorHistogram {private:int histSize[3];float hranges[2];const float* ranges[3];int channels[3];public:ColorHistogram() {// Prepare arguments for a color histogramhistSize[0]= histSize[1]= histSize[2]= 256;hranges[0]= 0.0;    // BRG rangehranges[1]= 255.0;ranges[0]= hranges; // all channels have the same range ranges[1]= hranges; ranges[2]= hranges; channels[0]= 0;		// the three channels channels[1]= 1; channels[2]= 2; }// Computes the histogram.cv::MatND getHistogram(const cv::Mat &image) {cv::MatND hist;// BGR color histogramhranges[0]= 0.0;    // BRG rangehranges[1]= 255.0;channels[0]= 0;		// the three channels channels[1]= 1; channels[2]= 2; // Compute histogramcv::calcHist(&image, 1,			// histogram of 1 image onlychannels,	// the channel usedcv::Mat(),	// no mask is usedhist,		// the resulting histogram3,			// it is a 3D histogramhistSize,	// number of binsranges		// pixel value range);return hist;}// Computes the 1D Hue histogram with a mask.// BGR source image is converted to HSVcv::MatND getHueHistogram(const cv::Mat &image) {cv::MatND hist;// Convert to Lab color spacecv::Mat hue;cv::cvtColor(image, hue, CV_BGR2HSV);// Prepare arguments for a 1D hue histogramhranges[0]= 0.0;hranges[1]= 180.0;channels[0]= 0; // the hue channel // Compute histogramcv::calcHist(&hue, 1,			// histogram of 1 image onlychannels,	// the channel usedcv::Mat(),	// no mask is usedhist,		// the resulting histogram1,			// it is a 1D histogramhistSize,	// number of binsranges		// pixel value range);return hist;}cv::MatND getHueHistogram(const cv::Mat &image,int minSaturation){cv::MatND hist;cv::Mat hsv;cv::cvtColor(image,hsv,CV_BGR2HSV);cv::Mat mask;if(minSaturation>0){std::vector<cv::Mat>v;cv::split(hsv,v);cv::threshold(v[1],mask,minSaturation,255,cv::THRESH_BINARY);}hranges[0]=0.0;hranges[1]=180.0;channels[0]=0;calcHist(&hsv,1,channels,mask,hist,1,histSize,ranges);return hist;}};#endif#include<opencv2/core/core.hpp>
#include<opencv2/highgui/highgui.hpp>
#include<opencv2/imgproc/imgproc.hpp>
#include<opencv2/video/video.hpp>
#include<iostream>
#include"colorhistogram.h"
#include"ContentFinder.h"using namespace std;
using namespace cv;int main()
{Mat image=imread("d:/test/opencv/baboon1.jpg");Mat imageROI=image(Rect(110,260,35,40));int minSat=65;ColorHistogram hc;MatND colorhist=hc.getHueHistogram(imageROI,minSat);namedWindow("image 1");imshow("image 1",image);ContentFinder finder;finder.setHistogram(colorhist);Mat hsv;image=imread("d:/test/opencv/baboon3.jpg");namedWindow("image 2");imshow("image 2",image);cvtColor(image,hsv,CV_BGR2HSV);vector<Mat>v;split(hsv,v);threshold(v[1],v[1],minSat,255,THRESH_BINARY);cv::namedWindow("Saturation");cv::imshow("Saturation",v[1]);int channel[1]={0};Mat result=finder.find(hsv,0.0f,180.0f,channel,1);cv::namedWindow("Result Hue");cv::imshow("Result Hue",result);cv::bitwise_and(result,v[1],result);cv::namedWindow("Result Hue and");cv::imshow("Result Hue and",result);finder.setThreshold(-1.0f);//result= finder.find(hsv,0.0f,180.0f,channel,1);cv::bitwise_and(result,v[1],result);cv::namedWindow("Result Hue and raw");cv::imshow("Result Hue and raw",result);cv::Rect rect(110,260,35,40);cv::rectangle(image, rect, cv::Scalar(0,0,255));cv::TermCriteria criteria(cv::TermCriteria::MAX_ITER,10,0.01);cout << "meanshift= " << cv::meanShift(result,rect,criteria) << endl;//cv::rectangle(image, rect, cv::Scalar(0,255,0));//// Display imagecv::namedWindow("Image 2 result");cv::imshow("Image 2 result",image);cv::waitKey();return 0;}


 

这篇关于使用均值漂移算法查找物体,源代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/729420

相关文章

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

康拓展开(hash算法中会用到)

康拓展开是一个全排列到一个自然数的双射(也就是某个全排列与某个自然数一一对应) 公式: X=a[n]*(n-1)!+a[n-1]*(n-2)!+...+a[i]*(i-1)!+...+a[1]*0! 其中,a[i]为整数,并且0<=a[i]<i,1<=i<=n。(a[i]在不同应用中的含义不同); 典型应用: 计算当前排列在所有由小到大全排列中的顺序,也就是说求当前排列是第

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

综合安防管理平台LntonAIServer视频监控汇聚抖动检测算法优势

LntonAIServer视频质量诊断功能中的抖动检测是一个专门针对视频稳定性进行分析的功能。抖动通常是指视频帧之间的不必要运动,这种运动可能是由于摄像机的移动、传输中的错误或编解码问题导致的。抖动检测对于确保视频内容的平滑性和观看体验至关重要。 优势 1. 提高图像质量 - 清晰度提升:减少抖动,提高图像的清晰度和细节表现力,使得监控画面更加真实可信。 - 细节增强:在低光条件下,抖

【数据结构】——原来排序算法搞懂这些就行,轻松拿捏

前言:快速排序的实现最重要的是找基准值,下面让我们来了解如何实现找基准值 基准值的注释:在快排的过程中,每一次我们要取一个元素作为枢纽值,以这个数字来将序列划分为两部分。 在此我们采用三数取中法,也就是取左端、中间、右端三个数,然后进行排序,将中间数作为枢纽值。 快速排序实现主框架: //快速排序 void QuickSort(int* arr, int left, int rig