BitmapSource到Bitmap返回Null(EmguCV2.4.2.1777 + Kinect)

时间:2013-01-05 04:11:52

标签: c# kinect emgucv

HY, 我试图从Kinect RGB Color Stream将BitmapSource转换为Bitmap。我变得空了。 我正在使用Kinect for Windows SDK 1.6,Visual Studio 2012,Windows 7 Ultimate 64bit,EmguCV 2.4.2.1777。 这是代码:

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;
        }
    }

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

3 个答案:

答案 0 :(得分:0)

尝试更改ToBitmap方法中的return语句,如下所示。 See also here

return (Bitmap)Image.FromStream(stream)

请注意,ToBitmapSource中的CreateBitmapSourceFromHBitmap可能会导致内存泄漏。 See this post。还有很多其他方法可以将Bitmap转换为BitmapSource,但根据我的经验,没有比这更快的方法。

答案 1 :(得分:0)

quick search产生了一些有关如何将BitmapSource转换为Bitmap的资源。

Is there a good way to convert between BitmapSource and Bitmap?

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

https://gist.github.com/916300

他们都遵循一般主题,但略有不同。

答案 2 :(得分:0)

正如您使用的是64位操作系统,希望您也引用了以下文件(对于EMGU CV版本&gt; = 2.4)

cudart64_42_9.dll, cvextern.dll, npp64_42_9.dll

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