Merge pull request #9445 from adishavit:master
* Adds cv::resizeWindow() overload taking a single cv::Size argument. * Replaces copied documentaion with Doxygen @overload command.
This commit is contained in:
committed by
Alexander Alekhin
parent
bee5cb504b
commit
8a094a5f54
@@ -155,7 +155,7 @@ int main(int argc, char **argv)
|
||||
Mat frame;
|
||||
video_in >> frame;
|
||||
namedWindow(video_name, WINDOW_NORMAL);
|
||||
cv::resizeWindow(video_name, frame.cols, frame.rows);
|
||||
cv::resizeWindow(video_name, frame.size());
|
||||
|
||||
cout << "Please select a bounding box, and press any key to continue." << endl;
|
||||
vector<Point2f> bb;
|
||||
|
||||
Reference in New Issue
Block a user