If the following error occurs during compilation: samples/sample_c++/module_sample/flight_controller/test_flight_controller_command_flying.cpp:633:25: error: ‘cvPoint’ was not declared in this scope
You need to change cvPoint
to cv::Point
in the error file.
For example: imageCorners[0] = cvPoint(0, 0);
modified to imageCorners[0] = cv::Point(0, 0);
Comments
1 comment
> If the following error occurs during compilation ... error: ‘asinf’ was not declared in this scope
> You need to change
cvPoint
tocv::Point
in the error fileIt makes no sense
Please sign in to leave a comment.