1

嗨,我正在尝试将 BitmapSource 从 Kinect RGB 颜色流转换为位图。我越来越空了。我正在为 Windows SDK 1.6、Visual Studio 2012、Windows 7 Ultimate 64bit、EmguCV 2.4.2.1777 使用 Kinect。这是代码:

void _kinect_ColorFrameReady( object sender, ColorImageFrameReadyEventArgs e )
    {
        using ( ColorImageFrame colorFrame = e.OpenColorImageFrame() )
        {
            if ( colorFrame == null )
            {
                return;
            }

            if ( colorFrame != null )
            {
                this.colorPixels = new byte[colorFrame.PixelDataLength];

                colorFrame.CopyPixelDataTo( this.colorPixels );

                int stride = colorFrame.Width * 4;

                colorBmp = BitmapSource.Create( 
                    colorFrame.Width, 
                    colorFrame.Height, 
                    96, 
                    96, 
                    PixelFormats.Bgr32, 
                    null, 
                    colorPixels,
                    stride 
                );

                currentColorFrame = new Image<Bgr, Byte>( colorBmp.ToBitmap() );

                this.imgOutput.Source = ImageHelpers.ToBitmapSource( currentColorFrame ); 
            }
        }           
    }

辅助方法:

   public static System.Drawing.Bitmap ToBitmap(this BitmapSource bitmapsource)
    {
        System.Drawing.Bitmap bitmap;
        using ( var outStream = new MemoryStream() )
        {
            // from System.Media.BitmapImage to System.Drawing.Bitmap
            BitmapEncoder enc = new BmpBitmapEncoder();
            enc.Frames.Add( BitmapFrame.Create( bitmapsource ) );
            enc.Save( outStream );
            bitmap = new System.Drawing.Bitmap( outStream );
            return bitmap;
        }         
    }


    [DllImport("gdi32")]
    private static extern int DeleteObject(IntPtr o);

    /// <summary>
    /// Convert an IImage to a WPF BitmapSource. The result can be used in the Set Property of Image.Source
    /// </summary>
    /// <param name="image">The Emgu CV Image</param>
    /// <returns>The equivalent BitmapSource</returns>
    public static BitmapSource ToBitmapSource(IImage image)
    {
        using (System.Drawing.Bitmap source = image.Bitmap)
        {
            IntPtr ptr = source.GetHbitmap(); //obtain the Hbitmap

            BitmapSource bs = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
                ptr,
                IntPtr.Zero,
                Int32Rect.Empty,
                System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());

            DeleteObject(ptr); //release the HBitmap
            return bs;
        }
    }

请指出我的错误或尽快给我任何建议。

4

3 回答 3

0

由于您使用的是 64 位操作系统,因此希望您也参考了以下文件(对于 EMGU CV 版本 >=2.4)

cudart64_42_9.dll, cvextern.dll, npp64_42_9.dll

如果您不进行 64 位构建,这将有助于在 64 位操作系统中使用 emgucv。除此之外,您的代码看起来不错。

于 2013-01-12T18:58:36.867 回答
0

尝试如下更改 ToBitmap 方法中的 return 语句。另请参见此处

return (Bitmap)Image.FromStream(stream)

请注意,ToBitmapSource 中的 CreateBitmapSourceFromHBitmap 可能会导致内存泄漏。看到这个帖子。还有许多其他方法可以将 Bitmap 转换为 BitmapSource,但根据我的经验,没有一种方法更快。

于 2013-01-05T13:51:46.587 回答
0

快速搜索产生了一些关于如何将 a 转换BitmapSourceBitmap.

有没有在 BitmapSource 和 Bitmap 之间转换的好方法?

http://snipplr.com/view/63090/how-to-convert-bitmapsource-to-bitmap/

https://gist.github.com/916300

它们都遵循一个总体主题,尽管略有不同。

于 2013-01-05T14:58:01.473 回答