-
tuxiangzengqiang
这里的图像增强包括灰度修正、平滑、滤波、锐化等,是图像处理的基本操作,本代码调试通过(Here, including gray-level correction image enhancement, smoothing, filtering, sharpening, etc., is the basic image processing operations, the code debugging by)
- 2010-09-04 15:16:24下载
- 积分:1
-
opencv4.3
自主选择性的查看一幅图像中的部分区域的颜色直方图:允许用户在一幅图像中选择一个矩形区域,通过按住鼠标键画一个矩形,当鼠标放开是,高亮显示矩形框,同时在另一个独立的窗口中,使用画图函数画一个图表(选定区域的颜色直方图),分别用蓝,绿,红表示选中区域中每种颜色的像素数量。(Self-selective color in an image to view a partial area of the histogram: Allows the user to select a rectangular area in an image by holding down the mouse button to draw a rectangle when the mouse is released, the highlighted rectangle, Meanwhile in a separate window, using the drawing functions to draw a chart (selected color histogram region), respectively, with blue, green, red indicates the number of pixels in the selected area of each color.)
- 2014-02-13 16:18:41下载
- 积分:1
-
MRF
使用马尔可夫随机场进行图像分割,包括标记场、特征场建模和参数估计等,程序可运行。(image segmentation Using Markov random field , including label Field, features field modeling and parameter estimation, the program can run.)
- 2020-11-22 16:09:34下载
- 积分:1
-
photoediter
这是一个简单的图象处理的小软件的原代码,试试吧,不错的(This is a simple image of the original small software code, try it, good)
- 2007-05-22 13:54:05下载
- 积分:1
-
testa2
从串口实时采集数据,读取家速度传感器的值,并且显示波形(Real-time collection of data from the serial port, read the value of home speed sensor, and display the waveform)
- 2011-11-20 12:52:48下载
- 积分:1
-
shapecontext6
形状上下文算法用于图像检索,程序中已运用了.mat文件存储图像库中的图像特征,检索效果很好。(shapecontext is used to realize imgage retrival,it shows very effective performance.)
- 2011-07-11 13:46:54下载
- 积分: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
-
temp
Radon 算法的实现及原理讲解,个人整理的重要资料.(Radon algorithm and explain the principle, personal collation of vital information.)
- 2007-10-23 23:35:06下载
- 积分:1
-
seg_twoseeds
区域生长算法分割脑部图像, 两个种子点,解决完整分割白质的算法(Region growing algorithm for segmentation of brain images, the two seed points, solve the integrity of white matter segmentation algorithm)
- 2007-12-04 11:34:37下载
- 积分:1
-
大恒相机二次开发,单次采集
大恒相机二次开发,单次采集
- 2020-11-07下载
- 积分:1