-
jpegdecode
实现JPEG解码接量化的程序代码。便于初学者使用(Realizing the JPEG decoding by program code. For beginners to use)
- 2014-06-04 06:34:05下载
- 积分:1
-
xwbz
相位编组提取长直线的强弱文理,用于灰度图像明显的图像的处理(Marshalling phase extraction strength ARTS long straight, clear images for grayscale image processing)
- 2020-11-20 11:59:36下载
- 积分:1
-
NCSR_for-SR
这是文章Nonlocally Centralized Sparse Representation for SR的代码(this is the code of Nonlocally Centralized Sparse Representation for SR)
- 2020-11-24 11:19:32下载
- 积分:1
-
plytools
说明: 将ply格式的3D物体文件导入Matlab中,并且可以把Matlab中的Patch object导出成ply格式。(Ply format to 3D objects in the file into Matlab, and Matlab can be derived in the Patch object into a format ply.)
- 2009-08-04 13:33:14下载
- 积分: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
-
WirelessSensorNetSimulationP
测距的相关内容以及采用三角测量的方法测量出来(Ranging content and the use of the triangulation method is measured)
- 2013-03-21 19:47:50下载
- 积分:1
-
SIFT-PCA
这是我花了很多时间收集的有关sift-pca资料哦,里面也包括了sift-pca的MATLAB代码(This is what I spent a lot of time to collect information about the sift-pca Oh, which also includes a sift-pca MATLAB code)
- 2013-05-27 16:47:23下载
- 积分:1
-
snake_demo_matlab
snake模型寻找图像边界,以及改进的GVF算法(snake model for image border, and to improve the algorithm GVF)
- 2007-04-23 21:11:16下载
- 积分:1
-
hog
能够提取出图像I的HOG特征,返回其幅值,角度和在各个角度上的幅值。
是进行其他针对图像的HOG特征提取的前一步。(I can extract images of HOG features, return to their amplitude, angle and perspective in all of the amplitude. Is the other for image feature extraction HOG step forward.)
- 2008-04-29 09:41:09下载
- 积分:1
-
tuxiangchuli
钢板表面质量检测中,图片是否有拉伸的监测和分析程序(Steel plate surface quality detection, image whether the stretching of the monitoring and analysis program
)
- 2012-06-30 09:22:31下载
- 积分:1