Thông báo

Collapse
No announcement yet.

Cách hiển thị ảnh Mat của opencv trong picturebox của windows form application?

Collapse
X
 
  • Lọc
  • Giờ
  • Show
Clear All
new posts

  • Cách hiển thị ảnh Mat của opencv trong picturebox của windows form application?

    Em muốn làm một button, khi ấn vào đó thì nó load ảnh và hiển thị trong picturebox của windows form application nhưng không được.

    Đây là đoạn code em tìm được ở đây display cv::Mat (opencv 2.4.3) in pictureBox (Visual C++ 2010) - Stack Overflow
    Biên dịch thì không lỗi nhưng khi chạy thì bị lỗi.

    private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {

    Mat img;
    img = imread("1.jpg");

    System:rawing::Graphics^ graphics = pictureBox1->CreateGraphics();
    System::IntPtr ptr(img.ptr());
    System:rawing::Bitmap^ b = gcnew System:rawing::Bitmap(img.cols,img.rows,img.step,System:rawing::Imaging::PixelFormat::Format24bppRgb,ptr);
    System:rawing::RectangleF rect(0,0,pictureBox1->Width,pictureBox1->Height);
    graphics->DrawImage(b,rect);

    }
    Cho em hỏi có cách nào hiển thị ảnh Mat trong picturebox được không ạ
    Ảnh Ipl thì em hiển thị được còn ảnh Mat thì bó tay, em search nhiều lắm rồi mà ko ra nên mới lên đây hỏi mọi người.

  • #2
    Em tìm được cách hiển thị rồi

    private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
    VideoCapture cap (0);

    while (1)
    {
    cap >> frame;
    System:rawing::Graphics^ graphics = pictureBox1->CreateGraphics();
    System::IntPtr ptr(frame.ptr());
    System:rawing::Bitmap^ b = gcnew System:rawing::Bitmap(frame.cols,frame.rows,frame.step,Sy stem:rawing::Imaging::PixelFormat::Format24bppRgb,ptr);
    System:rawing::RectangleF rect(0,0,pictureBox1->Width,pictureBox1->Height);
    graphics->DrawImage(b,rect);
    }
    }
    Nhưng lại gặp vấn đề khi chạy chương trình thì nó hiển thị video bình thường nhưng form không tương tác được (Không kích vào nút x để đóng chương trình được, không di chuyển được cửa số), coi taskmanager thì báo not responding mặc dù video vẫn chạy

    Có phải lỗi do vòng while ko ạ

    Comment

    Về tác giả

    Collapse

    nhokcon Tìm hiểu thêm về nhokcon

    Bài viết mới nhất

    Collapse

    Đang tải...
    X