首页 > 代码库 > RGB 转化 HSV代码
RGB 转化 HSV代码
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; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。