-
xiangsidu
说明: 遥感图像的多光谱目标识别,相似度方法实现分类(The multi-spectral remote sensing image object recognition, similarity classification method)
- 2009-08-02 11:16:59下载
- 积分:1
-
MATLAB_
说明: 能够实现对生物芯片的识别和图像处理,识别有效芯片区域,读取阴性和阳性点分布和数量。(It can realize the recognition and image processing of biochip, identify the effective chip area, read the distribution and number of negative and positive points.)
- 2020-07-17 21:08: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
-
HU不变矩
Hu不变矩的的一至七个矩的代码以及论文。matalb版本,可直接用。(Matlab Code of Hu Moment Invariant)
- 2019-04-26 21:15:35下载
- 积分:1
-
voc-release3.1
DPM作者获得 2010年CVPR终生成就奖,DPM是在HOG的基础上进行改进,解决了HOG算子的不足,并且对SVM也进行了小幅度改善提出了LSVM这个概念(DPM is improved on the basis of HOG. It solves the shortcomings of HOG operator, and makes a small improvement on SVM. The concept of LSVM is proposed)
- 2017-07-20 10:06:52下载
- 积分:1
-
类似QQ聊天工具源码
用图片素材自制的漂亮皮肤,编写的类似QQ的聊天工具。完成了QQ的及时聊天的功能。数据库文件在DB_51aspx文件夹下用高于sqlserver2000版本的数据库管理器附加即可。程序用vs2005或较高的版本调试。调试代码前修改DbHelpClass.cs中的string Str = "server=.\服务器;uid=sa;pwd=密码;database=MyQQ";数据库的名称不用改变附加数据库文件后名称自动附加为MyQQ。修改app.config配置文件中数据库链接字符串。
- 2014-11-09下载
- 积分:1
-
几何变换
数字图像处理中的几何变换,包括图像的平移,图像的镜像,图像转置,图像的缩放,图像的旋转以及三种插值算法(The geometric transformation in digital image processing includes image translation, image mirroring, image transposition, image scaling, image rotation, and three interpolation algorithms)
- 2017-11-03 16:33:11下载
- 积分:1
-
C-Vsegmentation-
对于图像图形处理,基于先验形状、窄带法的CV模型的分割方法,有举例说明,效果明显。(For image and graphics processing, segmentation method based on a priori shape, Narrow Band CV model, there are illustrated, the effect is obvious.)
- 2016-05-31 10:36:20下载
- 积分:1
-
BM3D
本人收集的BM3D资料,包括文献,代码,实验效果图,希望对大家有用(I collected BM3D information, including documentation, code, experimental results map, want to be useful)
- 2011-08-23 11:37:49下载
- 积分:1
-
ADMM-MATLAB
说明: 基于ADMM的TV正则化最小化稀疏重建算法(TV Minimization Sparse Reconstruction Algorithms Based on ADMM)
- 2020-11-09 19:39:47下载
- 积分:1