我最近在opencv中乱搞,我一直在探索绘图功能(cvCircle(...),cvRectangle(...)等......)。它们正常工作,但我只能在之前加载的图像上绘制它们。
有没有办法创建一个我自己设定的自定义尺寸的空图像,并在上面绘图?
亲切的问候, 丹尼尔
答案 0 :(得分:2)
检查此代码,
Mat draw(480,640,CV_8UC3,Scalar(0,0,0));//create 3 channel image of size 640X480 and filled with black color
circle(draw, Point(320,240), 100, Scalar(0,255,0), 2,8,0);// draw a circle
rectangle(draw, Point(100,100), Point(300,300), Scalar(0,0,255),2,8,0); //draw rectangle
imshow("draw",draw);//display image
waitKey();
您可以在OpenCV Documentation上查看有关Mat的更多信息。