我想調用帶參數顏色的方法。但是有很多顏色只是因爲陰影而有所不同。我怎樣才能找到與我的顏色不同的顏色,例如AntiqueWhite和Bisque。 Here's調色板。c#尋找類似的顏色
Bitmap LogoImg = new Bitmap("file1.jpeg");//the extension can be some other
System.Drawing.Color x = LogoImg.GetPixel(LogoImg.Width-1, LogoImg.Height-1);
LogoImg.MakeTransparent(x);
image1.Source = GetBitmapSource(LogoImg);
使用R,G的最大變化或B的treshold(或三個) – RvdK
你要什麼對你的成績怎麼辦? – alexn
[尋找類似顏色的程序]的可能重複(http://stackoverflow.com/questions/1725505/finding-similar-colors-programatically) –