windows下安装opencv(c++版本),并配置到Qt中

1.软件环境
OpenCV:https://opencv.org/releases/
Qt:https://download.qt.io/archive/qt/
CMake:https://cmake.org/download/
Qt Creator: https://download.qt.io/archive/qtcreator/

注:大家选择合适的版本安装即可,Qt和Qt creator的安装配置,可以参考我的博客:Win10安装Qt5和Qt Creator
这篇主要讲opencv的安装

2.下载安装CMake
a.选择合适的版本,我选用的是 3.20.1
windows下安装opencv(c++版本),并配置到Qt中_第1张图片
b.可视化方式进行安装
windows下安装opencv(c++版本),并配置到Qt中_第2张图片

注:记得安装时,勾选把cmake安装路径加入到系统变量路径中
笔者把cmake安装在了E盘,所以cmake的可执行文件路径为:E:\Cmake\bin

3.安装opencv版本

a.下载合适的opencv版本,我选用的是opencv 4.5.2
windows下安装opencv(c++版本),并配置到Qt中_第3张图片

注:图中圈出的开发文档很关键,遇到不太熟悉的库函数,自行查阅

b.将文件进行解压

笔者放在了E:\opencv4.5.2
windows下安装opencv(c++版本),并配置到Qt中_第4张图片
解压后的文件目录为:
windows下安装opencv(c++版本),并配置到Qt中_第5张图片
c.找到qt安装目录下tools下的mingw,将其加入系统变量中。
笔者的是:E:\Qt5.12.9\Tools\mingw730_64\bin
,添加到系统变量path中
在这里插入图片描述

d.编译opencv

打开cmake的可执行文件,可以通过前面安装cmake时生成的桌面快捷方式,也可以进入到进入E:\Cmake\bin,点击cmake-gui.exe

之后进入如图所示的操作
windows下安装opencv(c++版本),并配置到Qt中_第6张图片
windows下安装opencv(c++版本),并配置到Qt中_第7张图片
点击next,
c选择,路径:E:\Qt5.12.9\Tools\mingw730_64\bin\gcc.exe
c++选择E:\Qt5.12.9\Tools\mingw730_64\bin\g++.exe
windows下安装opencv(c++版本),并配置到Qt中_第8张图片
正在生成
windows下安装opencv(c++版本),并配置到Qt中_第9张图片
编译后,出现了一堆红色的东西,根据提示“Press Configure to update and display new value in red, then press Genarate to genarate selected build files.” 再次点击“Configure”按钮,直到红色消失。

windows下安装opencv(c++版本),并配置到Qt中_第10张图片
再次点击“Configure”按钮,直到红色消失。

windows下安装opencv(c++版本),并配置到Qt中_第11张图片
点击Generate
Generate完成之后,关闭Cmake即可,此时进入之前我们新建的文件夹E:\opencv4.5.2\opencv\bianyi
如下图:
windows下安装opencv(c++版本),并配置到Qt中_第12张图片
然后执行mingw
(前面我们已经把它加入到系统变量中了,在E:\Qt5.12.9\Tools\mingw730_64\bin下面有mingw32-make.exe)

正在编译
windows下安装opencv(c++版本),并配置到Qt中_第13张图片
因编译速度较慢,可以使用多核,此时mingw32-make命令可改为mingw32-make -j 8
8是为了让CPU进行多任务处理,可以通过“此电脑/计算机—>管理—>设别管理器—>处理器”来查看几核。

这里我把整个编译过程作为附录1,放在文末,以便查阅,以资缺漏。

编译完成,安装opencv,将安装过程附在附录2中
安装命令: mingw32-make.exe install
安装完成后,把E:\opencv4.5.2\opencv\bianyi\bin添加到系统变量中

4.在qt中使用opencv

打开qt creator,创建一个项目
windows下安装opencv(c++版本),并配置到Qt中_第14张图片
在.pro项目文件中,导入opencv库

