-
Notifications
You must be signed in to change notification settings - Fork 117
Description
Hey folks! I'm trying to containerize this project specifically for the Jetson Nano following the instructions and changes @thien94 has awesomely created for us. I'm having issues specifically with the types that went missing between OpenCV versions 3->4:
https://github.com/opencv/opencv/wiki/Opencv4
PnPsolver.cc and PnPsolver.h both reference the "old-style" CvMat structure and functions associated which do not exist in OpenCV 4.1.0. There's also some svd solver functions and enum's that are missing.
There are also some color conversion enums (like CV_RGB2GRAY) in Tracking.cc that don't exist in OpenCV > 4.0.1
So I'm just wondering if there's some magical include I can add to these files to provide compatibility? Or are there some changes possibly missing to get this project fully under OpenCV > 4.0.1? I just want to make sure I'm not reproducing effort, or doing something completely unnecessary!
Thanks!