0

我正在尝试使用 Kinect 从实时运行的视频中创建 bmp 文件。我正在开发一个应用程序,它在其上运行实时视频以放置图像。我使用的 IDE 是 Visual Studio Professional 2010。我正在使用 win32 用 C++ 开发的代码。
. 我想将视频与叠加的图像一起保存。现在我正在使用 ID2D1Bitmap 以叠加方式显示位图。但是我必须从带有叠加图像的视频中检索字节*数据。我正在尝试创建一个从 ID2D1Bitmap 检索字节*数据的 bmp 文件。但是直接转换无法检索到 byte* 数据。

            m_pd2d1RenderTarget->DrawBitmap(m_pd2d1Bitmap_Image,D2D1::Rect(120,140, 120+Height,140+Width));
            m_pd2d1RenderTarget->DrawBitmap(m_pd2d1Bitmap_Video);

  I copied the data to the ID2D1Bitmap using the function called,
           m_pd2d1RenderTarget->CopyFromMemory(NULL,pvideo_Data,video_Info.bmWidthBytes); m_pd2d1RenderTarget->CopyFromMemory(NULL, pBitmap_Data,Bitmap_Info.bmWidthBytes);

但现在我想结合这两个位图并获取它的 byte* 数据。是否可以将这些位图转换为字节*?是否有任何直接转换可用于从 ID2D1Bitmap 获取字节 * 数据???。我还尝试将 ID2D1Bitmap 转换为 IWICBitmap。因为使用 IWICBitmap->Lock 可以检索 byte* 内容。因此,请帮助我解决以下疑问并提供宝贵的指导:

1.ID2D1Bitmap转byte*?。

2.如何将ID2D1Bitmap转换为IWICBitmap?。

提前致谢 :)

问候,

维克。

4

1 回答 1

0

我在 C# 中按如下方式执行此操作。我们编写的代码从帧中捕获字节数组,创建一个 Image 类型,从下面的函数转换为 Bitmap 类型,然后保存为压缩的 jpeg 以供以后保存在文件系统上:

using (DepthImageFrame depthFrame = e.OpenDepthImageFrame())
                {
                    if (depthFrame == null) return;
                    byte[] pixels = GenerateColoredBytes(depthFrame, first);

                    int stride = depthFrame.Width * 4;
                    depthImage.Source = BitmapSource.Create(depthFrame.Width, depthFrame.Height, 96, 96, PixelFormats.Bgr32, null, pixels, stride);

                    Bitmap btmap = GetBitmap((BitmapSource)depthImage.Source);

                    // Encoder parameter for image quality
                    long quality = 100000;
                    EncoderParameter qualityParam = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, quality);
                    // Jpeg image codec
                    ImageCodecInfo jpegCodec = getEncoderInfo("image/jpeg");
                    EncoderParameters encoderParams = new EncoderParameters(1);
                    encoderParams.Param[0] = qualityParam;

                    var stream = new MemoryStream(); // Create MemoryStream
                    btmap.Save(stream, jpegCodec, encoderParams); //(stream, ImageFormat.Jpeg); // Save Bitmap as .jpeg in MemoryStream                    

                    depthPath = "_UserTrialImages/" + UsernameInput.username + "/Date-" + DateTime.Now.ToString("MM.dd.yyyy");
                    gamePath = depthPath + "/Game-" + gameNumber;
                    trajectoryPath = gamePath + "/Trajectory-" + trajectoryNumber;     // one trajectory per super bubble appearance

                    string depthFile = "image" + ind[5] + ind[4] + ind[3] + ind[2] + ind[1] + ind[0] + ".jpg";
                    string pathFile = trajectoryPath + '/' + depthFile;

                    imageNumberCounter();
                    newImg.pathFile = pathFile;
                    newImg.stream = stream;

                    // saves depth images in list
                    listOfImages.Add(newImg);
                }

调用此函数:

Bitmap GetBitmap(BitmapSource source)
{
    Bitmap bmp = new Bitmap(source.PixelWidth, source.PixelHeight, System.Drawing.Imaging.PixelFormat.Format32bppPArgb);

    BitmapData data = bmp.LockBits(
      new System.Drawing.Rectangle(System.Drawing.Point.Empty, bmp.Size),
      ImageLockMode.WriteOnly,
      System.Drawing.Imaging.PixelFormat.Format32bppPArgb);

    source.CopyPixels(
      Int32Rect.Empty,
      data.Scan0,
      data.Height * data.Stride,
      data.Stride);

    bmp.UnlockBits(data);

    return bmp;
}

我在 C++ 中没有此功能,但如果您在 .NET 4.0 中编码,则应该有与上述 C++ 中相同的功能。希望这可以帮助。

于 2013-03-01T03:34:08.950 回答