登录
首页 » Visual C++ » chenggongchengxu

chenggongchengxu

于 2011-12-02 发布 文件大小:1KB
0 252
下载积分: 1 下载次数: 7

代码说明:

  rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h" #include 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)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 192168291092007531155683305865
    Image Watershed Segmentation图像边缘提取(Image Watershed Segmentation Image Edge Detection)
    2007-08-11 09:18:48下载
    积分:1
  • BMP_pix_read_write
    实现BMP文件的基本功能。用C++实现一个Class,该Class具有读写BMP文件功能;该Class还具有对图像像素进行操作的功能(针对每个像素的读、写) (BMP files to achieve the basic functions. Using C++ implementation of a Class, the Class has read and write BMP file functions the Class also features the image pixel operation function (for each pixel of the read, write))
    2010-06-03 15:50:25下载
    积分:1
  • WBBaayesianr
    我写的贝叶斯fusion的Visual C+++源码,简明易懂,提供参数说明 可直接使用。 (The Bayesian fusion the Visual C+++ of what I wrote source, easy-to-understand parameters can be used directly.)
    2012-09-30 11:17:27下载
    积分:1
  • HOG
    基于HOG的行人检测,作者的源代码有错误,现代码已经进行了改变,并可以调试通(Histograms of Oriented Gradients for Human Detection, the writer s code has some errors, and I have correct the errors, and the code is right under C++ buidler)
    2020-06-25 23:00:01下载
    积分:1
  • yj
    说明:  :针对显微图像分析、识别需要的全自动控制显微镜,研究开发其相应的图像处理算法。提 出了能量谱自动聚焦评价函数算法、自适应选取基准图的图像拼接算法、改进 Laplacian算子的多层 聚焦图像叠合算法等。该算法模块已成功地应用于所开发的CMIAS 显微医学图像分析系统中,取得 了满意的应用效果。(【ABSTRACT】For the automatic microscope required by micro-image analysis and recognition, the relevant image processing a lgorithms are investigated. Three algorithms are described: energy-spectrum image auto focusing evaluation function, image merging based on the adaptive selection of standard image and sum-modified-Laplacian (SML) operator for multi-focus image fusion. The algorithms have been applied successfully to CMIAS medical micro-optical image analysis system and testified to be feasible and effective. )
    2009-11-05 10:02:07下载
    积分:1
  • SparseMatrixOfExamples
    稀疏矩阵的实例,讲述如何用稀疏矩阵进行实际的编程。本例是以超市购物为实际背景。(Examples of sparse matrix)
    2010-07-29 09:57:15下载
    积分:1
  • FillRegion
    填充区域图像,设置填充区域,填出图像的颜色(Filled regional images, set fill area, fill in the color of the image)
    2009-01-18 22:45:33下载
    积分:1
  • bysjtuxiang
    毕业设计的程序 用VC++6.0做的 主要是测试几个边缘检测算子的效果(Graduate programs designed to use VC++ 6.0 to do is to test several of the main edge detection operator effect)
    2008-02-28 12:23:34下载
    积分:1
  • EdgeDetection
    基于Visual C++的图像边缘检测工程,以Canny为例(Visual C++-based image edge detection works to Canny Case)
    2013-10-22 11:33:56下载
    积分:1
  • NumberRecognize
    根据RBM深度网络(Hinton,2006)进行MINST手写文字的分类器的训练,利用训练得到的权值制作了这个小程序,通过这个程序可以看出训练结果对数据集内的测试样本和训练样本都能进行很好的识别,但是对其他的手写字体识别就没有那么好了。(According to RBM depth network (Hinton, 2006) conducted MINST handwritten text classifier training, using the training to get the right value to produce this small program, this program can be seen through the results of the training data set and the training sample test samples are can be well identified, but on the other handwriting recognition is not so good.)
    2013-10-17 15:55:34下载
    积分:1
  • 696516资源总数
  • 106562会员总数
  • 4今日下载