Open lix19937 opened 6 months ago
https://github.com/spmallick/learnopencv https://www.learnopencv.com/ https://github.com/opencv/opencv_extra/blob/master/testdata/dnn/download_models.py https://www.pyimagesearch.com/
手写数字识别 svm
karas 英文字符识别
opencv想编译成静态库,那么把BUILD_SHARED_LIBS的钩去掉,这样就不用每次发布程序都带一堆动态库
https://docs.opencv.org/3.4.3/d7/d9f/tutorial_linux_install.html
注意png编译 linux下编译opencv
sudo yum -y install gtk2 gtk2-devel 必备的 移植的时候也需要S1 sudo yum -y install tbb-devel eigen3-devel 注意可能需要安装GStreamer 命令yum install gstreamer* 移植的时候也需要S2
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_PNG=ON -DWITH_CUDA=OFF -DWITH_CUFFT=OFF -DWITH_CUBLAS=OFF -DWITH_NVCUVID=OFF -DBUILD_CUDA_STUBS=OFF -DCMAKE_INSTALL_PREFIX=/usr/local -DOPENCV_EXTRA_MODULES_PATH=../opencv_contrib-3.4.0/modules/ ../opencv-3.4.0
cmake \
-D CMAKE_BUILD_TYPE=Release \
-D ENABLE_CXX11=ON \
-D BUILD_JPEG=ON \
-D BUILD_PNG=ON \
-D BUILD_ZLIB=ON \
-D WITH_FFMPEG=ON \
-D WITH_V4L=ON \
-D BUILD_opencv_python3=ON \
-D BUILD_opencv_python2=OFF \
-D BUILD_opencv_java=OFF \
-D PYTHON_EXECUTABLE=$(which python3) \
-D WITH_CUDA=OFF \
-D WITH_CUFFT=OFF \
-D WITH_CUBLAS=OFF \
-D WITH_NVCUVID=OFF \
-D BUILD_CUDA_STUBS=OFF \
-D CMAKE_INSTALL_PREFIX=/usr/local \
-D OPENCV_EXTRA_MODULES_PATH=../opencv_contrib-3.4.3/modules/ \
../opencv-3.4.3
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_CXX11=ON -D BUILD_JPEG=ON -D BUILD_PNG=ON -D BUILD_ZLIB=ON -D WITH_FFMPEG=ON -D WITH_V4L=ON -D BUILD_opencv_python3=ON -D BUILD_opencv_python2=OFF -D BUILD_opencv_java=OFF -D PYTHON_EXECUTABLE=$(which python3) -D WITH_CUDA=OFF -D WITH_CUFFT=OFF -D WITH_CUBLAS=OFF -D WITH_NVCUVID=OFF -D BUILD_CUDA_STUBS=OFF -D CMAKE_INSTALL_PREFIX=/usr/local -D OPENCV_EXTRA_MODULES_PATH=../opencv_contrib-3.4.3/modules/ -D PYTHON_LIBRARY=/usr/local/lib/libpython3.6m.a -D PYTHON3_NUMPY_INCLUDE_DIRS=/usr/local/lib/python3.6/site-packages/numpy/core/include ../opencv-3.4.3
cmake \ -D CMAKE_BUILD_TYPE=Release \ -D ENABLE_CXX11=ON \ -D OPENCV_GENERATE_PKGCONFIG=ON \ -D BUILD_JPEG=ON \ -D BUILD_PNG=ON \ -D BUILD_ZLIB=ON \ -D WITH_CUDA=ON \ -D WITH_CUFFT=ON \ -D WITH_CUBLAS=ON \ -D WITH_OPENCL=ON \ -D WITH_NVCUVID=ON \ -D BUILD_CUDA_STUBS=ON \ -D CUDA_NVCC_FLAGS="-D_FORCE_INLINES" \ -D WITH_TBB=ON \ -D WITH_V4L=ON \ -D CMAKE_INSTALL_PREFIX=/usr/local \ -D OPENCV_EXTRA_MODULES_PATH=../opencv_contrib-4.0.1/modules/ \ ../opencv-4.0.1
【face_landmark_model.dat下载问题】 -- data: Download: face_landmark_model.dat CMake Warning at /home/poc/opencv-3.4.3/cmake/OpenCVDownload.cmake:193 (message): data: Download failed: 28;"Timeout was reached"
Call Stack (most recent call first): /home/poc/opencv_contrib-3.4.3/modules/face/CMakeLists.txt:13 (ocv_download) CMake Warning at /home/poc/opencv_contrib-3.4.3/modules/face/CMakeLists.txt:26 (message): Face: Can't get model file for face alignment.
【ippicv_2017u3_lnx_intel64_general_20180518.tgz下载问题】 /home/poc/opencv-3.4.3/3rdparty/ippicv/ippicv.cmake 位置 https://github.com/opencv/opencv_3rdparty/blob/ippicv/master_20180518/ippicv/ippicv_2017u3_lnx_intel64_general_20180518.tgz
将"https://raw.githubusercontent.com/opencv/opencv_3rdparty/${IPPICV_COMMIT}/ippicv/" "file:///home/lc/download/" #(仅供参考,根据自己的路径填写) https://blog.csdn.net/u010739369/article/details/79966263
linux下 "file:///home/lix/tools/opencv343_vs2015_x64gpu/"
windows下 "file://d:/lix/tools/opencv343_vs2015_x64gpu/"
【opencv 模型文件 或第三方库】 https://github.com/opencv/opencv_3rdparty/branches/all
【】 https://blog.csdn.net/wuyanmin1995/article/details/81060991 #Download failed: 1;"unsupported protocol"
Perhaps you should add the directory containing `opencv.pc' to the PKG_CONFIG_PATH environment variable
cp /usr/local/lib/pkgconfig/opencv.pc /usr/lib/pkgconfig or ln -s
【官方指导】 https://docs.opencv.org/3.4.3/d7/d9f/tutorial_linux_install.html
【关于旋转】 用windows右键旋转图片90度至正常摆放角度,opencv读出没有问题,但通过lable读出依旧是之前的
result: libpng warning: iCCP: known incorrect sRGB profile result: libpng warning: iCCP: cHRM chunk does not match sRGB
python cv2 cp ./lib/cv2.so /usr/lib/python2.7/site-packages/ cp ./modules/python/src2/cv.py /usr/lib/python2.7/site-packages/
[lix@test darknet-master_v2]$ ll /usr/local/lib64/pkgconfig/opencv.pc
-rw-r--r--. 1 root root 1155 Jan 3 2019 /usr/local/lib64/pkgconfig/opencv.pc
[lix@test darknet-master_v2]$ vim /usr/local/lib64/pkgconfig/opencv.pc
[lix@test darknet-master_v2]$ pkg-config --libs opencv
Package opencv was not found in the pkg-config search path.
Perhaps you should add the directory containing opencv.pc' to the PKG_CONFIG_PATH environment variable No package 'opencv' found [lix@test darknet-master_v2]$ export PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig/opencv.pc:$PKG_CONFIG_PATH [lix@test darknet-master_v2]$ pkg-config --libs opencv Package opencv was not found in the pkg-config search path. Perhaps you should add the directory containing
opencv.pc'
to the PKG_CONFIG_PATH environment variable
No package 'opencv' found
[lix@test darknet-master_v2]$ export PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig/:$PKG_CONFIG_PATH
[lix@test darknet-master_v2]$ pkg-config --libs opencv
-L/usr/local/lib64 -lopencv_stitching -lopencv_superres -lopencv_videostab -lopencv_aruco -lopencv_bgsegm -lopencv_bioinspired -lopencv_ccalib -lopencv_dnn_objdetect -lopencv_dpm -lopencv_face -lopencv_photo -lopencv_freetype -lopencv_fuzzy -lopencv_hfs -lopencv_img_hash -lopencv_line_descriptor -lopencv_optflow -lopencv_reg -lopencv_rgbd -lopencv_saliency -lopencv_stereo -lopencv_structured_light -lopencv_phase_unwrapping -lopencv_surface_matching -lopencv_tracking -lopencv_datasets -lopencv_text -lopencv_dnn -lopencv_plot -lopencv_xfeatures2d -lopencv_shape -lopencv_video -lopencv_ml -lopencv_ximgproc -lopencv_calib3d -lopencv_features2d -lopencv_highgui -lopencv_videoio -lopencv_flann -lopencv_xobjdetect -lopencv_imgcodecs -lopencv_objdetect -lopencv_xphoto -lopencv_imgproc -lopencv_core
pip install opencv-python-3.4.3
【windows下 opencv cuda编译】 注意cmake中算力的配置
【python】 pip3 install opencv-python import cv2 print( cv2.version ) 要用 pip 安装指定版本的 Python 包,只需通过 == 操作符 指定 pip install opencv-python==2.8.7 pip install pyinstaller
pyinstaller -F -w demo.py
python + c++ opencv 编译 cmake -D CMAKE_BUILD_TYPE=RELEASE \ -D CMAKE_INSTALL_PREFIX=/home/lix/darknet-ocr/opencv-4.0.1/build/install \ -D BUILD_opencv_python2=OFF \ -D BUILD_opencv_python3=ON \ -D BUILD_JPEG=ON \ -D BUILD_PNG=ON \ -D BUILD_ZLIB=ON \ -D WITH_FFMPEG=ON \ -D WITH_V4L=ON \ -D BUILD_opencv_java=OFF \ -D WITH_CUDA=OFF \ -D WITH_CUFFT=OFF \ -D WITH_CUBLAS=OFF \ -D WITH_NVCUVID=OFF \ -D BUILD_CUDA_STUBS=OFF \ -D PYTHON3_EXCUTABLE=/usr/bin/python3.6 \ -D PYTHON3_INCLUDE_DIR=/usr/include/python3.6m \ -D PYTHON3_LIBRARY=/usr/lib64/libpython3.6m.so \ -D PYTHON_NUMPY_PATH=/usr/local/python3.6.5/lib/python3.6/site-packages/numpy ..
yum install libgstreamer
rpm -qa |grep gstreamer
yum search gstreamer
yum search gstreamer-ffmpeg
Uninstalling "/usr/local/lib64/libopencv_highgui.so"
-- File "/usr/local/lib64/libopencv_highgui.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/highgui.hpp"
-- File "/usr/local/include/opencv4/opencv2/highgui.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/highgui/highgui.hpp"
-- File "/usr/local/include/opencv4/opencv2/highgui/highgui.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/highgui/highgui_c.h"
-- File "/usr/local/include/opencv4/opencv2/highgui/highgui_c.h" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_bioinspired.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_bioinspired.so.4.0"
-- File "/usr/local/lib64/libopencv_bioinspired.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_bioinspired.so"
-- File "/usr/local/lib64/libopencv_bioinspired.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/bioinspired.hpp"
-- File "/usr/local/include/opencv4/opencv2/bioinspired.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/bioinspired/bioinspired.hpp"
-- File "/usr/local/include/opencv4/opencv2/bioinspired/bioinspired.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/bioinspired/retina.hpp"
-- File "/usr/local/include/opencv4/opencv2/bioinspired/retina.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/bioinspired/retinafasttonemapping.hpp"
-- File "/usr/local/include/opencv4/opencv2/bioinspired/retinafasttonemapping.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/bioinspired/transientareassegmentationmodule.hpp"
-- File "/usr/local/include/opencv4/opencv2/bioinspired/transientareassegmentationmodule.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_dnn_objdetect.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_dnn_objdetect.so.4.0"
-- File "/usr/local/lib64/libopencv_dnn_objdetect.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_dnn_objdetect.so"
-- File "/usr/local/lib64/libopencv_dnn_objdetect.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/core_detect.hpp"
-- File "/usr/local/include/opencv4/opencv2/core_detect.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_features2d.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_features2d.so.4.0"
-- File "/usr/local/lib64/libopencv_features2d.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_features2d.so"
-- File "/usr/local/lib64/libopencv_features2d.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/features2d.hpp"
-- File "/usr/local/include/opencv4/opencv2/features2d.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/features2d/features2d.hpp"
-- File "/usr/local/include/opencv4/opencv2/features2d/features2d.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/features2d/hal/interface.h"
-- File "/usr/local/include/opencv4/opencv2/features2d/hal/interface.h" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_line_descriptor.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_line_descriptor.so.4.0"
-- File "/usr/local/lib64/libopencv_line_descriptor.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_line_descriptor.so"
-- File "/usr/local/lib64/libopencv_line_descriptor.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/line_descriptor.hpp"
-- File "/usr/local/include/opencv4/opencv2/line_descriptor.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/line_descriptor/descriptor.hpp"
-- File "/usr/local/include/opencv4/opencv2/line_descriptor/descriptor.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_saliency.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_saliency.so.4.0"
-- File "/usr/local/lib64/libopencv_saliency.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_saliency.so"
-- File "/usr/local/lib64/libopencv_saliency.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/saliency.hpp"
-- File "/usr/local/include/opencv4/opencv2/saliency.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/saliency/saliencyBaseClasses.hpp"
-- File "/usr/local/include/opencv4/opencv2/saliency/saliencyBaseClasses.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/saliency/saliencySpecializedClasses.hpp"
-- File "/usr/local/include/opencv4/opencv2/saliency/saliencySpecializedClasses.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_text.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_text.so.4.0"
-- File "/usr/local/lib64/libopencv_text.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_text.so"
-- File "/usr/local/lib64/libopencv_text.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/text.hpp"
-- File "/usr/local/include/opencv4/opencv2/text.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/text/erfilter.hpp"
-- File "/usr/local/include/opencv4/opencv2/text/erfilter.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/text/ocr.hpp"
-- File "/usr/local/include/opencv4/opencv2/text/ocr.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/text/textDetector.hpp"
-- File "/usr/local/include/opencv4/opencv2/text/textDetector.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_calib3d.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_calib3d.so.4.0"
-- File "/usr/local/lib64/libopencv_calib3d.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_calib3d.so"
-- File "/usr/local/lib64/libopencv_calib3d.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/calib3d.hpp"
-- File "/usr/local/include/opencv4/opencv2/calib3d.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/calib3d/calib3d.hpp"
-- File "/usr/local/include/opencv4/opencv2/calib3d/calib3d.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/calib3d/calib3d_c.h"
-- File "/usr/local/include/opencv4/opencv2/calib3d/calib3d_c.h" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_ccalib.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_ccalib.so.4.0"
-- File "/usr/local/lib64/libopencv_ccalib.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_ccalib.so"
-- File "/usr/local/lib64/libopencv_ccalib.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ccalib.hpp"
-- File "/usr/local/include/opencv4/opencv2/ccalib.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ccalib/multicalib.hpp"
-- File "/usr/local/include/opencv4/opencv2/ccalib/multicalib.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ccalib/omnidir.hpp"
-- File "/usr/local/include/opencv4/opencv2/ccalib/omnidir.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ccalib/randpattern.hpp"
-- File "/usr/local/include/opencv4/opencv2/ccalib/randpattern.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudafeatures2d.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_cudafeatures2d.so.4.0"
-- File "/usr/local/lib64/libopencv_cudafeatures2d.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudafeatures2d.so"
-- File "/usr/local/lib64/libopencv_cudafeatures2d.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudafeatures2d.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudafeatures2d.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudastereo.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_cudastereo.so.4.0"
-- File "/usr/local/lib64/libopencv_cudastereo.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudastereo.so"
-- File "/usr/local/lib64/libopencv_cudastereo.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudastereo.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudastereo.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_datasets.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_datasets.so.4.0"
-- File "/usr/local/lib64/libopencv_datasets.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_datasets.so"
-- File "/usr/local/lib64/libopencv_datasets.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/ar_hmdb.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/ar_hmdb.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/ar_sports.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/ar_sports.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/dataset.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/dataset.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/fr_adience.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/fr_adience.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/fr_lfw.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/fr_lfw.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/gr_chalearn.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/gr_chalearn.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/gr_skig.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/gr_skig.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/hpe_humaneva.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/hpe_humaneva.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/hpe_parse.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/hpe_parse.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/ir_affine.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/ir_affine.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/ir_robot.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/ir_robot.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/is_bsds.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/is_bsds.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/is_weizmann.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/is_weizmann.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/msm_epfl.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/msm_epfl.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/msm_middlebury.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/msm_middlebury.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/or_imagenet.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/or_imagenet.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/or_mnist.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/or_mnist.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/or_pascal.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/or_pascal.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/or_sun.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/or_sun.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/pd_caltech.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/pd_caltech.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/pd_inria.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/pd_inria.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/slam_kitti.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/slam_kitti.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/slam_tumindoor.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/slam_tumindoor.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/tr_chars.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/tr_chars.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/tr_icdar.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/tr_icdar.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/tr_svt.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/tr_svt.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/track_alov.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/track_alov.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/track_vot.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/track_vot.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/datasets/util.hpp"
-- File "/usr/local/include/opencv4/opencv2/datasets/util.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_objdetect.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_objdetect.so.4.0"
-- File "/usr/local/lib64/libopencv_objdetect.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_objdetect.so"
-- File "/usr/local/lib64/libopencv_objdetect.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/objdetect.hpp"
-- File "/usr/local/include/opencv4/opencv2/objdetect.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp"
-- File "/usr/local/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/objdetect/objdetect.hpp"
-- File "/usr/local/include/opencv4/opencv2/objdetect/objdetect.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_rgbd.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_rgbd.so.4.0"
-- File "/usr/local/lib64/libopencv_rgbd.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_rgbd.so"
-- File "/usr/local/lib64/libopencv_rgbd.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/rgbd.hpp"
-- File "/usr/local/include/opencv4/opencv2/rgbd.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/rgbd/depth.hpp"
-- File "/usr/local/include/opencv4/opencv2/rgbd/depth.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/rgbd/kinfu.hpp"
-- File "/usr/local/include/opencv4/opencv2/rgbd/kinfu.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/rgbd/linemod.hpp"
-- File "/usr/local/include/opencv4/opencv2/rgbd/linemod.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_shape.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_shape.so.4.0"
-- File "/usr/local/lib64/libopencv_shape.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_shape.so"
-- File "/usr/local/lib64/libopencv_shape.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/shape.hpp"
-- File "/usr/local/include/opencv4/opencv2/shape.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/shape/emdL1.hpp"
-- File "/usr/local/include/opencv4/opencv2/shape/emdL1.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/shape/hist_cost.hpp"
-- File "/usr/local/include/opencv4/opencv2/shape/hist_cost.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/shape/shape.hpp"
-- File "/usr/local/include/opencv4/opencv2/shape/shape.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/shape/shape_distance.hpp"
-- File "/usr/local/include/opencv4/opencv2/shape/shape_distance.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/shape/shape_transformer.hpp"
-- File "/usr/local/include/opencv4/opencv2/shape/shape_transformer.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_stereo.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_stereo.so.4.0"
-- File "/usr/local/lib64/libopencv_stereo.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_stereo.so"
-- File "/usr/local/lib64/libopencv_stereo.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stereo.hpp"
-- File "/usr/local/include/opencv4/opencv2/stereo.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stereo/descriptor.hpp"
-- File "/usr/local/include/opencv4/opencv2/stereo/descriptor.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stereo/matching.hpp"
-- File "/usr/local/include/opencv4/opencv2/stereo/matching.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stereo/stereo.hpp"
-- File "/usr/local/include/opencv4/opencv2/stereo/stereo.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_structured_light.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_structured_light.so.4.0"
-- File "/usr/local/lib64/libopencv_structured_light.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_structured_light.so"
-- File "/usr/local/lib64/libopencv_structured_light.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/structured_light.hpp"
-- File "/usr/local/include/opencv4/opencv2/structured_light.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/structured_light/graycodepattern.hpp"
-- File "/usr/local/include/opencv4/opencv2/structured_light/graycodepattern.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/structured_light/sinusoidalpattern.hpp"
-- File "/usr/local/include/opencv4/opencv2/structured_light/sinusoidalpattern.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/structured_light/structured_light.hpp"
-- File "/usr/local/include/opencv4/opencv2/structured_light/structured_light.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_video.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_video.so.4.0"
-- File "/usr/local/lib64/libopencv_video.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_video.so"
-- File "/usr/local/lib64/libopencv_video.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/video.hpp"
-- File "/usr/local/include/opencv4/opencv2/video.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/video/background_segm.hpp"
-- File "/usr/local/include/opencv4/opencv2/video/background_segm.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/video/tracking.hpp"
-- File "/usr/local/include/opencv4/opencv2/video/tracking.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/video/video.hpp"
-- File "/usr/local/include/opencv4/opencv2/video/video.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/video/legacy/constants_c.h"
-- File "/usr/local/include/opencv4/opencv2/video/legacy/constants_c.h" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_xfeatures2d.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_xfeatures2d.so.4.0"
-- File "/usr/local/lib64/libopencv_xfeatures2d.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_xfeatures2d.so"
-- File "/usr/local/lib64/libopencv_xfeatures2d.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/xfeatures2d.hpp"
-- File "/usr/local/include/opencv4/opencv2/xfeatures2d.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/xfeatures2d/cuda.hpp"
-- File "/usr/local/include/opencv4/opencv2/xfeatures2d/cuda.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/xfeatures2d/nonfree.hpp"
-- File "/usr/local/include/opencv4/opencv2/xfeatures2d/nonfree.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_ximgproc.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_ximgproc.so.4.0"
-- File "/usr/local/lib64/libopencv_ximgproc.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_ximgproc.so"
-- File "/usr/local/lib64/libopencv_ximgproc.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/brightedges.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/brightedges.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/color_match.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/color_match.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/deriche_filter.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/deriche_filter.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/disparity_filter.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/disparity_filter.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/edge_filter.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/edge_filter.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/edgeboxes.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/edgeboxes.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/edgepreserving_filter.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/edgepreserving_filter.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/estimated_covariance.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/estimated_covariance.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/fast_hough_transform.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/fast_hough_transform.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/fast_line_detector.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/fast_line_detector.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/fourier_descriptors.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/fourier_descriptors.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/lsc.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/lsc.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/paillou_filter.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/paillou_filter.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/peilin.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/peilin.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/ridgefilter.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/ridgefilter.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/run_length_morphology.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/run_length_morphology.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/seeds.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/seeds.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/segmentation.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/segmentation.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/slic.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/slic.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/sparse_match_interpolator.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/sparse_match_interpolator.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/structured_edge_detection.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/structured_edge_detection.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/ximgproc/weighted_median_filter.hpp"
-- File "/usr/local/include/opencv4/opencv2/ximgproc/weighted_median_filter.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_xobjdetect.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_xobjdetect.so.4.0"
-- File "/usr/local/lib64/libopencv_xobjdetect.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_xobjdetect.so"
-- File "/usr/local/lib64/libopencv_xobjdetect.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/xobjdetect.hpp"
-- File "/usr/local/include/opencv4/opencv2/xobjdetect.hpp" does not exist.
-- Uninstalling "/usr/local/bin/opencv_waldboost_detector"
-- Uninstalling "/usr/local/lib64/libopencv_aruco.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_aruco.so.4.0"
-- File "/usr/local/lib64/libopencv_aruco.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_aruco.so"
-- File "/usr/local/lib64/libopencv_aruco.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/aruco.hpp"
-- File "/usr/local/include/opencv4/opencv2/aruco.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/aruco/charuco.hpp"
-- File "/usr/local/include/opencv4/opencv2/aruco/charuco.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/aruco/dictionary.hpp"
-- File "/usr/local/include/opencv4/opencv2/aruco/dictionary.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_bgsegm.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_bgsegm.so.4.0"
-- File "/usr/local/lib64/libopencv_bgsegm.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_bgsegm.so"
-- File "/usr/local/lib64/libopencv_bgsegm.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/bgsegm.hpp"
-- File "/usr/local/include/opencv4/opencv2/bgsegm.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudabgsegm.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_cudabgsegm.so.4.0"
-- File "/usr/local/lib64/libopencv_cudabgsegm.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudabgsegm.so"
-- File "/usr/local/lib64/libopencv_cudabgsegm.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudabgsegm.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudabgsegm.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudalegacy.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_cudalegacy.so.4.0"
-- File "/usr/local/lib64/libopencv_cudalegacy.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudalegacy.so"
-- File "/usr/local/lib64/libopencv_cudalegacy.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudalegacy.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudalegacy.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudalegacy/NCV.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudalegacy/NCV.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudalegacy/NCVBroxOpticalFlow.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudalegacy/NCVBroxOpticalFlow.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudalegacy/NCVHaarObjectDetection.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudalegacy/NCVHaarObjectDetection.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudalegacy/NCVPyramid.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudalegacy/NCVPyramid.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudalegacy/NPP_staging.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudalegacy/NPP_staging.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudaobjdetect.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_cudaobjdetect.so.4.0"
-- File "/usr/local/lib64/libopencv_cudaobjdetect.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudaobjdetect.so"
-- File "/usr/local/lib64/libopencv_cudaobjdetect.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudaobjdetect.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudaobjdetect.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_dpm.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_dpm.so.4.0"
-- File "/usr/local/lib64/libopencv_dpm.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_dpm.so"
-- File "/usr/local/lib64/libopencv_dpm.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/dpm.hpp"
-- File "/usr/local/include/opencv4/opencv2/dpm.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_face.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_face.so.4.0"
-- File "/usr/local/lib64/libopencv_face.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_face.so"
-- File "/usr/local/lib64/libopencv_face.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face.hpp"
-- File "/usr/local/include/opencv4/opencv2/face.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/bif.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/bif.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/face_alignment.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/face_alignment.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/facemark.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/facemark.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/facemarkAAM.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/facemarkAAM.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/facemarkLBF.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/facemarkLBF.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/facemark_train.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/facemark_train.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/facerec.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/facerec.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/mace.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/mace.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/face/predict_collector.hpp"
-- File "/usr/local/include/opencv4/opencv2/face/predict_collector.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_optflow.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_optflow.so.4.0"
-- File "/usr/local/lib64/libopencv_optflow.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_optflow.so"
-- File "/usr/local/lib64/libopencv_optflow.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/optflow.hpp"
-- File "/usr/local/include/opencv4/opencv2/optflow.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/optflow/motempl.hpp"
-- File "/usr/local/include/opencv4/opencv2/optflow/motempl.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/optflow/pcaflow.hpp"
-- File "/usr/local/include/opencv4/opencv2/optflow/pcaflow.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/optflow/sparse_matching_gpc.hpp"
-- File "/usr/local/include/opencv4/opencv2/optflow/sparse_matching_gpc.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_stitching.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_stitching.so.4.0"
-- File "/usr/local/lib64/libopencv_stitching.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_stitching.so"
-- File "/usr/local/lib64/libopencv_stitching.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/warpers.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/warpers.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/autocalib.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/autocalib.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/blenders.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/blenders.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/camera.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/camera.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/matchers.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/matchers.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/seam_finders.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/seam_finders.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/timelapsers.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/timelapsers.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/util.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/util.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/util_inl.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/util_inl.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/warpers.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/warpers.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp"
-- File "/usr/local/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_tracking.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_tracking.so.4.0"
-- File "/usr/local/lib64/libopencv_tracking.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_tracking.so"
-- File "/usr/local/lib64/libopencv_tracking.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/tracking.hpp"
-- File "/usr/local/include/opencv4/opencv2/tracking.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/tracking/feature.hpp"
-- File "/usr/local/include/opencv4/opencv2/tracking/feature.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/tracking/kalman_filters.hpp"
-- File "/usr/local/include/opencv4/opencv2/tracking/kalman_filters.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/tracking/onlineBoosting.hpp"
-- File "/usr/local/include/opencv4/opencv2/tracking/onlineBoosting.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/tracking/onlineMIL.hpp"
-- File "/usr/local/include/opencv4/opencv2/tracking/onlineMIL.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/tracking/tldDataset.hpp"
-- File "/usr/local/include/opencv4/opencv2/tracking/tldDataset.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/tracking/tracker.hpp"
-- File "/usr/local/include/opencv4/opencv2/tracking/tracker.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/tracking/tracking.hpp"
-- File "/usr/local/include/opencv4/opencv2/tracking/tracking.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudaoptflow.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_cudaoptflow.so.4.0"
-- File "/usr/local/lib64/libopencv_cudaoptflow.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_cudaoptflow.so"
-- File "/usr/local/lib64/libopencv_cudaoptflow.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/cudaoptflow.hpp"
-- File "/usr/local/include/opencv4/opencv2/cudaoptflow.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_superres.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_superres.so.4.0"
-- File "/usr/local/lib64/libopencv_superres.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_superres.so"
-- File "/usr/local/lib64/libopencv_superres.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/superres.hpp"
-- File "/usr/local/include/opencv4/opencv2/superres.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/superres/optical_flow.hpp"
-- File "/usr/local/include/opencv4/opencv2/superres/optical_flow.hpp" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_videostab.so.4.0.1"
-- Uninstalling "/usr/local/lib64/libopencv_videostab.so.4.0"
-- File "/usr/local/lib64/libopencv_videostab.so.4.0" does not exist.
-- Uninstalling "/usr/local/lib64/libopencv_videostab.so"
-- File "/usr/local/lib64/libopencv_videostab.so" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/deblurring.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/deblurring.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/fast_marching.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/fast_marching.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/fast_marching_inl.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/fast_marching_inl.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/frame_source.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/frame_source.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/global_motion.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/global_motion.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/inpainting.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/inpainting.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/log.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/log.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/motion_core.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/motion_core.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/motion_stabilizing.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/motion_stabilizing.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/optical_flow.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/optical_flow.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/outlier_rejection.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/outlier_rejection.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/ring_buffer.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/ring_buffer.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/stabilizer.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/stabilizer.hpp" does not exist.
-- Uninstalling "/usr/local/include/opencv4/opencv2/videostab/wobble_suppression.hpp"
-- File "/usr/local/include/opencv4/opencv2/videostab/wobble_suppression.hpp" does not exist.
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_eye.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_eye_tree_eyeglasses.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_frontalcatface.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_frontalcatface_extended.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_frontalface_alt.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_frontalface_alt2.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_frontalface_alt_tree.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_frontalface_default.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_fullbody.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_lefteye_2splits.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_licence_plate_rus_16stages.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_lowerbody.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_profileface.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_righteye_2splits.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_russian_plate_number.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_smile.xml"
-- Uninstalling "/usr/local/share/opencv4/haarcascades/haarcascade_upperbody.xml"
-- Uninstalling "/usr/local/share/opencv4/lbpcascades/lbpcascade_frontalcatface.xml"
-- Uninstalling "/usr/local/share/opencv4/lbpcascades/lbpcascade_frontalface.xml"
-- Uninstalling "/usr/local/share/opencv4/lbpcascades/lbpcascade_frontalface_improved.xml"
-- Uninstalling "/usr/local/share/opencv4/lbpcascades/lbpcascade_profileface.xml"
-- Uninstalling "/usr/local/share/opencv4/lbpcascades/lbpcascade_silverware.xml"
-- Uninstalling "/usr/local/bin/opencv_annotation"
-- Uninstalling "/usr/local/bin/opencv_visualisation"
-- Uninstalling "/usr/local/bin/opencv_interactive-calibration"
-- Uninstalling "/usr/local/bin/opencv_version"
Built target uninstall