码迷,mamicode.com
首页 > 其他好文 > 详细

RGB 转化 HSV代码

时间:2014-05-21 14:50:42      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:图像处理   图形   计算机视觉   

public void toHSV3( int red , int green , int blue ){
		double 	maxRGB	=	FqMath.max( red , green , blue );// 
		double	minRGB	=	FqMath.min( red , green , blue );
		double	itemp	=	maxRGB;            //v‘=itemp
		double	temp	=	maxRGB	-	minRGB;//
		
		if( maxRGB == minRGB ){
			this.hHSV	=	0;
			this.sHSV	=	0;
			this.vHSV	=	maxRGB / 255;
			return;
		}
		double	rtemp	=	( itemp - red )	/ temp;//r‘=rtemp
		double	gtemp	=	( itemp - green ) / temp;//g‘=gtemp
		double	btemp	=	( itemp - blue ) / temp;//b‘=btemp
		this.vHSV	=	itemp / 255;//v=this.vHSV
		this.sHSV	=	temp / itemp;//s‘=this.sHSV
		if( red == maxRGB ){
			if( green == minRGB )
				this.hHSV	=	5 + btemp;
			else
				this.hHSV	=	1 - gtemp;
		}
		else if( green == maxRGB ){
			if( blue == minRGB )
				this.hHSV	=	1 + rtemp;
			else
				this.hHSV	=	3 - btemp;
		}
		else if( blue == maxRGB ){
			if( red == minRGB )
				this.hHSV	=	3 + gtemp;
			else
				this.hHSV	=	5 - rtemp;
		}
		this.hHSV	*=	60;	
	}

RGB 转化 HSV代码,布布扣,bubuko.com

RGB 转化 HSV代码

标签:图像处理   图形   计算机视觉   

原文地址:http://blog.csdn.net/guanjungao/article/details/26362035

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!