-
Tamura纹理特征提取及应用的matlab代码 TTamura Textua
Tamura纹理特征提取及应用的matlab代码,附有介绍绍Tamura纹理的文献和测试用图片。,已通过测试。
(Tamura texture feature extraction and application of the Matlab code, accompanied by Shao Tamura texture literature and test pictures. , Has been tested.)
- 2012-06-09 11:36:52下载
- 积分:1
-
MedianFilter_GPU
该VC++程序是基于CUDA架构的中值滤波程序,GPU加速,并且使用了opencv函数库(The VC++ program is based on the CUDA architecture median filtering program, GPU acceleration, and use the opencv library)
- 2014-10-27 18:29:32下载
- 积分: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
-
pca-sift
pca-sift算法的实现,采用vc2008开发环境,进行开发,独立运行(pca-sift algorithm, using vc2008 development environment to develop, operate independently)
- 2010-05-17 09:46:17下载
- 积分:1
-
VCtracking
用visual c++编写的飞机飞行模拟航迹,其中包括VC源代码和模拟飞行图。(Written with visual c++ simulation of aircraft flight tracks, including the VC source code and simulation of flight plans.)
- 2021-05-13 03:30:03下载
- 积分:1
-
Three-dimensional-algorithm
关于MC三维重建算法的二义性消除的文章,很好的消除了MC算法中的二义性(it s the article about Three-dimensional reconstruction algorithm to eliminate ambiguity in MC)
- 2014-01-17 13:19:26下载
- 积分:1
-
SANBAN
数字散斑相关程序,能够计算2副图片的位移,简单的例子,对初学者也许有用。(Digital speckle correlation program can calculate the displacement of two images, a simple example, may be useful for beginners.)
- 2020-11-25 17:39:32下载
- 积分:1
-
SingleCalibrate
基于opencv的相机单目标定程序,很好的学习资源,做图像矫正的可以看看~(Opencv based on a single target of the camera program)
- 2015-05-06 13:53:42下载
- 积分:1
-
infusimage
红外图像的亚像素边缘检测,检测边缘,用于图像配准。(Infrared image of the sub-pixel edge detection, edge detection for image registration.)
- 2010-09-29 10:18:15下载
- 积分:1
-
cubicfive
用C++编写的产生文章的程序,方便有需要的人(C generated articles prepared by the procedures that are accessible to people in need)
- 2007-05-11 09:18:16下载
- 积分:1