Skip to content

Commit

Permalink
Reduced window size to reasonable values
Browse files Browse the repository at this point in the history
  • Loading branch information
warp1337 committed Feb 7, 2018
1 parent 640050a commit d6aeedf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion darknet_ros/src/YoloObjectDetector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ void YoloObjectDetector::yolo()
cvSetWindowProperty("Demo", CV_WND_PROP_FULLSCREEN, CV_WINDOW_FULLSCREEN);
} else {
cvMoveWindow("Demo", 0, 0);
cvResizeWindow("Demo", 1352, 1013);
cvResizeWindow("Demo", 640, 480);
}
}

Expand Down

0 comments on commit d6aeedf

Please sign in to comment.