File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,10 @@ ADD_EXECUTABLE(ProtonectSR
9494 ${ProtonectSR_src}
9595)
9696
97+ SET_TARGET_PROPERTIES (ProtonectSR PROPERTIES
98+ CXX_STANDARD 14
99+ )
100+
97101TARGET_LINK_LIBRARIES (ProtonectSR
98102 ${ProtonectSR_LIBRARIES}
99103)
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ void Recorder::initialize()
7878 // ///////////////////////////////////////////////////////////////
7979
8080 // record image: define compression parameters and frame counter
81- img_comp_param.push_back (CV_IMWRITE_JPEG_QUALITY ); // specify the compression technique
81+ img_comp_param.push_back (cv::IMWRITE_JPEG_QUALITY ); // specify the compression technique
8282 img_comp_param.push_back (100 ); // specify the compression quality
8383 frameID = 0 ;
8484
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ void Streamer::initialize()
3636 servAddress = SERVER_ADDRESS;
3737 servPort = Socket::resolveService (SERVER_PORT, " udp" ); // Server port
3838
39- compression_params.push_back (CV_IMWRITE_JPEG_QUALITY );
39+ compression_params.push_back (cv::IMWRITE_JPEG_QUALITY );
4040 compression_params.push_back (jpegqual);
4141}
4242
You can’t perform that action at this time.
0 commit comments