-
Models_based_on_digital_image_processing_test
基于数字图像处理的车型检测,介绍检测车型的方法(Models based on digital image processing detection, vehicle detection method introduced)
- 2010-05-31 19:55:41下载
- 积分:1
-
激光三维点云的处理源码 lastools
激光三维点云的处理源码,可以压缩点云,配准点云(Three-dimensional laser point cloud processing source code, can be compressed point cloud, point cloud registration)
- 2013-09-09 21:13:07下载
- 积分:1
-
R-LandS-L
CT反投影重建的R-L滤波函数与S-L函数,应用对象为matlab自带shepp-logan模型图像(R-L function and S-L function applying to CT backproject reconstruction)
- 2020-07-10 15:38:57下载
- 积分:1
-
matlab_watermark
2012实习,新鲜的matlab实现水印的嵌入和提取,包括盲水印提取代码(watermark embedding and extraction, including the blind watermark extraction code)
- 2020-12-05 10:09:27下载
- 积分: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
-
NGC_ACM
图割(GC)和主动轮廓模型(ACM)相结合的一种图像分割方法,既可以进行局部图像的分割,也可进行全局图像的分割,简单实用。(A combination of graph cuts (GC) and the active contour model (ACM) image segmentation method, either local image segmentation, global image segmentation, simple and practical.)
- 2012-10-23 11:23:25下载
- 积分:1
-
BIAODING
RAC法标定程序,适用于单目摄像机的线结构光的标定(The RAC calibration method procedure applies to line structured light calibration)
- 2012-10-11 21:38:13下载
- 积分:1
-
falseRemoval
该基于区域生长法的程序主要用于虚警目标的去除,也可用于对二值图像各块区域面积的计算。(The region growing method based on the procedures used to target the removal of false alarms can also be used for binary image of the block area calculations.)
- 2008-04-10 20:43:42下载
- 积分:1
-
metrix
几种全参考图像质量评价标准,例如VIF、IFC、VSNR、PSNR、MSE等。(Several full reference image quality assessment standard, such as 2 VIF is based, the IFC, VSNR, PSNR, MSE and so on.
)
- 2020-12-24 23:19:05下载
- 积分:1
-
GLCM-implement
实现了灰度共生矩阵,并应用到了几张图片上。 C++ 和OPENCV 代码。 图像处理(GLCM achieved and applied to a few pictures. C++ and OPENCV code. Image Processing)
- 2011-01-26 02:35:22下载
- 积分:1