-
chage
把图像处理的MATALAB程序转化为C++程序(put image processing procedures into MATLAB C Program)
- 2007-07-10 17:26:51下载
- 积分:1
-
varErrorDiff
基于改进的F-S error diffusion算法对彩色图像位数降为8色。其中分配系数采用动态系数(Based on the F-S error diffusion algorithm to improve the color image figures down to 8 colors. The distribution coefficient by using the dynamic coefficient)
- 2015-03-12 11:13:24下载
- 积分:1
-
cvx
国外著名的凸优化程序包,压缩感知理论,恢复算法(Foreign well-known convex optimization package, compressed sensing theory, and recovery algorithm)
- 2012-05-29 23:43:14下载
- 积分:1
-
graph-cut-method-to-segment-images
基于图割方法的图像分割程序代码,希望对您有帮助哦!(graph cut method to segment images, it is nessary for you to have a look if you are doing image segmentation.)
- 2012-10-28 21:43:48下载
- 积分: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
-
CamshiftTrack
说明: 物体运动的跟踪,比如行人和车辆等物体的跟踪(Tracking the motion of an object, such as a pedestrian or vehicle)
- 2020-05-29 09:34:17下载
- 积分:1
-
041156300Medical3D
RAw格式图片的显示,边缘检测,包括SOBEL算子,具有不同模板的拉普拉斯算子边缘检测,以及一些简单的滤波方式(sadfsadf asdfasdf asdf)
- 2013-11-26 10:44:44下载
- 积分:1
-
图像处理标准测试图片库 Standard-test-images
图像处理标准测试图片库,用于数字图像处理各种仿真实验。(Standard test image gallery image processing to digital image processing all kinds of simulation experiments.
)
- 2013-04-06 18:34:41下载
- 积分:1
-
阵列信号处理方面的经典程序 MATLAB
阵列信号处理方面的经典程序,包括MUSIC算法,ESPRIT 算法,Root-MUSIC算法面阵中二维角度估计 Unitary -ESPRIT算法,空间平滑MUSIC算法,传播算子DOA估计算法等等(Classical array signal processing procedures, including the MUSIC algorithm, ESPRIT algorithm, Root-MUSIC algorithm for two-dimensional planar array of point estimates Unitary-ESPRIT algorithm, spatial smoothing MUSIC algorithm, propagator DOA estimation algorithm, etc.)
- 2020-11-10 23:29:47下载
- 积分:1
-
dingwei_cooperate_ekf
两船协同导航,利用EKF滤波,主要用于主从式的协同导航,滤波参数要根据实际需要合理调节(Collaborative navigation of both vessels, the use of the EKF filter, mainly used for the master-slave collaboration navigation filter parameters according to the actual needs of a reasonable adjustment)
- 2021-03-04 12:49:32下载
- 积分:1