1

我正在从 kinect 设备接收视频。服务器正在逐帧发送视频,在客户端它接收帧,但如果我使用 BitmapSource,它会在图像控件上开始闪烁。创建负责增加 CPU 使用率的函数,之后我使用 WriteableBitmap 类,但我遇到了一个新问题,它给了我错误“调用线程无法访问对象但不同的线程拥有它”,我使用 dispather.invoke解决问题,但它给了我同样的错误。

公共部分类 MainWindow : Window { TcpClient 客户端;网络流 ns; 线程视频框架;WriteableBitmap vediofram = null;

    public MainWindow()
    {
        InitializeComponent();
        client = new TcpClient();
        client.Connect("127.0.0.1", 9000);
        vedioframe = new Thread(Display_Frame);
       vedioframe.Start();


    }
    public void Display_Frame()
    {

        ns = client.GetStream();     
        while (true)
        {
            byte[] vedio = new byte[1228800];
            ns.Read(vedio, 0, vedio.Length);
            try
            {
                if (vediofram == null)
                {
                    vediofram = new WriteableBitmap(640, 480, 96, 96, PixelFormats.Bgr32, null);

               }
               else
                {

                    vediofram.WritePixels(new Int32Rect(0, 0, 640, 480), vedio, 640 * 4, 0);

               }
                Update_Frame(vediofram);

            }
            catch (Exception e)
            {
                MessageBox.Show(e.Message);
            }

            // Dispatcher.Invoke(new Action(() => { BitmapSource s = BitmapSource.Create(640, 480, 96, 96, PixelFormats.Bgr32, null, vedio, 640 * 4);
            // Vedio.Source = s;   
            /// }));

       }
    }
    void Update_Frame(WriteableBitmap src)
    {
        Dispatcher.Invoke(new Action(() => { Vedio.Source = src; }));

    }

}
4

1 回答 1

0

问题是您正在WriteableBitmap后台线程中创建。它需要在 UI 线程上创建,并且您希望将数据传递给 UI 线程以更新位图。

WriteableBitmap 上异步操作的第一个答案进一步阐述。

于 2013-06-27T21:13:22.980 回答