gpt4 book ai didi

c# - 将图像源绑定(bind)到 BitmapSource 时,图像保持空白

转载 作者:行者123 更新时间:2023-11-30 21:08:33 24 4
gpt4 key购买 nike

我正在尝试在 WPF 应用程序中显示来自 Kinect 的摄像头画面。但是,图像显示为空白。

下面是我在 Kinect 类中的片段,这一切都正确触发,并且 BitmapSource 似乎创建得很好。

public delegate void FrameChangedDelegate(BitmapSource frame);
public event FrameChangedDelegate FrameChanged;


//this event is fired by the kinect service, and fires correctly

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

byte[] pixels = new byte[colorFrame.PixelDataLength];

colorFrame.CopyPixelDataTo(pixels);

int stride = colorFrame.Width * 4;

BitmapSource newBitmap = BitmapSource.Create(colorFrame.Width, colorFrame.Height,
96, 96, PixelFormats.Bgr32, null, pixels, stride);
counter++;

//below is the call to the delegate

if ( FrameChanged != null)
{
FrameChanged(newBitmap);
}


}
}

这是我的 ViewModel 中的内容。

    void kinectService_FrameChanged(BitmapSource frame)
{

image = frame;
}

BitmapSource image;
public BitmapSource Image
{
get { return this.image; }
set
{
this.image = value;
this.OnPropertyChanged("Image");
}
}

下面是我的 XAML View 中的内容。

<Image Canvas.Left="212" Canvas.Top="58" Height="150" Name="image1" Stretch="Fill"     Width="200" Source="{Binding Path=Image}"/>

所有事件和属性似乎都已更新。我做错了什么?

最佳答案

image = frame;

应该是:

Image = frame;

否则您的属性更改通知将不会触发。

关于c# - 将图像源绑定(bind)到 BitmapSource 时,图像保持空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9606290/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com