INCLUDEPATH += E:\opencv4.5.2\opencv\bianyi\install\include
LIBS += E:\opencv4.5.2\opencv\bianyi\lib\libopencv_*.a

如图所示
windows下安装opencv(c++版本),并配置到Qt中_第15张图片
在mainwindow.cpp中红框位置加上如下代码

    #include 
    #include 
    #include 
    using namespace cv;
    
    

    Mat image=imread("E:\\test.jpg",1);
    namedWindow( "Display window", WINDOW_AUTOSIZE );
    imshow( "Display window",image );

windows下安装opencv(c++版本),并配置到Qt中_第16张图片
ctrl+s 保存,红色提示小时。点击运行

windows下安装opencv(c++版本),并配置到Qt中_第17张图片
运行,显示出窗体和图片
windows下安装opencv(c++版本),并配置到Qt中_第18张图片

附录1

在这里插入代码片

附录2

E:\opencv4.5.2\opencv\bianyi>
E:\opencv4.5.2\opencv\bianyi>mingw32-make.exe install
Consolidate compiler generated dependencies of target libopenjp2
[  1%] Built target libopenjp2
[  1%] Built target opencv_videoio_plugins
Consolidate compiler generated dependencies of target zlib
[  2%] Built target zlib
Consolidate compiler generated dependencies of target opencv_core
[  9%] Built target opencv_core
Consolidate compiler generated dependencies of target opencv_imgproc
[ 15%] Built target opencv_imgproc
Consolidate compiler generated dependencies of target libjpeg-turbo
[ 18%] Built target libjpeg-turbo
Consolidate compiler generated dependencies of target libwebp
[ 25%] Built target libwebp
Consolidate compiler generated dependencies of target libtiff
[ 28%] Built target libtiff
Consolidate compiler generated dependencies of target libpng
[ 29%] Built target libpng
Consolidate compiler generated dependencies of target IlmImf
[ 35%] Built target IlmImf
Consolidate compiler generated dependencies of target opencv_imgcodecs
[ 36%] Built target opencv_imgcodecs
Consolidate compiler generated dependencies of target opencv_videoio
[ 37%] Built target opencv_videoio
Consolidate compiler generated dependencies of target opencv_highgui
[ 38%] Built target opencv_highgui
Consolidate compiler generated dependencies of target opencv_ts
[ 38%] Built target opencv_ts
Consolidate compiler generated dependencies of target opencv_test_core
[ 41%] Built target opencv_test_core
Consolidate compiler generated dependencies of target opencv_perf_core
[ 43%] Built target opencv_perf_core
Consolidate compiler generated dependencies of target opencv_flann
[ 43%] Built target opencv_flann
Consolidate compiler generated dependencies of target opencv_test_flann
[ 43%] Built target opencv_test_flann
Consolidate compiler generated dependencies of target opencv_test_imgproc
[ 47%] Built target opencv_test_imgproc
Consolidate compiler generated dependencies of target opencv_perf_imgproc
[ 49%] Built target opencv_perf_imgproc
Consolidate compiler generated dependencies of target opencv_ml
[ 50%] Built target opencv_ml
Consolidate compiler generated dependencies of target opencv_test_ml
[ 51%] Built target opencv_test_ml
Consolidate compiler generated dependencies of target opencv_photo
[ 52%] Built target opencv_photo
Consolidate compiler generated dependencies of target opencv_test_photo
[ 53%] Built target opencv_test_photo
Consolidate compiler generated dependencies of target opencv_perf_photo
[ 53%] Built target opencv_perf_photo
Consolidate compiler generated dependencies of target libprotobuf
[ 58%] Built target libprotobuf
Consolidate compiler generated dependencies of target opencv_dnn
[ 65%] Built target opencv_dnn
Consolidate compiler generated dependencies of target opencv_test_dnn
[ 66%] Built target opencv_test_dnn
Consolidate compiler generated dependencies of target opencv_perf_dnn
[ 66%] Built target opencv_perf_dnn
Consolidate compiler generated dependencies of target opencv_features2d
[ 68%] Built target opencv_features2d
Consolidate compiler generated dependencies of target opencv_test_features2d
[ 69%] Built target opencv_test_features2d
Consolidate compiler generated dependencies of target opencv_perf_features2d
[ 70%] Built target opencv_perf_features2d
Consolidate compiler generated dependencies of target opencv_test_imgcodecs
[ 70%] Built target opencv_test_imgcodecs
Consolidate compiler generated dependencies of target opencv_perf_imgcodecs
[ 70%] Built target opencv_perf_imgcodecs
Consolidate compiler generated dependencies of target opencv_test_videoio
[ 71%] Built target opencv_test_videoio
Consolidate compiler generated dependencies of target opencv_perf_videoio
[ 72%] Built target opencv_perf_videoio
Consolidate compiler generated dependencies of target opencv_calib3d
[ 75%] Built target opencv_calib3d
Consolidate compiler generated dependencies of target opencv_test_calib3d
[ 77%] Built target opencv_test_calib3d
Consolidate compiler generated dependencies of target opencv_perf_calib3d
[ 78%] Built target opencv_perf_calib3d
Consolidate compiler generated dependencies of target opencv_test_highgui
[ 79%] Built target opencv_test_highgui
Consolidate compiler generated dependencies of target quirc
[ 80%] Built target quirc
Consolidate compiler generated dependencies of target opencv_objdetect
[ 80%] Built target opencv_objdetect
Consolidate compiler generated dependencies of target opencv_test_objdetect
[ 80%] Built target opencv_test_objdetect
Consolidate compiler generated dependencies of target opencv_perf_objdetect
[ 81%] Built target opencv_perf_objdetect
Consolidate compiler generated dependencies of target opencv_stitching
[ 82%] Built target opencv_stitching
Consolidate compiler generated dependencies of target opencv_test_stitching
[ 82%] Built target opencv_test_stitching
Consolidate compiler generated dependencies of target opencv_perf_stitching
[ 82%] Built target opencv_perf_stitching
Consolidate compiler generated dependencies of target opencv_video
[ 83%] Built target opencv_video
Consolidate compiler generated dependencies of target opencv_test_video
[ 84%] Built target opencv_test_video
Consolidate compiler generated dependencies of target opencv_perf_video
[ 85%] Built target opencv_perf_video
Consolidate compiler generated dependencies of target ade
[ 86%] Built target ade
Consolidate compiler generated dependencies of target opencv_gapi
[ 91%] Built target opencv_gapi
Consolidate compiler generated dependencies of target opencv_test_gapi
[ 96%] Built target opencv_test_gapi
Consolidate compiler generated dependencies of target opencv_perf_gapi
[ 97%] Built target opencv_perf_gapi
Consolidate compiler generated dependencies of target opencv_annotation
[ 97%] Built target opencv_annotation
Consolidate compiler generated dependencies of target opencv_visualisation
[ 97%] Built target opencv_visualisation
Consolidate compiler generated dependencies of target opencv_interactive-calibration
[ 97%] Built target opencv_interactive-calibration
Consolidate compiler generated dependencies of target opencv_version
[ 97%] Built target opencv_version
Consolidate compiler generated dependencies of target opencv_version_win32
[ 98%] Built target opencv_version_win32
Consolidate compiler generated dependencies of target opencv_model_diagnostics
[100%] Built target opencv_model_diagnostics
Install the project...
-- Install configuration: "Release"
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/opencl-headers-LICENSE.txt
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/cvconfig.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/opencv_modules.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/OpenCVModules.cmake
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/OpenCVModules-release.cmake
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/OpenCVConfig-version.cmake
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/OpenCVConfig.cmake
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/./OpenCVConfig-version.cmake
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/./OpenCVConfig.cmake
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/./LICENSE
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/./setup_vars_opencv4.cmd
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/zlib-README
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/libjpeg-turbo-README.md
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/libjpeg-turbo-LICENSE.md
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/libjpeg-turbo-README.ijg
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/libtiff-COPYRIGHT
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/libopenjp2-README.md
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/libopenjp2-LICENSE
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/libpng-LICENSE
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/libpng-README
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/openexr-LICENSE
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/openexr-AUTHORS.ilmbase
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/openexr-AUTHORS.openexr
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/protobuf-LICENSE
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/protobuf-README.md
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/quirc-LICENSE
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/opencv.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/ade-LICENSE
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/ffmpeg-license.txt
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/ffmpeg-readme.txt
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_core452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_core452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/affine.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/async.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/base.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/bindings_utils.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/bufferpool.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/check.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/core_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda.inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/block.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/border_interpolate.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/color.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/common.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/datamov_utils.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/detail/color_detail.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/detail/reduce.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/detail/reduce_key_val.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/detail/transform_detail.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/detail/type_traits_detail.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/detail/vec_distance_detail.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/dynamic_smem.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/emulation.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/filters.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/funcattrib.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/functional.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/limits.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/reduce.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/saturate_cast.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/scan.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/simd_functions.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/transform.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/type_traits.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/utility.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/vec_distance.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/vec_math.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/vec_traits.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/warp.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/warp_reduce.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda/warp_shuffle.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda_stream_accessor.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cuda_types.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cv_cpu_dispatch.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cv_cpu_helper.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cvdef.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cvstd.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cvstd.inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/cvstd_wrapper.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/detail/async_promise.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/detail/exception_ptr.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/directx.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/dualquaternion.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/dualquaternion.inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/eigen.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/fast_math.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/hal.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/interface.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_avx.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_avx512.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_cpp.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_forward.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_msa.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_neon.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_rvv.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_sse.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_sse_em.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_vsx.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/intrin_wasm.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/msa_macros.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/hal/simd_utils.impl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/mat.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/mat.inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/matx.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/neon_utils.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/ocl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/ocl_genbase.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/ocl_defs.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/opencl_info.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/opencl_svm.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_clamdblas.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_clamdfft.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_gl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_svm_20.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/opengl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/operations.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/optim.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/ovx.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/parallel/backend/parallel_for.openmp.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/parallel/backend/parallel_for.tbb.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/parallel/parallel_backend.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/persistence.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/quaternion.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/quaternion.inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/saturate.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/simd_intrinsics.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/softfloat.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/sse_utils.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/traits.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/types.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/types_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utility.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/allocator_stats.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/allocator_stats.impl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/filesystem.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/instrumentation.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/logger.defines.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/logger.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/logtag.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/tls.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/utils/trace.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/va_intel.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/version.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/core/vsx_utils.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/licenses/SoftFloat-COPYING.txt
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_flann452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_flann452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/all_indices.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/allocator.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/any.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/autotuned_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/composite_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/config.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/defines.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/dist.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/dummy.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/dynamic_bitset.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/flann.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/flann_base.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/general.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/ground_truth.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/hdf5.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/heap.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/hierarchical_clustering_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/index_testing.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/kdtree_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/kdtree_single_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/kmeans_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/linear_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/logger.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/lsh_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/lsh_table.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/matrix.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/miniflann.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/nn_index.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/object_factory.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/params.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/random.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/result_set.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/sampling.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/saving.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/simplex_downhill.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/flann/timer.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_imgproc452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_imgproc452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc/bindings.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc/detail/gcgraph.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc/hal/hal.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc/hal/interface.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc/imgproc.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc/imgproc_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc/segmentation.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgproc/types_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_ml452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_ml452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/ml.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/ml/ml.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/ml/ml.inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_photo452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_photo452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/photo.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/photo/cuda.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/photo/legacy/constants_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/photo/photo.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_dnn452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_dnn452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/all_layers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/dict.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/dnn.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/dnn.inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/layer.details.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/layer.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/shape_utils.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/utils/inference_engine.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/dnn/version.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_features2d452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_features2d452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/features2d.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/features2d/features2d.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/features2d/hal/interface.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_imgcodecs452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_imgcodecs452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgcodecs.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgcodecs/imgcodecs.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgcodecs/imgcodecs_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgcodecs/ios.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgcodecs/legacy/constants_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/imgcodecs/macosx.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_videoio452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_videoio452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/videoio.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/videoio/cap_ios.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/videoio/legacy/constants_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/videoio/registry.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/videoio/videoio.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/videoio/videoio_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_calib3d452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_calib3d452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/calib3d.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/calib3d/calib3d.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/calib3d/calib3d_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_highgui452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_highgui452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/highgui.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/highgui/highgui.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/highgui/highgui_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_objdetect452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_objdetect452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/objdetect.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/objdetect/detection_based_tracker.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/objdetect/objdetect.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_stitching452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_stitching452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/autocalib.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/blenders.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/camera.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/exposure_compensate.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/matchers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/motion_estimators.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/seam_finders.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/timelapsers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/util.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/util_inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/warpers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/detail/warpers_inl.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/stitching/warpers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_video452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_video452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/video.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/video/background_segm.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/video/detail/tracking.detail.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/video/legacy/constants_c.h
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/video/tracking.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/video/video.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/lib/libopencv_gapi452.dll.a
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/libopencv_gapi452.dll
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/cpu/core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/cpu/gcpukernel.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/cpu/imgproc.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/cpu/stereo.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/cpu/video.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/fluid/core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/fluid/gfluidbuffer.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/fluid/gfluidkernel.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/fluid/imgproc.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/garg.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/garray.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gasync_context.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gcall.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gcommon.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gcompiled.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gcompiled_async.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gcompoundkernel.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gcomputation.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gcomputation_async.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gframe.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gkernel.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gmat.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gmetaarg.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gopaque.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gproto.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gpu/core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gpu/ggpukernel.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gpu/imgproc.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gscalar.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gstreaming.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gtransform.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gtype_traits.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/gtyped.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/imgproc.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/infer.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/infer/bindings_ie.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/infer/ie.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/infer/onnx.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/infer/parsers.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/media.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/ocl/core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/ocl/goclkernel.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/ocl/imgproc.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/opencv_includes.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/operators.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/own/assert.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/own/convert.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/own/cvdefs.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/own/exports.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/own/mat.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/own/saturate.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/own/scalar.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/own/types.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/plaidml/core.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/plaidml/gplaidmlkernel.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/plaidml/plaidml.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/python/python.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/render.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/render/render.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/render/render_types.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/rmat.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/s11n.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/s11n/base.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/stereo.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/streaming/cap.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/streaming/desync.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/streaming/format.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/streaming/meta.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/streaming/source.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/streaming/sync.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/util/any.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/util/compiler_hints.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/util/copy_through_move.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/util/optional.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/util/throw.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/util/type_traits.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/util/util.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/util/variant.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/include/opencv2/gapi/video.hpp
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_eye.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_eye_tree_eyeglasses.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_frontalcatface.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_frontalcatface_extended.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_frontalface_alt.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_frontalface_alt2.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_frontalface_alt_tree.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_frontalface_default.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_fullbody.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_lefteye_2splits.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_licence_plate_rus_16stages.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_lowerbody.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_profileface.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_righteye_2splits.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_russian_plate_number.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_smile.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/haarcascades/haarcascade_upperbody.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/lbpcascades/lbpcascade_frontalcatface.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/lbpcascades/lbpcascade_frontalface.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/lbpcascades/lbpcascade_frontalface_improved.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/lbpcascades/lbpcascade_profileface.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/etc/lbpcascades/lbpcascade_silverware.xml
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/opencv_annotation.exe
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/opencv_visualisation.exe
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/opencv_interactive-calibration.exe
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/opencv_version.exe
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/opencv_version_win32.exe
-- Installing: E:/opencv4.5.2/opencv/bianyi/install/x64/mingw/bin/opencv_model_diagnostics.exe

E:\opencv4.5.2\opencv\bianyi>

你可能感兴趣的:(C/C++,Qt,opencv,qt,c++)