Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在研究医学图像的分割工具。它基本上是在算法的每次迭代中演变的轮廓。
我想要做的是每 20 次迭代在图像上显示轮廓。目前我正在通过创建一个窗口、使用该cvDrawContour函数并使用imshow. 20 次迭代后,我销毁窗口并再次执行这些步骤。
cvDrawContour
imshow
有没有办法创建一个不会被破坏的窗口,并且您可以在其中更改它显示的图像?
绝对地。只是不要每次都破坏你的窗户。您的图像存储在一些cv::Mat mat,只需cv::imshow("My Window", mat);每次使用,无需销毁它。
cv::Mat mat
cv::imshow("My Window", mat);