-
LineTrans
说明: 该程序实现的功能是:图像反色,线形变换,对于图像处理初学者非常实用。(The realization of the program)
- 2008-11-11 16:35:10下载
- 积分:1
-
histogram_2
Code for make histogram of image
- 2012-06-19 02:16:11下载
- 积分:1
-
fire1
用于火焰尖角、圆形度、纹理的测量以及图像颜色、矩阵、边缘直方图的测量(For flame sharp corners, roundness, texture measurements, and image color, matrix, edge histogram measurements)
- 2016-10-25 21:06:32下载
- 积分:1
-
gtcgdwh
vc编写数字图像处理的程序,其中有图像处理的各种方法的程序(Vc write a digital image processing program, including the various methods of image processing program)
- 2017-04-28 07:28:22下载
- 积分:1
-
KNearestclass
使用K近邻算法对一个2维德样本集进行分类,样本集的分布为混合高斯分布。(K nearest neighbor to use a 2 Verde sample set for classification, the distribution of sample set for mixed Gaussian distribution.)
- 2008-06-25 04:50:13下载
- 积分:1
-
bmpscrollview
用于BMP图像文件的滚动显示,带上下和水平滚动条。(This file is used to display BMP image files, with up-down and horizontal scroll bars.)
- 2013-07-10 16:44:33下载
- 积分:1
-
Canny
说明: 用canny算子来检测图像边缘,VC++(Using canny operator to detect image edge)
- 2010-03-28 14:43:47下载
- 积分: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
-
image-matching-using-surf-and-ransac
对两幅图像进行配准,分别提取两幅图像的surf特征点以及描述子,得到粗匹配结果,然后根据粗匹配结果,采用ransac方法计算基础矩阵,并去除误匹配点,得到较准确匹配结果(Two image registration, surf was extracted from the feature points in two images to get the coarse matching and descriptor, then according to the results, the coarse matching results, using RANSAC method to calculate the fundamental matrix, and eliminate the error matching, gain a more accurate matching results)
- 2020-11-13 13:59:43下载
- 积分:1
-
ObImPr
实现图像中细胞的提取,并计算出细胞与核仁面积之比的可视化程序(Extraction of cells in the image, and calculate the cells with nucleolar area ratio of the visualization program)
- 2012-05-20 10:06:32下载
- 积分:1