I am trying to install opencv on a Jetson Xavier NX running Ubuntu 20.04, and the viz
library is missing in opencv. If I install opencv via sudo apt install libopencv-dev
on my laptop, viz
is installed by default, but if I install on the jetson the ARM opencv is missing the viz
library.sudo apt install libopencv-viz-dev
, but this automatically removes the other opencv modules.
How can I install libopencv-dev
along with libopencv-viz-dev
?
Also, if I run dpkg --list | grep opencv
, I see libopencv-viz4.2:arm64
as one of the entries, so it seems viz
is being installed, but if I look in /usr/include/opencv4/opencv2
, the viz
folder is missing.