1つお聞きしたいのですが、Marshal.ReadByteを使い疲れた時、「保護されたメモリを読み書きしようとしています。これは多くの場合、他のメモリが壊れていることを示しています。」というエラーが出ます。この問題を解決できません。助けてください。これが私のコードです。
unsafe static void Main(string[] args)
{
IplImage I_input = Cv.LoadImage("1.6.tif", LoadMode.GrayScale);
IntPtr ptr2 = I_input.ImageData;
for (int x = 0; x < I_input.Width; x++)
{
for (int y = 0; y < I_input.Height; y++)
{
int offset = (I_input.WidthStep * y) + (x * 3);
byte b = Marshal.ReadByte(ptr2, offset + 0); // B
byte g = Marshal.ReadByte(ptr2, offset + 1); // G
byte r = Marshal.ReadByte(ptr2, offset + 2); // R
Marshal.WriteByte(ptr2, offset, r);
Marshal.WriteByte(ptr2, offset, g);
Marshal.WriteByte(ptr2, offset, b);
}
}
}