登录
首页 » Visual C++ » chenggongchengxu

chenggongchengxu

于 2011-12-02 发布 文件大小:1KB
0 144
下载积分: 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 个回复

  • VisualSFM_windows_cuda_64bit
    说明:  很好用的三维重建软件,VisualSFM软件允许上传一系列图像,它从这些图像中找到每一个图像的特定特征,利用这些特征信息重建出3D模型的稀疏点云,而后还可进行稠密点云重建。(The VisualSFM software, a good 3D reconstruction software, allows uploading a series of images. It finds the specific features of each image from these images, and USES these feature information to reconstruct the sparse point cloud of the 3D model, and then it can reconstruct the dense point cloud.)
    2019-05-16 16:00:52下载
    积分:1
  • d3dle5
    说明:  计算机图形学中应用VC++6.0和DirectX 8.0 SDK制作彩色旋转的金字塔和正方体的小程序(computer graphics application VC 6.0 and DirectX 8.0 SDK produced color rotating cube pyramid and the small program)
    2005-12-14 13:49:08下载
    积分:1
  • Houghtranslate
    这个是图像处理中的hough变换的C++源代码,工需要的同学参考学习。(This is the image processing hough transform C++ source code, engineering students need to learn.)
    2013-09-07 00:28:11下载
    积分:1
  • Ratematching_byylluo
    LTE中速率匹配的代码,包括子块交织,比特搜集,比特选择和修剪(The code rate matching in LTE, including the sub-block interleaving and bit gather, bit selection and pruning)
    2011-01-23 21:35:25下载
    积分:1
  • quanjingtupinheyuchuli
    一种有效的全景图拼合预处理算法.适用于图像的拼接。是论文!(An effective pre-processing algorithm together panorama. Splicing applied to images. Is a thesis!)
    2008-04-15 16:42:03下载
    积分:1
  • MatlabSIFT
    MATLAB 计算医学图像的配准,融合 基于SIFT方法的配准()
    2007-08-03 21:49:20下载
    积分:1
  • Image-color-VB-source-code
    使用VB编写的图片反色源代码是图像处理的很好的教程(Image color VB source code)
    2014-03-18 09:45:58下载
    积分:1
  • hilight_dg
    说明:  在autocad2007环境中直接使用API就可以亮显实体的一个示例演示(This program demonstrates how to use ObjectARX API functions to highlight and unhighlight subentities of complex entities such as ACIS solids.)
    2009-08-23 11:22:34下载
    积分:1
  • speech-emotion-recognition
    过特定人语音情感数据库的建立;语音情感特征提取;语音情感分类器的设计,完成了一个特定人语音情感识别的初步系统。对于单个特定人,可以识别平静、悲伤、愤怒、惊讶、高兴5种情感,除愤怒和高兴之间混淆程度相对较大之外,各类之间区分特性良好,平均分类正确率为93.7 。对于三个特定人组成的特定人群,可以识别平静、愤怒、悲伤3种情感,各类之间区分特性良好,平均分类正确率为94.4 。其中分类器采用混合高斯分布模型。(The system of speech emotion recognition)
    2014-04-21 20:08:42下载
    积分:1
  • CT-tracking
    一种简单高效地基于压缩感知的跟踪算法。首先利用符合压缩感知RIP条件的随机感知矩对多尺度图像特征进行降维,然后在降维后的特征上采用简单的朴素贝叶斯分类器进行分类。该跟踪算法非常简单,但是实验结果很鲁棒,速度大概能到达40帧/秒(A simple and efficient tracking algorithm based on compressed sensing. Firstly, with the random sensing matrix compressed sensing RIP conditions for multi-scale image feature dimension reduction, and then use the naive Bias classifier simple classification in the feature reduction after the. The tracking algorithm is very simple, but the results are robust, speed can reach 40 frames per second)
    2014-01-10 11:45:54下载
    积分:1
  • 696518资源总数
  • 104384会员总数
  • 26今日下载