1

Bootcamp を使用した Macbook Pro で Aforge フレームワークを使用し、Visual Studio C# を使用してオブジェクトを追跡できるプロジェクトを作成しました。問題は、コードを実行して閉じるときです。その後、もう一度実行すると、コードはカメラに画像を表示しなくなります。さらに、コードが停止された後も、Web カメラの緑色のライトは点灯したままです。

私の2番目の問題は、「オブジェクトの追跡ボタン」をクリックして画像にフィルターを適用すると、何らかの理由で、1つだけではなく2つの画像ボックスにフィルターが適用されることです。コードのデバッグに助けが必要です。フィルターを適用する行を再配置しようとしましたが、正しく取得できないようです。

ここに私のコードがあります

namespace VideoProcessing1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        Graphics g;
        Bitmap video;
        bool OnOff;
        int mode;
        int thoigianddemnguoc;

        private FilterInfoCollection CaptureDevice;
        private VideoCaptureDevice FinalFrame;

        private void Form1_Load(object sender, EventArgs e)
        {
            CaptureDevice = new FilterInfoCollection(FilterCategory.VideoInputDevice);
            foreach (FilterInfo Device in CaptureDevice)
            {
                comboBox1.Items.Add(Device.Name);

            }
            comboBox1.SelectedIndex = 0;
            FinalFrame = new VideoCaptureDevice();
            //FinalFrame.Stop();

        }

        private void button1_Click(object sender, EventArgs e)
        {
            FinalFrame = new VideoCaptureDevice(CaptureDevice[comboBox1.SelectedIndex].MonikerString);
            FinalFrame.NewFrame += new NewFrameEventHandler(FinalFrame_NewFrame);
            FinalFrame.Start();

        }

        void FinalFrame_NewFrame(object sender, NewFrameEventArgs eventArgs)
        {
            video = (Bitmap)eventArgs.Frame.Clone();
            Bitmap video2 = (Bitmap)eventArgs.Frame.Clone();
            g = Graphics.FromImage(video2);
            g.DrawString("Test", new Font("Arial", 20), new SolidBrush(Color.White), new PointF(2, 2));
            g.Dispose();

            if (mode == 1)
            {
                ColorFiltering colorfilter = new ColorFiltering();
                colorfilter.Red = new AForge.IntRange(0, 255);
                colorfilter.Green = new AForge.IntRange(0, 75);
                colorfilter.Green = new AForge.IntRange(0, 75);
                colorfilter.ApplyInPlace(video2);
                BlobCounter blobcounter = new BlobCounter();
                blobcounter.MinHeight = 20;
                blobcounter.MaxWidth = 20;
                blobcounter.ObjectsOrder = ObjectsOrder.Size;
                blobcounter.ProcessImage(video2);
                Rectangle[] rect = blobcounter.GetObjectsRectangles();

                if (rect.Length > 0)
                {
                    Rectangle objec = rect[0];
                    Graphics graphic = Graphics.FromImage(video2);
                    using (Pen pen = new Pen(Color.White, 3))
                    {
                        graphic.DrawRectangle(pen, objec);
                    }
                    graphic.Dispose();
                }
                pictureBox2.Image = video2;

            }
            pictureBox1.Image = video2;
        }

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
          if(FinalFrame.IsRunning==true)
            {
                FinalFrame.Stop();
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
           pictureBox2.Image = (Bitmap)pictureBox1.Image.Clone();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            mode = 1;
        }
    }
}
4

1 に答える 1

0

ビデオ キャプチャ デバイスでの通話Stopはお勧めしません。ドキュメントによると、「カメラを停止する正しい方法は、カメラに停止を通知し、バックグラウンド スレッドの完了を待機することです。」

停止するには、次のようなものを使用してみてください。

FinalFrame.SignalToStop();
FinalFrame.WaitForStop();

適切に使用しないと、スレッドの動作が予測不能になる可能性があります。問題はここにあると思います。

2番目の質問に関して、問題の行は

pictureBox1.Image = video2;

あなたはすでに保存video2してpictureBox2.Imageいるので、他のpictureBoxにそれをしたくないと思います。

于 2015-08-13T03:55:21.107 に答える