-
camshift 目标跟踪检测
本人发表的一篇中文核心的程序代码。是camshift目标跟踪检测的C++代码。里面还借助了部分OpenCV视觉库中的函数。程序是完整可用的,只要自己加载进一段运动视频即可。
- 2022-02-03 14:39:37下载
- 积分:1
-
蚁群聚类的图像分割
蚂蚁 clony 聚类算法在图像分割、 Lumer 和 feita 都有实现这种算法对数据聚类
- 2022-07-15 18:54:54下载
- 积分:1
-
自己写的YUV420直接压缩转换成JPEG图像的源代码.
本代码全部由本人编写并测试通过,保证可以。
本代码用于将YUV420格式直接压缩成JPEG文件格式。
内部经过优化,速度很快,代码结构精简,可读性强。
源代码有比较多的文字解释,帮助理解。
- 2022-01-23 11:21:56下载
- 积分:1
-
相位解包裹算法
关于全息图的相位解包裹,对于图像的解相位和包裹有很大的帮组.这个基于C++的代码,希望有关这个方面的研究者有用处!!!谢谢大家的支持
- 2022-09-01 06:35:03下载
- 积分:1
-
边缘检测与 labview 使用视觉采集
在图像处理中,即边缘检测为实时图像做处理,。可以使用 USB 摄像头或摄像头的笔记本电脑。
- 2022-02-02 23:40:46下载
- 积分:1
-
双边滤波Mtalab实现
可以实现双边滤波的一个Matlab程序,自带显示进度功能,处理600*600的图像大约在16秒。
- 2023-03-07 02:35:03下载
- 积分:1
-
图像处理
提供了图象直方图均衡,robert,sobel,prewitt,kirsch,gauss等方法的边缘检测运算,中值滤波,二维FFT变换和DCT变换,图象的反转,旋转等一些基本的图象模板变换和点变换的功能。目前只处理256*256的图象
- 2022-02-16 01:18:57下载
- 积分:1
-
基于卡尔曼滤波器的运动物体追踪
clear,clc,close all;
% compute the background image
Imzero = zeros(240,360,3);
video=aviread("SampleVideo.avi");
Im = double(cat(4,video(1:2:end).cdata))/255;
clear video
% Convert to RGB to GRAY SCALE image.
nFrames = size(Im,4);
Imzero = Im(:,:,:,1);
for i = 2:5
Imzero = Im(:,:,:,i)+Imzero;
end
Imback = Imzero
- 2023-07-26 08:50:04下载
- 积分:1
-
SVM 分类器 很好用的 可以用在图像处理中
SVM 分类器 很好用的 可以用在图像处理中 使用的是c++ 基于opencv的
- 2022-03-02 17:57:20下载
- 积分:1
-
泊松表面重建
Poisson surface reconstruction creates watertight surfaces from oriented point sets. In this work we extend the technique to explicitly incorporate
the points as interpolation constraints. The extension can be interpreted as a generalization of the underlying mathematical framework to a screened
Poisson equation. In contrast to other image and geometry processing techniques, the screening term is defined over a sparse set of points rather
than over the full domain. We show that these sparse constraints can nonetheless be integrated efficiently. Because the modified linear system
reta
- 2023-03-13 16:05:03下载
- 积分:1