3
我使用下面的代碼從圖像中提取RGB值,有時這適用於某些文件(看起來Stride不能被位圖寬度整除)在返回混合起來價值觀:.net從一個位圖使用Lockbits獲取RGB值
Dim rect As New Rectangle(0, 0, bmp.Width, bmp.Height)
Dim bmpData As System.Drawing.Imaging.BitmapData = bmp.LockBits(rect, Imaging.ImageLockMode.ReadOnly, Imaging.PixelFormat.Format24bppRgb)
Dim ptr As IntPtr = bmpData.Scan0
Dim cols As New List(Of Color)
Dim bytes As Integer = Math.Abs(bmpData.Stride) * bmp.Height
Dim rgbValues(bytes - 1) As Byte
System.Runtime.InteropServices.Marshal.Copy(ptr, rgbValues, 0, bytes)
' Retrieve RGB values
For i = modByte To rgbValues.Length Step 3
cols.Add(Color.FromArgb(rgbValues(i + 2), rgbValues(i + 1), rgbValues(i)))
Next
bmp.UnlockBits(bmpData)
bmp.Dispose()
Dim colsCnt As List(Of RgbPixels) = cols.GroupBy(Function(g) New With {Key .R = g.R, Key .G = g.G, Key .B = g.B}).Select(Function(s) New RgbPixels With {.Colour = Color.FromArgb(s.Key.R, s.Key.G, s.Key.B), .Amount = s.Count()}).ToList()
分組所產生的顏色後,這些值是這樣的:
R G B
255 255 255
255 255 0
255 0 0
0 0 255
0 255 255
或一些變化,當他們應該只是:
R G B
255 255 255
0 0 0
請指點我正確的方向,BTW我的源bmp也在PixelFormat.Format24bppRgb中,所以我不認爲這是問題所在。此外,如果你只能在C#中回答,那不是問題。
謝謝,TWEAK似乎已經完成了帽子戲法。一個小問題雖然通過確認,但我注意到您正在閱讀BGR中的數組值,我在此看到了相互矛盾的觀點;有人說它絕對是RGB,請確認。 – Azza
在這種情況下,BGR是正確的。英特爾/ Win平臺與小端/大端/字節順序相關的特性以及指針和整數之間的轉換。 – K3N