登录
首页 » Visual C++ » mean-shift

mean-shift

于 2014-05-06 发布 文件大小:12373KB
0 269
下载积分: 1 下载次数: 18

代码说明:

  基于meanshift/camshift的视频运动目标跟踪实现,通过鼠标手动选择跟踪目标。基于HSV空间模型,可手动调节H S V的阈值,显示前景、背景、反响投影图。开发工具是VS2008、OPENCV.(Based meanshift/camshift video moving target tracking achieved manually using the mouse to select the target track. HSV space model, you can manually adjust the threshold HSV, showing foreground, background, reaction projection. Development tools are VS2008, OPENCV)

文件列表:

mean shift
..........\Debug
..........\.....\mean shift.exe,83968,2014-03-05
..........\.....\mean shift.ilk,1892716,2014-03-05
..........\.....\mean shift.pdb,2149376,2014-03-05
..........\ipch
..........\....\mean shift-409029de
..........\....\...................\mean shift-1c4dc86b.ipch,2359296,2012-10-22
..........\mean shift
..........\..........\ClassDiagram1.cd,1,2006-11-20
..........\..........\Debug
..........\..........\.....\BuildLog.htm,9134,2014-03-05
..........\..........\.....\CL.read.1.tlog,2140,2012-10-22
..........\..........\.....\CL.write.1.tlog,1086,2012-10-22
..........\..........\.....\mean shift.exe.embed.manifest,663,2012-04-26
..........\..........\.....\mean shift.exe.embed.manifest.res,728,2012-04-26
..........\..........\.....\mean shift.exe.intermediate.manifest,621,2014-03-05
..........\..........\.....\mean shift.lastbuildstate,89,2012-10-22
..........\..........\.....\mean shift.log,1626,2012-10-22
..........\..........\.....\mean shift.obj,221626,2014-03-05
..........\..........\.....\mean shift.pch,3211264,2012-04-25
..........\..........\.....\mean shift.unsuccessfulbuild,0,2012-10-22
..........\..........\.....\mt.dep,64,2014-03-05
..........\..........\.....\stdafx.obj,11941,2012-04-25
..........\..........\.....\vc100.idb,52224,2012-10-22
..........\..........\.....\vc100.pdb,126976,2012-10-22
..........\..........\.....\vc90.idb,969728,2014-03-05
..........\..........\.....\vc90.pdb,1486848,2014-03-05
..........\..........\mean shift.cpp,11744,2014-03-05
..........\..........\mean shift.vcproj,5194,2012-05-30
..........\..........\mean shift.vcproj.kqj-THINK.kqj.user,1416,2014-03-05
..........\..........\mean shift.vcxproj,6568,2012-10-22
..........\..........\mean shift.vcxproj.filters,1342,2012-10-22
..........\..........\mean shift.vcxproj.user,143,2012-10-22
..........\..........\ReadMe.txt,1201,2013-08-26
..........\..........\stdafx.cpp,215,2012-04-25
..........\..........\stdafx.h,233,2012-04-25
..........\..........\targetver.h,498,2012-04-25
..........\mean shift.ncb,21146624,2014-03-05
..........\mean shift.sdf,29773824,2012-10-22
..........\mean shift.sln,896,2012-04-25
..........\mean shift.sln.old,896,2012-04-25
..........\meanshift 原版.txt,11723,2014-01-25
..........\UpgradeLog.XML,1976,2012-10-22
..........\_UpgradeReport_Files
..........\....................\UpgradeReport.css,3348,2012-10-22
..........\....................\UpgradeReport.xslt,12505,2010-05-04
..........\....................\UpgradeReport_Minus.gif
..........\....................\UpgradeReport_Plus.gif

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • DIC
    通过数字图像相关的方法计算两幅图像之间的位移,计算时间较长,是最基础的DIC,没有优化。(Digital image correlation method to calculate the displacement between the two images, the time is longer, is the most basic DIC, no optimization.)
    2021-03-31 10:59:09下载
    积分:1
  • HALCON_CIRCLE
    一个简单的HALCON计算圆心坐标的例子,C++代码格式,初学者适用!(A simple example of calculating coordinates HALCON, c++ code format, for beginners!)
    2021-03-23 10:19:15下载
    积分:1
  • chenggongchengxu
    rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h" #include <iostream.h> void main(float R, float G, float B, float& H, float& S, float&V) { // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h =-1 (undefined) float min, max, delta,tmp tmp = R>G?G:R min = tmp>B?B:tmp tmp = R>G?R:G max = tmp>B?tmp:B V = max // v delta = max- min if( max != 0 ) S = delta/max // s else { // r = g = b = 0 // s = 0, v is undefined S = 0 H = 0 return } if (delta == 0){ H = 0 return } else if(R == max){ if (G >= B) H = (G- B)/delta // between yellow & magenta else H = (G- B)/delta+ 6 } else if( G == max ) H = 2+ ( B- R )/delta // between cyan & yellow else if (B == ma)
    2011-12-02 10:09:24下载
    积分:1
  • 0999
    卡尔曼滤波是一种数据处理方法,它是一种线性最小方差无偏估计准则,基于系统 状态估计和当前观测,通过引入状态空间而获得的新的状态估计.本篇论文陈述了卡尔曼滤 波的基本思路和算法;并通过仿真,显示卡尔曼滤波的功能,以及如何用它来跟踪方向确定、速度恒定的飞行器。 (Kalman filter is a data processing method, which is a linear minimum variance unbiased estimation criteria, based on system state estimation and the current observations, obtained by introducing the state space of the new state estimate of the Kalman filter thesis statement the basic ideas and algorithms and through simulation, shows Kalman filtering functions, and how to use it to keep track of the direction determined constant speed aircraft.)
    2013-09-06 10:21:27下载
    积分:1
  • LineTrans
    线性变换,如图像的拉伸变换等,调试通过,简单易学(Linear transformation, such as image stretching transformation, debugging through easy to learn)
    2012-02-23 22:19:01下载
    积分:1
  • HOG+SVM进行片中行人检测
    说明:  行人检测HOG+SVM进行图片中行人检测,提供训练用的pos和neg样本,效果还可以;没有SVM工具箱的,压缩包里已经提供了,安装一下即可(Pedestrian detection HOG + SVM for pedestrian detection in pictures, providing POS and neg samples for training, the effect is good; without SVM toolbox, the compression package has been provided, just install it.)
    2020-10-30 16:09:56下载
    积分:1
  • LSB
    C++语言实现的LSB数字水印算法,Visual C++亲测可用。(C++ language LSB digital watermarking algorithm, the Visual C++ pro-measurement available.)
    2020-10-20 20:07:24下载
    积分:1
  • OpticalFlow
    使用光流法对运动目标进行估计,要使用opencv一起实现。效果还不错(Using optical flow method to estimate the moving target, to use opencv implemented together. Results were pretty good)
    2013-07-26 09:24:44下载
    积分:1
  • Saolei
    一个扫雷应用程序,在VC下开发,用来提高编程水平(A de-mining applications, developed in the VC used to improve the programming level)
    2007-11-23 11:11:51下载
    积分:1
  • Sharp
    数字图像处理,对彩色图像的拉普拉斯算子锐化以及梯度算子锐化的比较,VC/MFC实现。(Digital image processing, color image of the Laplacian and the gradient operator sharpening sharpening comparison, VC/MFC implementation.)
    2010-11-03 20:01:33下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载