├── .clang-format ├── .gitattributes ├── .gitignore ├── LICENSE ├── OpenCV.uplugin ├── Readme.md ├── Resources └── Icon128.png ├── Source └── OpenCV │ ├── Classes │ ├── OpenCV_ImageProc.h │ └── UCVUMat.h │ ├── OpenCV.Build.cs │ ├── Private │ ├── OpenCV.cpp │ ├── OpenCV_ImageProc.cpp │ ├── SceneCaptureRecorder.cpp │ ├── UCVUMat.cpp │ └── VideoCapture.cpp │ └── Public │ ├── OpenCV.h │ ├── OpenCV_Common.h │ ├── SceneCaptureRecorder.h │ └── VideoCapture.h └── ThirdParty └── opencv ├── include ├── opencv │ ├── cv.h │ ├── cv.hpp │ ├── cvaux.h │ ├── cvaux.hpp │ ├── cvwimage.h │ ├── cxcore.h │ ├── cxcore.hpp │ ├── cxeigen.hpp │ ├── cxmisc.h │ ├── highgui.h │ └── ml.h └── opencv2 │ ├── calib3d.hpp │ ├── calib3d │ ├── calib3d.hpp │ └── calib3d_c.h │ ├── core.hpp │ ├── core │ ├── affine.hpp │ ├── base.hpp │ ├── bufferpool.hpp │ ├── core.hpp │ ├── core_c.h │ ├── cuda.hpp │ ├── cuda.inl.hpp │ ├── cuda_stream_accessor.hpp │ ├── cuda_types.hpp │ ├── cv_cpu_dispatch.h │ ├── cv_cpu_helper.h │ ├── cvdef.h │ ├── cvstd.hpp │ ├── cvstd.inl.hpp │ ├── directx.hpp │ ├── eigen.hpp │ ├── fast_math.hpp │ ├── hal │ │ ├── hal.hpp │ │ ├── interface.h │ │ ├── intrin.hpp │ │ ├── intrin_cpp.hpp │ │ ├── intrin_neon.hpp │ │ ├── intrin_sse.hpp │ │ └── intrin_vsx.hpp │ ├── ippasync.hpp │ ├── mat.hpp │ ├── mat.inl.hpp │ ├── matx.hpp │ ├── neon_utils.hpp │ ├── ocl.hpp │ ├── ocl_genbase.hpp │ ├── opengl.hpp │ ├── operations.hpp │ ├── optim.hpp │ ├── ovx.hpp │ ├── persistence.hpp │ ├── ptr.inl.hpp │ ├── saturate.hpp │ ├── softfloat.hpp │ ├── sse_utils.hpp │ ├── traits.hpp │ ├── types.hpp │ ├── types_c.h │ ├── utility.hpp │ ├── utils │ │ ├── filesystem.hpp │ │ ├── logger.defines.hpp │ │ ├── logger.hpp │ │ └── trace.hpp │ ├── va_intel.hpp │ ├── version.hpp │ ├── vsx_utils.hpp │ └── wimage.hpp │ ├── cvconfig.h │ ├── dnn.hpp │ ├── dnn │ ├── all_layers.hpp │ ├── dict.hpp │ ├── dnn.hpp │ ├── dnn.inl.hpp │ ├── layer.details.hpp │ ├── layer.hpp │ └── shape_utils.hpp │ ├── features2d.hpp │ ├── features2d │ ├── features2d.hpp │ └── hal │ │ └── interface.h │ ├── flann.hpp │ ├── flann │ ├── all_indices.h │ ├── allocator.h │ ├── any.h │ ├── autotuned_index.h │ ├── composite_index.h │ ├── config.h │ ├── defines.h │ ├── dist.h │ ├── dummy.h │ ├── dynamic_bitset.h │ ├── flann.hpp │ ├── flann_base.hpp │ ├── general.h │ ├── ground_truth.h │ ├── hdf5.h │ ├── heap.h │ ├── hierarchical_clustering_index.h │ ├── index_testing.h │ ├── kdtree_index.h │ ├── kdtree_single_index.h │ ├── kmeans_index.h │ ├── linear_index.h │ ├── logger.h │ ├── lsh_index.h │ ├── lsh_table.h │ ├── matrix.h │ ├── miniflann.hpp │ ├── nn_index.h │ ├── object_factory.h │ ├── params.h │ ├── random.h │ ├── result_set.h │ ├── sampling.h │ ├── saving.h │ ├── simplex_downhill.h │ └── timer.h │ ├── highgui.hpp │ ├── highgui │ ├── highgui.hpp │ └── highgui_c.h │ ├── imgcodecs.hpp │ ├── imgcodecs │ ├── imgcodecs.hpp │ ├── imgcodecs_c.h │ └── ios.h │ ├── imgproc.hpp │ ├── imgproc │ ├── detail │ │ └── distortion_model.hpp │ ├── hal │ │ ├── hal.hpp │ │ └── interface.h │ ├── imgproc.hpp │ ├── imgproc_c.h │ └── types_c.h │ ├── ml.hpp │ ├── ml │ ├── ml.hpp │ └── ml.inl.hpp │ ├── objdetect.hpp │ ├── objdetect │ ├── detection_based_tracker.hpp │ ├── objdetect.hpp │ └── objdetect_c.h │ ├── opencv.hpp │ ├── opencv_modules.hpp │ ├── photo.hpp │ ├── photo │ ├── cuda.hpp │ ├── photo.hpp │ └── photo_c.h │ ├── shape.hpp │ ├── shape │ ├── emdL1.hpp │ ├── hist_cost.hpp │ ├── shape.hpp │ ├── shape_distance.hpp │ └── shape_transformer.hpp │ ├── stitching.hpp │ ├── stitching │ ├── detail │ │ ├── autocalib.hpp │ │ ├── blenders.hpp │ │ ├── camera.hpp │ │ ├── exposure_compensate.hpp │ │ ├── matchers.hpp │ │ ├── motion_estimators.hpp │ │ ├── seam_finders.hpp │ │ ├── timelapsers.hpp │ │ ├── util.hpp │ │ ├── util_inl.hpp │ │ ├── warpers.hpp │ │ └── warpers_inl.hpp │ └── warpers.hpp │ ├── superres.hpp │ ├── superres │ └── optical_flow.hpp │ ├── video.hpp │ ├── video │ ├── background_segm.hpp │ ├── tracking.hpp │ ├── tracking_c.h │ └── video.hpp │ ├── videoio.hpp │ ├── videoio │ ├── cap_ios.h │ ├── videoio.hpp │ └── videoio_c.h │ ├── videostab.hpp │ ├── videostab │ ├── deblurring.hpp │ ├── fast_marching.hpp │ ├── fast_marching_inl.hpp │ ├── frame_source.hpp │ ├── global_motion.hpp │ ├── inpainting.hpp │ ├── log.hpp │ ├── motion_core.hpp │ ├── motion_stabilizing.hpp │ ├── optical_flow.hpp │ ├── outlier_rejection.hpp │ ├── ring_buffer.hpp │ ├── stabilizer.hpp │ └── wobble_suppression.hpp │ └── world.hpp └── x64 ├── vc14 └── lib │ ├── OpenCVConfig-version.cmake │ ├── OpenCVConfig.cmake │ ├── OpenCVModules-debug.cmake │ ├── OpenCVModules-release.cmake │ ├── OpenCVModules.cmake │ ├── opencv_world341.lib │ └── opencv_world341d.lib └── vc15 ├── bin ├── opencv_ffmpeg341_64.dll ├── opencv_world341.dll └── opencv_world341d.dll └── lib ├── OpenCVConfig-version.cmake ├── OpenCVConfig.cmake ├── OpenCVModules-debug.cmake ├── OpenCVModules-release.cmake ├── OpenCVModules.cmake ├── opencv_world341.lib └── opencv_world341d.lib /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenCV.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/OpenCV.uplugin -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Readme.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/OpenCV/Classes/OpenCV_ImageProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Classes/OpenCV_ImageProc.h -------------------------------------------------------------------------------- /Source/OpenCV/Classes/UCVUMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Classes/UCVUMat.h -------------------------------------------------------------------------------- /Source/OpenCV/OpenCV.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/OpenCV.Build.cs -------------------------------------------------------------------------------- /Source/OpenCV/Private/OpenCV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Private/OpenCV.cpp -------------------------------------------------------------------------------- /Source/OpenCV/Private/OpenCV_ImageProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Private/OpenCV_ImageProc.cpp -------------------------------------------------------------------------------- /Source/OpenCV/Private/SceneCaptureRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Private/SceneCaptureRecorder.cpp -------------------------------------------------------------------------------- /Source/OpenCV/Private/UCVUMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Private/UCVUMat.cpp -------------------------------------------------------------------------------- /Source/OpenCV/Private/VideoCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Private/VideoCapture.cpp -------------------------------------------------------------------------------- /Source/OpenCV/Public/OpenCV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Public/OpenCV.h -------------------------------------------------------------------------------- /Source/OpenCV/Public/OpenCV_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Public/OpenCV_Common.h -------------------------------------------------------------------------------- /Source/OpenCV/Public/SceneCaptureRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Public/SceneCaptureRecorder.h -------------------------------------------------------------------------------- /Source/OpenCV/Public/VideoCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/Source/OpenCV/Public/VideoCapture.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cv.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cv.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cvaux.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cxcore.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/highgui.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv/ml.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/calib3d.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/calib3d/calib3d_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/calib3d/calib3d_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/base.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cuda_stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cuda_stream_accessor.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cv_cpu_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cv_cpu_dispatch.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cv_cpu_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cv_cpu_helper.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/hal/intrin_vsx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/hal/intrin_vsx.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/ippasync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/ippasync.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/ptr.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/ptr.inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/softfloat.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/types.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/utils/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/utils/filesystem.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/utils/logger.defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/utils/logger.defines.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/utils/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/utils/logger.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/utils/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/utils/trace.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/vsx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/vsx_utils.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/cvconfig.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/dnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/dnn.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/dnn/all_layers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/dnn/all_layers.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/dnn/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/dnn/dict.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/dnn/dnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/dnn/dnn.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/dnn/dnn.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/dnn/dnn.inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/dnn/layer.details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/dnn/layer.details.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/dnn/layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/dnn/layer.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/dnn/shape_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/dnn/shape_utils.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/features2d.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/features2d/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/features2d/hal/interface.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/any.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/config.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/defines.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/dummy.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/dynamic_bitset.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/general.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/hierarchical_clustering_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/hierarchical_clustering_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/kdtree_single_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/kdtree_single_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/lsh_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/lsh_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/lsh_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/lsh_table.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/miniflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/miniflann.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/params.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/highgui.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgcodecs/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgcodecs/imgcodecs.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgcodecs/imgcodecs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgcodecs/imgcodecs_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgproc/detail/distortion_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgproc/detail/distortion_model.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgproc/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgproc/hal/interface.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/ml.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/ml/ml.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/ml/ml.inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/objdetect.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/objdetect/detection_based_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/objdetect/detection_based_tracker.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/objdetect/objdetect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/objdetect/objdetect_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/photo.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/photo/cuda.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/photo/photo_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/photo/photo_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/shape.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/shape/emdL1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/shape/emdL1.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/shape/hist_cost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/shape/hist_cost.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/shape/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/shape/shape.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/shape/shape_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/shape/shape_distance.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/shape/shape_transformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/shape/shape_transformer.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/autocalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/autocalib.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/blenders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/blenders.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/camera.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/exposure_compensate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/exposure_compensate.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/matchers.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/motion_estimators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/motion_estimators.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/seam_finders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/seam_finders.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/timelapsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/timelapsers.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/util.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/util_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/util_inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/warpers.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/detail/warpers_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/detail/warpers_inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/stitching/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/stitching/warpers.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/superres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/superres.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/superres/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/superres/optical_flow.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/video.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/video/tracking_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/video/tracking_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/video/video.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videoio.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videoio/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videoio/cap_ios.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videoio/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videoio/videoio.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videoio/videoio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videoio/videoio_c.h -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/deblurring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/deblurring.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/fast_marching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/fast_marching.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/fast_marching_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/fast_marching_inl.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/frame_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/frame_source.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/global_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/global_motion.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/inpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/inpainting.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/log.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/motion_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/motion_core.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/motion_stabilizing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/motion_stabilizing.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/optical_flow.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/outlier_rejection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/outlier_rejection.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/ring_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/ring_buffer.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/stabilizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/stabilizer.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/videostab/wobble_suppression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/videostab/wobble_suppression.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/include/opencv2/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/include/opencv2/world.hpp -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc14/lib/OpenCVConfig-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc14/lib/OpenCVConfig-version.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc14/lib/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc14/lib/OpenCVConfig.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc14/lib/OpenCVModules-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc14/lib/OpenCVModules-debug.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc14/lib/OpenCVModules-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc14/lib/OpenCVModules-release.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc14/lib/OpenCVModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc14/lib/OpenCVModules.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc14/lib/opencv_world341.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc14/lib/opencv_world341.lib -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc14/lib/opencv_world341d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc14/lib/opencv_world341d.lib -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/bin/opencv_ffmpeg341_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/bin/opencv_ffmpeg341_64.dll -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/bin/opencv_world341.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/bin/opencv_world341.dll -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/bin/opencv_world341d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/bin/opencv_world341d.dll -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/lib/OpenCVConfig-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/lib/OpenCVConfig-version.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/lib/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/lib/OpenCVConfig.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/lib/OpenCVModules-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/lib/OpenCVModules-debug.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/lib/OpenCVModules-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/lib/OpenCVModules-release.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/lib/OpenCVModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/lib/OpenCVModules.cmake -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/lib/opencv_world341.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/lib/opencv_world341.lib -------------------------------------------------------------------------------- /ThirdParty/opencv/x64/vc15/lib/opencv_world341d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHugeManatee/OpenCV_Unreal/HEAD/ThirdParty/opencv/x64/vc15/lib/opencv_world341d.lib --------------------------------------------------------------------------------