CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - camshift image
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - camshift image - List
[
Special Effects
]
camshift
DL : 0
The source is to find the detecting object center in anti-projection image.particularly,it can detct colorful object.
Update
: 2008-10-13
Size
: 4.97kb
Publisher
:
黄春瑞
[
GDI-Bitmap
]
LKDemo
DL : 0
图像点跟踪的程序,需要安装opencv! 大家试一试,效果还不错!-image tracking procedures, the need to install OpenCV! We try, the results were pretty good!
Update
: 2025-02-17
Size
: 28kb
Publisher
:
绍明
[
Special Effects
]
CAMSHIFT_MFC
DL : 0
在MFC下写的camshift图像跟踪程序-MFC wrote in the image tracking procedures camshift
Update
: 2025-02-17
Size
: 30kb
Publisher
:
追逐光年
[
Graph Recognize
]
CAMSHIFTTracker
DL : 0
Color-based tracking (CAMSHIFT) demo. Alexandre R.J. Francois Copyright (C) 2004 University of Southern California 介绍:CamShift是一种应用颜色信息的跟踪算法,在跟踪过程中,CamShift利用目标的颜色直方图模型得到每帧图像的颜色投影图,并根据上一帧跟踪的结果自适应调整搜索窗口的位置和大小,从而得到当前图像中目标的尺寸和中心位置.在该代码的框架基础上可以开发视屏游戏。-Color-based tracking (CAMSHIFT) demo. Alexandre RJ FrancoisCopyright (C) 2004 University of Southern California, introduced: CamShift is an application of color information of the tracking algorithm in the tracking process, CamShift use of the target color histogram model of each frame image color projection, and a track based on the results of adaptive search window location and size, resulting in the current target image size and central location. In the framework of the code can be developed based on the game screen.
Update
: 2025-02-17
Size
: 64kb
Publisher
:
Andy
[
Special Effects
]
camshiftdemo
DL : 0
跟踪摄像机中的物体,opencv源代码,点击图像中的物体后会跟踪目标,并在目标上标记-Tracking objects in video camera, opencv source code, click on the image objects will be tracking the target, and target marking
Update
: 2025-02-17
Size
: 2kb
Publisher
:
陈皓
[
Special Effects
]
3
DL : 0
Camshift算法VC++实现 利用OpenCV库写的,vc++图像处理原程序-_图像 处理-Camshift algorithm VC++ Realize using OpenCV library written, vc++ Images deal with the original program-_ Image Processing
Update
: 2025-02-17
Size
: 4.29mb
Publisher
:
桂祖恒
[
Graph Recognize
]
camshift
DL : 0
camshift算法的基础应用,可以实现图像的跟踪,但是色差和轮廓线问题无法解决,如果有相关更好的算法,请联系我-camshift algorithm based on the application of image tracking can be achieved, but the question of color and contour lines can not be resolved, if there is associated a better algorithm, please contact me
Update
: 2025-02-17
Size
: 3kb
Publisher
:
李潇潇
[
Special Effects
]
camshift
DL : 0
The source is to find the detecting object center in anti-projection image.particularly,it can detct colorful object.
Update
: 2025-02-17
Size
: 5kb
Publisher
:
黄春瑞
[
Video Capture
]
CamShift
DL : 0
基于OpenCV的视频目标跟踪源码。输入的可以是视频文件或摄像头采集。-OpenCV canny a subject.
Update
: 2025-02-17
Size
: 5kb
Publisher
:
CoolFighter
[
Special Effects
]
yundong
DL : 0
采用 CAMSHIFT 算法快速跟踪和检测运动目标的 C/C++ 源代码,OPENCV BETA 4.0 版本在其 SAMPLE 中给出了这个例子。算法的简单描述如下-This application demonstrates a fast, simple color tracking algorithm that can be used to track faces, hands . The CAMSHIFT algorithm is a modification of the Meanshift algorithm which is a robust statistical method of finding the mode (top) of a probability distribution. Both CAMSHIFT and Meanshift algorithms exist in the library. While it is a very fast and simple method of tracking, because CAMSHIFT tracks the center and size of the probability distribution of an object, it is only as good as the probability distribution that you produce for the object. Typically the probability distribution is derived from color via a histogram, although it could be produced from correlation, recognition scores or bolstered by frame differencing or motion detection schemes, or joint probabilities of different colors/motions etc. In this application, we use only the most simplistic approach: A 1-D Hue histogram is sampled from the object in an HSV color space version of the image. To produce the
Update
: 2025-02-17
Size
: 15kb
Publisher
:
黄文伟
[
Graph program
]
MyVideo1.0_AutoCamshift
DL : 0
程序用MFC+openCV编写。可实现自动获得一个目标选择框并进行跟踪 先用视频前几帧进行帧间差分,用cvFindContours()得到二值差分图像中最大的连通块作为camshift的初始选择框 程序做的不完善,只能针对类似test.avi的视频进行测试。(读一下函数GetBlob()你就能明白为什么了) 可能有些压缩格式的视频打不开,需要安装Xvid解码器-Program using MFC+ openCV prepared. Can be realized automatically obtain an objective selection box and make camshift track
Update
: 2025-02-17
Size
: 555kb
Publisher
:
王呈鹏
[
GDI-Bitmap
]
camshift
DL : 0
此程序演示了通过USB从图像处理卡采集图像,并对采集到的视频图像进行camshift的跟踪的功能。涉及多个开发领域,综合性强,具有很好的参考价值。-This program demonstrates the card through the USB capture images from the image processing, and video images collected camshift tracking function. Involves a number of development areas, comprehensive, and has a very good reference value.
Update
: 2025-02-17
Size
: 74kb
Publisher
:
yangkun
[
Special Effects
]
14-camshift
DL : 0
图像跟踪的源代码,程序采用了opencv中的代码camshift算法-Source of camshift Image Tracking
Update
: 2025-02-17
Size
: 18.18mb
Publisher
:
Daniel
[
Special Effects
]
camshiftdemo
DL : 0
Gary R.Bradski提出CamShift算法,即"Continuously Adaptive Mean-Shift"算法。是以颜色直方图为目标模式的目标跟踪算法,可以有效地解决目标变形和部分遮挡的问题,而且运算效率很高。在视频跟踪过程中,CAMSHIFT算法利用选定目标的颜色直方图模型得到每帧图像的颜色投影图,并根据上一帧跟踪的结果自适应调整搜索窗口的位置和大小,得到当前帧中目标的尺寸和质心位置。-Gary R. Bradski CamShift proposed algorithm, that is, " Continuously Adaptive Mean-Shift" algorithm. Color histogram for the target model is based on target tracking algorithms that can effectively solve the target deformation and partial occlusion of the problem, and efficient operation. In the video tracking process, CAMSHIFT algorithm uses color histogram model of the selected target by the color of each frame image projection, and according to the results on an adaptive tracking the location and size of the search window to get the target in the current frame size and centroid location.
Update
: 2025-02-17
Size
: 3kb
Publisher
:
kitty
[
Video Capture
]
facedetect
DL : 0
用摄像头采集人脸图像并进行识别,是基于opencv实现的。-This code is used to capture the video of a person s face and detect it by comparing the image detected with those already stored in the files.
Update
: 2025-02-17
Size
: 1006kb
Publisher
:
renyuzhuo
[
Special Effects
]
motion4
DL : 0
基于CamShift的目标跟踪算法,先求图像的HSV分量,提取H分量,做灰度直方图,对灰度直方图进行投影,最后均值移动进行跟踪。-Target tracking algorithm based on CamShift, first find the image of the HSV components to extract H component, do histogram of the projection histogram, the last mean shift tracking.
Update
: 2025-02-17
Size
: 138kb
Publisher
:
廖家亮
[
Special Effects
]
camshfit-image-processing
DL : 0
图像处理,介绍了hsv和rgb空间,以及如何实现camshift算法-image processing,introduce hsv and rgb,and how to realize camshift
Update
: 2025-02-17
Size
: 887kb
Publisher
:
汪迁
[
Special Effects
]
image-procc-camshift
DL : 0
image procc camshift-dr hadad-very good for learning
Update
: 2025-02-17
Size
: 1.31mb
Publisher
:
sheida
[
OpenCV
]
camshift
DL : 0
摄像头图像跟踪。利用的是camshift算法,基于opencv。-Image tracking using camera,based on camshift algorithm and opencv.
Update
: 2025-02-17
Size
: 3kb
Publisher
:
TimoWang
[
matlab
]
camshift
DL : 0
图像跟踪中的camshift算法,注释详细,可以用来做学习研究-Camshift image tracking algorithm, detailed notes, can be used for study and research
Update
: 2025-02-17
Size
: 2kb
Publisher
:
王忠凯
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.