-
text1
对数字图像的处理、灰度化等,对数字图像进行基本的操作与处理(Basic digital image manipulation and processing of digital image processing, gray,)
- 2013-03-27 10:20:40下载
- 积分:1
-
rotation-and-scaling
对图像进行旋转和缩放的源代码,支持原图像的抽样处理及任意角度的旋转(The image rotation and scaling in any direction)
- 2014-11-25 14:27:18下载
- 积分: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
-
lane-detection
车道偏离识别的程序,采用的是动态规划算法,对弯道也有比较高的识别率(lane departure algorithm, which has good performance even for curve lane.)
- 2012-05-13 19:33:14下载
- 积分:1
-
UIC
mfc图像处理,实现图像的配准,自己编写,可以应用(mfc image processing, image registration)
- 2016-04-25 08:29:45下载
- 积分:1
-
Ray-tracing
线性插值射线追踪法,设置模型为一三层模型,范围100m×100m(Linear interpolation ray tracing method, set the model for a three-tier model, the range 100m100m)
- 2020-10-29 14:19:56下载
- 积分:1
-
1111222223333334444445533332345554
VC计算机图形学原理及算法教程
VC计算机图形学入门教程(VC theory and algorithms of computer graphics computer graphics tutorial Tutorial VC)
- 2013-11-18 15:30:26下载
- 积分:1
-
1-s2.0-S0925753510002559-main.pdf
I WANT SOURCE CODE FOR IMAGE SEGMENTATION
- 2013-07-31 14:23:59下载
- 积分:1
-
main
图像亮度和对比度调节,已验证,分别有亮度调节和对比度调节的调整框(Image brightness and contrast adjustment, has been verified, respectively, brightness adjustment and contrast ad)
- 2017-03-26 20:25:06下载
- 积分:1
-
FBP
N年前上数字图像课时写的实验报告和程序,用滤波反投影(Filter Back Project,FBP)法重建图像。(Report and source code for data image restore experiment, using FBP.)
- 2013-08-23 00:08:28下载
- 积分:1