Как восстановить UnsupportedImageFormatException PixelFormat Format32bppArgb? - PullRequest
3 голосов
/ 28 декабря 2011

Accord.NET PointsMarker.cs , кажется, поддерживает PixelFormat Format32bppArgb.Почему это перехватывает исключение UnsupportedImageFormatException?

private void Harris()
{
    try
    {
        img1 = new Bitmap(pictureBox1A.Image);
        img2 = new Bitmap(pictureBox1B.Image);
        var harris = new HarrisCornersDetector(0.04f, 1000f);
        harrisPoints1 = harris.ProcessImage(img1).ToArray();
        harrisPoints2 = harris.ProcessImage(img2).ToArray();
        // Show the marked points in the original images
        var img1mark = new PointsMarker(harrisPoints1).Apply(img1);
        var img2mark = new PointsMarker(harrisPoints2).Apply(img2);
        // Concatenate the two images together in a single image
        var concatenate = new Concatenate(img1mark);
        pictureBox.Image = concatenate.Apply(img2mark);
    }
    catch (UnsupportedImageFormatException)
    {
        const string S = "UnsupportedImageFormatException PixelFormat ";
        Console.WriteLine(S + img1.PixelFormat);
        Console.WriteLine(S + img2.PixelFormat);
    }
}

Console.WriteLine имеет значение

UnsupportedImageFormatException. Формат PixelFormat32bppArgb UnsupportedImageFormatException Формат PixelFormat32bppArgb

1010

Ответы [ 2 ]

4 голосов
/ 29 декабря 2011

Хотя Format32bppArgb, кажется, поддерживается в источнике Accord.NET PointsMarker.cs , мне удалось исправить его, добавив this :

// Convert to Format24bppRgb
private static Bitmap Get24bppRgb(Image image)
{
    var bitmap = new Bitmap(image);
    var bitmap24 = new Bitmap(bitmap.Width, bitmap.Height, PixelFormat.Format24bppRgb);
    using (var gr = Graphics.FromImage(bitmap24))
    {
        gr.DrawImage(bitmap, new Rectangle(0, 0, bitmap24.Width, bitmap24.Height));
    }
    return bitmap24;
}
0 голосов
/ 30 октября 2012

Еще один способ обойти эту проблему - сохранить изображение как System.Drawing.Image (например, xxx.jpg etc). а затем прочитайте изображение обратно как изображение и преобразуйте его в растровое изображение.
У меня это сработало.

...