You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/Users/guruprasadah/Documents/ocv_tests/main.cpp:38:36: error: no member named 'create' in 'cv::aruco::GridBoard'
38 | auto b = cv::aruco::GridBoard::create({2, 2}, 0.07, 0.2, dictionary);
| ~~~~~~~~~~~~~~~~~~~~~~^
1 error generated.
make[2]: *** [CMakeFiles/ocv.dir/main.cpp.o] Error 1
make[1]: *** [CMakeFiles/ocv.dir/all] Error 2
All documentation seems to refer to this nonexistent function, and I cannot seem to use the constructor directly also, since all functions need the object as a cv::Ptr
Steps to reproduce
Try to use the GridBoard::create function, which does not exist apparently.
Issue submission checklist
[*] I report the issue, it's not a question
[*] I checked the problem with documentation, FAQ, open issues,
forum.opencv.org, Stack Overflow, etc and have not found any solution
[*] I updated to the latest OpenCV version and the issue is still there
There is reproducer code and related data files: videos, images, onnx, etc
The text was updated successfully, but these errors were encountered:
System information (version)
Detailed description
I try to use the cv2::aruco::Board::create or cv2::aruco::GridBoard::create like:
where dictionary has been properly defined earlier in the file
my includes are:
However whatever I do, my compiler says:
All documentation seems to refer to this nonexistent function, and I cannot seem to use the constructor directly also, since all functions need the object as a cv::Ptr
Steps to reproduce
Issue submission checklist
forum.opencv.org, Stack Overflow, etc and have not found any solution
The text was updated successfully, but these errors were encountered: