我正在尝试使用鼠标回调在opencv中的图像上绘制一个矩形。我可以通过我的鼠标滚轮放大图像。放大图像后,我所能做的就是平移图像,我无法绘制矩形。
the image after I zoom in (only panning is possible here and cannot draw the rectangle)
我通过
创建了窗口 namedWindow("lena", CV_WINDOW_NORMAL );
鼠标通过函数回调
cvSetMouseCallback("lena",mouse_call_pattern);
放大图像后有没有办法绘制矩形?