Remove flags of opencv windows

This commit is contained in:
John Zhao 2018-07-17 15:12:35 +08:00
parent 4892f52158
commit c53dd50730
2 changed files with 6 additions and 20 deletions

View File

@ -18,13 +18,6 @@
#include "mynteye/api.h" #include "mynteye/api.h"
#ifdef USE_OPENCV3
#define WIN_FLAGS \
cv::WINDOW_AUTOSIZE | cv::WINDOW_KEEPRATIO | cv::WINDOW_GUI_NORMAL
#else
#define WIN_FLAGS cv::WINDOW_AUTOSIZE
#endif
namespace { namespace {
class DepthRegion { class DepthRegion {
@ -163,9 +156,9 @@ int main(int argc, char *argv[]) {
api->Start(Source::VIDEO_STREAMING); api->Start(Source::VIDEO_STREAMING);
cv::namedWindow("frame", WIN_FLAGS); cv::namedWindow("frame");
cv::namedWindow("depth", WIN_FLAGS); cv::namedWindow("depth");
cv::namedWindow("region", WIN_FLAGS); cv::namedWindow("region");
DepthRegion depth_region(3); DepthRegion depth_region(3);
auto depth_info = []( auto depth_info = [](

View File

@ -21,13 +21,6 @@
#include "util/cv_painter.h" #include "util/cv_painter.h"
#include "util/pc_viewer.h" #include "util/pc_viewer.h"
#ifdef USE_OPENCV3
#define WIN_FLAGS \
cv::WINDOW_AUTOSIZE | cv::WINDOW_KEEPRATIO | cv::WINDOW_GUI_NORMAL
#else
#define WIN_FLAGS cv::WINDOW_AUTOSIZE
#endif
namespace { namespace {
class DepthRegion { class DepthRegion {
@ -166,9 +159,9 @@ int main(int argc, char *argv[]) {
api->Start(Source::VIDEO_STREAMING); api->Start(Source::VIDEO_STREAMING);
cv::namedWindow("frame", WIN_FLAGS); cv::namedWindow("frame");
cv::namedWindow("depth", WIN_FLAGS); cv::namedWindow("depth");
cv::namedWindow("region", WIN_FLAGS); cv::namedWindow("region");
DepthRegion depth_region(3); DepthRegion depth_region(3);
auto depth_info = []( auto depth_info = [](