我正在尝试使用opencv库处理通过Windows窗体应用程序或GUI获取的图像。但我不知道如何将图片框图像放到垫子对象上。以下代码将对事物进行透视。
PictureBox->Load(TextBox->Text);
cv::Mat mImage;
mImage = PictureBox->Image; //Ofcourse, it is not right. But this is my intention.
我又试了一次。
mImage = imread(TextBox->Text); //Yes, there is a type difference (System::String and std::string)
我也试过static_cast。但仍然没有工作。有什么方法可以解决这个问题吗?