Skip to content

Commit

Permalink
Merge pull request leggedrobotics#62 from warp1337/master
Browse files Browse the repository at this point in the history
Reduced window size to reasonable values
  • Loading branch information
mbjelonic authored Feb 7, 2018
2 parents 640050a + d6aeedf commit f4dc9da
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 f4dc9da

Please sign in to comment.