Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fatal error: opencv2/video/detail/tracking.private.hpp:No such file or directory #2780

Closed
Xavier-W opened this issue Dec 9, 2020 · 7 comments
Labels
incomplete question (invalid tracker) ask questions and other "no action" items here: https://forum.opencv.org/

Comments

@Xavier-W
Copy link

Xavier-W commented Dec 9, 2020

System information (version)
  • OpenCV => 4.5.0
  • Operating System / Platform => Ubuntu18.04/Jetson Xavier NX
  • Compiler => gcc
  • CUDA => 10.2
Detailed description

fatal error: opencv2/video/detail/tracking.private.hpp: No such file or directory #include "opencv2/video/detail/tracking.private.hpp"

I didn't find the 'video' in the opencv2 directory

image

Steps to reproduce

My 'cmake' configuration is

cmake -D CMAKE_BUILD_TYPE=RELEASE -D MAKE_INSTALL_PREFIX=/usr/local -D OPENCV_EXTRA_MODULES_PATH=../opencv_contrib/modules -D CUDA_ARCH_BIN='7.2' -D WITH_CUDA=1 -D WITH_V4L=ON -D WITH_QT=ON -D WITH_OPENGL=ON -D ENABLE_FAST_MATH=1 -D CUDA_FAST_MATH=1 -D WITH_CUBLAS=1 -D OPENCV_GENERATE_PKGCONFIG=1 -D CUDA_GENERATION=Pascal -D WITH_GTK_2_X=ON ..

Then, sudo make -j6

Please give me some suggestions on this, thank you for taking the time to read my issue.

@Xavier-W Xavier-W changed the title fatal error: opencv2/video/detail/tracking.private.hpp: fatal error: opencv2/video/detail/tracking.private.hpp:No such file or directory Dec 9, 2020
@alalek
Copy link
Member

alalek commented Dec 9, 2020

Can't reproduce.

You should keep source code bases of opencv/opencv_contrib synchronized (the same git tag or head of the same branch).
Different versions are not tested for compatibility and may not work.


More details are required about failed compilation:

  • CMake stdout (from clean build)
  • failed command line via make VERBOSE=1 (without any -j option)

sudo make

Avoid that.
You should never use sudo to build ANY code.
You don't need to install OpenCV to try it. Build directory is enough for local development.

-D MAKE_INSTALL_PREFIX=/usr/local

typo

-D ENABLE_FAST_MATH=1

May lead to unexpected tests failures.

-D CUDA_GENERATION=Pascal

Not necessary if CUDA_ARCH_BIN is specified.


Build / usage questions should go to Users OpenCV Q/A forum: http://answers.opencv.org

@Xavier-W Xavier-W reopened this Dec 10, 2020
@Parradox27
Copy link

Parradox27 commented Dec 14, 2020

Hello, I am having the same problem, with a slightly different setup:
Device: Nvidia Tegra AGX/Ubuntu18.04
CUDA version: 10.2
OpenCV version: 4.4.0
OpenCV contrib version: 4.5.0

Compiling with:
cmake -DWITH_GTK=On -DWITH_OPENGL=On -DWITH_CUDA=On -DOPENCV_EXTRA_MODULES_PATH=/home/nvidia/devel/opencv/opencv_contrib/modules ..

I ran make with VERBOSE=1, here is the output:
[ 93%] Building CXX object modules/tracking/CMakeFiles/opencv_tracking.dir/src/augmented_unscented_kalman.cpp.o cd /home/nvidia/devel/opencv/opencv/build/modules/tracking && /usr/bin/c++ -DCVAPI_EXPORTS -D_USE_MATH_DEFINES -D__OPENCV_BUILD=1 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/nvidia/devel/opencv/opencv/build -I/home/nvidia/devel/opencv/opencv_contrib/modules/tracking/include -I/home/nvidia/devel/opencv/opencv/build/modules/tracking -I/home/nvidia/devel/opencv/opencv_contrib/modules/cudev/include -I/home/nvidia/devel/opencv/opencv/modules/core/include -I/home/nvidia/devel/opencv/opencv/modules/flann/include -I/home/nvidia/devel/opencv/opencv/modules/imgproc/include -I/home/nvidia/devel/opencv/opencv/modules/ml/include -I/home/nvidia/devel/opencv/opencv_contrib/modules/plot/include -I/home/nvidia/devel/opencv/opencv/modules/dnn/include -I/home/nvidia/devel/opencv/opencv/modules/features2d/include -I/home/nvidia/devel/opencv/opencv/modules/imgcodecs/include -I/home/nvidia/devel/opencv/opencv_contrib/modules/text/include -I/home/nvidia/devel/opencv/opencv/modules/videoio/include -I/home/nvidia/devel/opencv/opencv/modules/calib3d/include -I/home/nvidia/devel/opencv/opencv_contrib/modules/datasets/include -I/home/nvidia/devel/opencv/opencv/modules/highgui/include -I/home/nvidia/devel/opencv/opencv/modules/video/include -I/home/nvidia/devel/opencv/opencv/modules/ts/include -I/home/nvidia/devel/opencv/opencv/modules -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wsuggest-override -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -fvisibility=hidden -fvisibility-inlines-hidden -Wno-shadow -O3 -DNDEBUG -DNDEBUG -fPIC -std=c++11 -o CMakeFiles/opencv_tracking.dir/src/augmented_unscented_kalman.cpp.o -c /home/nvidia/devel/opencv/opencv_contrib/modules/tracking/src/augmented_unscented_kalman.cpp In file included from /home/nvidia/devel/opencv/opencv_contrib/modules/tracking/src/precomp.hpp:54, from /home/nvidia/devel/opencv/opencv_contrib/modules/tracking/src/augmented_unscented_kalman.cpp:42: /home/nvidia/devel/opencv/opencv_contrib/modules/tracking/include/opencv2/tracking/tracking_internals.hpp:18:10: fatal error: opencv2/video/detail/tracking.private.hpp: No such file or directory #include "opencv2/video/detail/tracking.private.hpp" ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. modules/tracking/CMakeFiles/opencv_tracking.dir/build.make:87: recipe for target 'modules/tracking/CMakeFiles/opencv_tracking.dir/src/augmented_unscented_kalman.cpp.o' failed make[2]: *** [modules/tracking/CMakeFiles/opencv_tracking.dir/src/augmented_unscented_kalman.cpp.o] Error 1 make[2]: Leaving directory '/home/nvidia/devel/opencv/opencv/build' CMakeFiles/Makefile2:9673: recipe for target 'modules/tracking/CMakeFiles/opencv_tracking.dir/all' failed make[1]: *** [modules/tracking/CMakeFiles/opencv_tracking.dir/all] Error 2 make[1]: Leaving directory '/home/nvidia/devel/opencv/opencv/build' Makefile:181: recipe for target 'all' failed make: *** [all] Error 2

I would greatly appreciate any help regarding this issue.

EDIT: Updating to newest version fixed the issue.

@gilgilad
Copy link

gilgilad commented Jan 5, 2021

update to what version solved this?

@Xavier-W
Copy link
Author

Xavier-W commented Jan 8, 2021

Thanks @alalek

@Xavier-W Xavier-W closed this as completed Jan 8, 2021
@berak
Copy link
Contributor

berak commented Jan 11, 2021

maybe, we should reopen this.

while the library builds fine (using exactly the same versions for contrib and main),
the opencv2/video/detail folder does not get copied during install, so we run into the same error when building any c++ sample

@alalek
Copy link
Member

alalek commented Jan 11, 2021

Install-related issue is here: opencv/opencv#19260

@ravikantbansal
Copy link

General configuration for OpenCV 4.5.1 =====================================
Version control: unknown

Extra modules:
Location (extra): C:/OpenCV/opencv_contrib-4.x/opencv_contrib-4.x/modules
Version control (extra): unknown

Platform:
Timestamp: 2022-07-16T09:13:09Z
Host: Windows 10.0.19043 AMD64
CMake: 3.19.3
CMake generator: Visual Studio 16 2019
CMake build tool: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe
MSVC: 1929

CPU/HW features:
Baseline: SSE SSE2 SSE3
requested: SSE3
Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX
requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX
SSE4_1 (17 files): + SSSE3 SSE4_1
SSE4_2 (2 files): + SSSE3 SSE4_1 POPCNT SSE4_2
FP16 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX
AVX (5 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX
AVX2 (31 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2
AVX512_SKX (7 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_COMMON AVX512_SKX

C/C++:
Built as dynamic libs?: YES
C++ standard: 11
C++ Compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe (ver 19.29.30146.0)
C++ flags (Release): /DWIN32 /D_WINDOWS /W4 /GR /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /fp:fast /EHa /wd4127 /wd4251 /wd4324 /wd4275 /wd4512 /wd4589 /MP /MD /O2 /Ob2 /DNDEBUG
C++ flags (Debug): /DWIN32 /D_WINDOWS /W4 /GR /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /fp:fast /EHa /wd4127 /wd4251 /wd4324 /wd4275 /wd4512 /wd4589 /MP /MDd /Zi /Ob0 /Od /RTC1
C Compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe
C flags (Release): /DWIN32 /D_WINDOWS /W3 /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /fp:fast /MP /MD /O2 /Ob2 /DNDEBUG
C flags (Debug): /DWIN32 /D_WINDOWS /W3 /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /fp:fast /MP /MDd /Zi /Ob0 /Od /RTC1
Linker flags (Release): /machine:x64 /INCREMENTAL:NO
Linker flags (Debug): /machine:x64 /debug /INCREMENTAL
ccache: NO
Precompiled headers: NO
Extra dependencies: cudart_static.lib nppc.lib nppial.lib nppicc.lib nppicom.lib nppidei.lib nppif.lib nppig.lib nppim.lib nppist.lib nppisu.lib nppitc.lib npps.lib cublas.lib cudnn.lib cufft.lib -LIBPATH:C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64
3rdparty dependencies:

OpenCV modules:
To be built: aruco barcode bgsegm bioinspired calib3d ccalib core cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev datasets dnn dnn_objdetect dnn_superres dpm face features2d flann fuzzy gapi hfs highgui img_hash imgcodecs imgproc intensity_transform line_descriptor mcc ml objdetect optflow phase_unwrapping photo plot python3 quality rapid reg rgbd saliency shape stereo stitching structured_light superres surface_matching text tracking ts video videoio videostab wechat_qrcode world xfeatures2d ximgproc xobjdetect xphoto
Disabled: -
Disabled by dependency: -
Unavailable: alphamat cvv freetype hdf java julia matlab ovis python2 python2 sfm viz
Applications: tests perf_tests apps
Documentation: NO
Non-free algorithms: YES

Windows RT support: NO

GUI:
Win32 UI: YES
VTK support: NO

Media I/O:
ZLib: build (ver 1.2.11)
JPEG: build-libjpeg-turbo (ver 2.0.6-62)
WEBP: build (ver encoder: 0x020f)
PNG: build (ver 1.6.37)
TIFF: build (ver 42 - 4.0.10)
JPEG 2000: build (ver 2.3.1)
OpenEXR: build (ver 2.3.0)
HDR: YES
SUNRASTER: YES
PXM: YES
PFM: YES

Video I/O:
DC1394: NO
FFMPEG: YES (prebuilt binaries)
avcodec: YES (58.91.100)
avformat: YES (58.45.100)
avutil: YES (56.51.100)
swscale: YES (5.7.100)
avresample: YES (4.0.0)
GStreamer: NO
DirectShow: YES
Media Foundation: YES
DXVA: YES

Parallel framework: Concurrency

Trace: YES (with Intel ITT)

Other third-party libraries:
Intel IPP: 2020.0.0 Gold [2020.0.0]
at: C:/OpenCV/Build/3rdparty/ippicv/ippicv_win/icv
Intel IPP IW: sources (2020.0.0)
at: C:/OpenCV/Build/3rdparty/ippicv/ippicv_win/iw
Lapack: NO
Eigen: NO
Custom HAL: NO
Protobuf: build (3.5.1)

NVIDIA CUDA: YES (ver 10.1, CUFFT CUBLAS FAST_MATH)
NVIDIA GPU arch: 75
NVIDIA PTX archs:

cuDNN: YES (ver 7.6.5)

OpenCL: YES (NVD3D11)
Include path: C:/OpenCV/opencv-4.5.1/opencv-4.5.1/3rdparty/include/opencl/1.2
Link libraries: Dynamic load

Python 3:
Interpreter: C:/Users/SRI/anaconda3/python.exe (ver 3.9.12)
Libraries: C:/Users/SRI/anaconda3/libs/python39.lib (ver 3.9.12)
numpy: C:/Users/SRI/anaconda3/lib/site-packages/numpy/core/include (ver 1.23.1)
install path: C:/Users/SRI/anaconda3/Lib/site-packages/cv2/python-3.9

Python (for build): C:/Users/SRI/anaconda3/python.exe

Java:
ant: NO
JNI: NO
Java wrappers: NO
Java tests: NO

Install to: C:/OpenCV/install

Configuring done
Generating done

Error LOgs

featureColorName.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\augmented_unscented_kalman.cp
p) [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
gtrUtils.cpp
kuhn_munkres.cpp
mosseTracker.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\feature.cpp) [C:\OpenCV\Build
\modules\world\opencv_world.vcxproj]
multiTracker.cpp
multiTracker_alt.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\kuhn_munkres.cpp) [C:\OpenCV
Build\modules\world\opencv_world.vcxproj]
onlineBoosting.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\featureColorName.cpp) [C:\Ope
nCV\Build\modules\world\opencv_world.vcxproj]
tldDataset.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\gtrUtils.cpp) [C:\OpenCV\Buil
d\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\mosseTracker.cpp) [C:\OpenCV
Build\modules\world\opencv_world.vcxproj]
tldDetector.cpp
tldEnsembleClassifier.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\multiTracker.cpp) [C:\OpenCV
Build\modules\world\opencv_world.vcxproj]
tldModel.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\multiTracker_alt.cpp) [C:\Ope
nCV\Build\modules\world\opencv_world.vcxproj]
tldTracker.cpp
tldUtils.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\onlineBoosting.cpp) [C:\OpenC
V\Build\modules\world\opencv_world.vcxproj]
trackerBoosting.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldEnsembleClassifier.cpp) [C
:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldDataset.cpp) [C:\OpenCV\Bu
ild\modules\world\opencv_world.vcxproj]
trackerBoostingModel.cpp
trackerCSRT.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldDetector.cpp) [C:\OpenCV\B
uild\modules\world\opencv_world.vcxproj]
trackerCSRTScaleEstimation.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldTracker.cpp) [C:\OpenCV\Bu
ild\modules\world\opencv_world.vcxproj]
trackerCSRTSegmentation.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldModel.cpp) [C:\OpenCV\Buil
d\modules\world\opencv_world.vcxproj]
trackerCSRTUtils.cpp
trackerFeature.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldUtils.cpp) [C:\OpenCV\Buil
d\modules\world\opencv_world.vcxproj]
trackerFeatureSet.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerCSRTScaleEstimation.cp
p) [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
trackerKCF.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerBoosting.cpp) [C:\Open
CV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerBoostingModel.cpp) [C:
\OpenCV\Build\modules\world\opencv_world.vcxproj]
trackerMIL_legacy.cpp
trackerMedianFlow.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerCSRT.cpp) [C:\OpenCV\B
uild\modules\world\opencv_world.vcxproj]
trackerSampler.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerCSRTSegmentation.cpp)
[C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
trackerSamplerAlgorithm.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerCSRTUtils.cpp) [C:\Ope
nCV\Build\modules\world\opencv_world.vcxproj]
trackerStateEstimator.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerFeature.cpp) [C:\OpenC
V\Build\modules\world\opencv_world.vcxproj]
tracking_by_matching.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerFeatureSet.cpp) [C:\Op
enCV\Build\modules\world\opencv_world.vcxproj]
tracking_utils.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerKCF.cpp) [C:\OpenCV\Bu
ild\modules\world\opencv_world.vcxproj]
unscented_kalman.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerMIL_legacy.cpp) [C:\Op
enCV\Build\modules\world\opencv_world.vcxproj]
opencl_kernels_tracking.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerMedianFlow.cpp) [C:\Op
enCV\Build\modules\world\opencv_world.vcxproj]
brox.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerSampler.cpp) [C:\OpenC
V\Build\modules\world\opencv_world.vcxproj]
farneback.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerSamplerAlgorithm.cpp)
[C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
nvidiaOpticalFlow.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerStateEstimator.cpp) [C
:\OpenCV\Build\modules\world\opencv_world.vcxproj]
pyrlk.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tracking_by_matching.cpp) [C:
\OpenCV\Build\modules\world\opencv_world.vcxproj]
descriptor.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tracking_utils.cpp) [C:\OpenC
V\Build\modules\world\opencv_world.vcxproj]
quasi_dense_stereo.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\unscented_kalman.cpp) [C:\Ope
nCV\Build\modules\world\opencv_world.vcxproj]
stereo_binary_bm.cpp
stereo_binary_sgbm.cpp
btv_l1.cpp
btv_l1_cuda.cpp
input_array_utility.cpp
super_resolution.cpp
opencl_kernels_superres.cpp
deblurring.cpp
fast_marching.cpp
global_motion.cpp
log.cpp
motion_stabilizing.cpp
outlier_rejection.cpp
stabilizer.cpp
wobble_suppression.cpp
world_init.cpp

C:\OpenCV>"C:\Program Files\CMake\bin\cmake.exe" --build "C:\OpenCV\Build" --target INSTALL --config Release
Microsoft (R) Build Engine version 16.11.2+f32259642 for .NET Framework
Copyright (C) Microsoft Corporation. All rights reserved.

ade.vcxproj -> C:\OpenCV\Build\lib\Release\ade.lib
libopenjp2.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\libopenjp2.lib
ippiw.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\ippiw.lib
zlib.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\zlib.lib
IlmImf.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\IlmImf.lib
ittnotify.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\ittnotify.lib
libjpeg-turbo.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\libjpeg-turbo.lib
libpng.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\libpng.lib
libprotobuf.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\libprotobuf.lib
libtiff.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\libtiff.lib
libwebp.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\libwebp.lib
quirc.vcxproj -> C:\OpenCV\Build\3rdparty\lib\Release\quirc.lib
opencv_world_AVX.vcxproj -> C:\OpenCV\Build\modules\world\opencv_world_AVX.dir\Release\opencv_world_AVX.lib
opencv_world_AVX2.vcxproj -> C:\OpenCV\Build\modules\world\opencv_world_AVX2.dir\Release\opencv_world_AVX2.lib
opencv_world_AVX512_SKX.vcxproj -> C:\OpenCV\Build\modules\world\opencv_world_AVX512_SKX.dir\Release\opencv_world_AVX
512_SKX.lib
opencv_world_SSE4_1.vcxproj -> C:\OpenCV\Build\modules\world\opencv_world_SSE4_1.dir\Release\opencv_world_SSE4_1.lib
opencv_world_SSE4_2.vcxproj -> C:\OpenCV\Build\modules\world\opencv_world_SSE4_2.dir\Release\opencv_world_SSE4_2.lib
large_kinfu.cpp
augmented_unscented_kalman.cpp
feature.cpp
featureColorName.cpp
gtrUtils.cpp
kuhn_munkres.cpp
mosseTracker.cpp
multiTracker.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\kuhn_munkres.cpp) [C:\OpenCV
Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\augmented_unscented_kalman.cp
p) [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\feature.cpp) [C:\OpenCV\Build
\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\featureColorName.cpp) [C:\Ope
nCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\mosseTracker.cpp) [C:\OpenCV
Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\multiTracker.cpp) [C:\OpenCV
Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\gtrUtils.cpp) [C:\OpenCV\Buil
d\modules\world\opencv_world.vcxproj]
multiTracker_alt.cpp
onlineBoosting.cpp
tldDataset.cpp
tldDetector.cpp
tldEnsembleClassifier.cpp
tldModel.cpp
tldTracker.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(229,1): error C2296: '<<': illegal, le
ft operand has type 'const char [18]' [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(215): message : while compiling class
template member function 'bool cv::large_kinfu::LargeKinfuImplcv::Mat::updateT(const MatType &)' [C:\OpenCV\Build\mod
ules\world\opencv_world.vcxproj]
with
[
MatType=cv::Mat
]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(187): message : see reference to funct
ion template instantiation 'bool cv::large_kinfu::LargeKinfuImplcv::Mat::updateT(const MatType &)' being compiled [C:
\OpenCV\Build\modules\world\opencv_world.vcxproj]
with
[
MatType=cv::Mat
]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(179): message : see reference to class
template instantiation 'cv::large_kinfu::LargeKinfuImplcv::Mat' being compiled [C:\OpenCV\Build\modules\world\opencv
_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(229,5): error C3861: 'CV_LOG_INFO': id
entifier not found [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(236,1): error C2296: '<<': illegal, le
ft operand has type 'const char [22]' [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(236,9): error C3861: 'CV_LOG_INFO': id
entifier not found [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(253,13): error C3861: 'CV_LOG_INFO': i
dentifier not found [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(272,1): error C2296: '<<': illegal, le
ft operand has type 'const char [9]' [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(272,9): error C3861: 'CV_LOG_INFO': id
entifier not found [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(273,1): error C2296: '<<': illegal, le
ft operand has type 'const char [9]' [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(273,9): error C3861: 'CV_LOG_INFO': id
entifier not found [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(283,9): error C3861: 'CV_LOG_INFO': id
entifier not found [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(287,13): error C3861: 'CV_LOG_INFO': i
dentifier not found [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(294,1): error C2296: '<<': illegal, le
ft operand has type 'const char [20]' [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\rgbd\src\large_kinfu.cpp(294,5): error C3861: 'CV_LOG_INFO': id
entifier not found [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
tldUtils.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\multiTracker_alt.cpp) [C:\Ope
nCV\Build\modules\world\opencv_world.vcxproj]
trackerBoosting.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldEnsembleClassifier.cpp) [C
:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldTracker.cpp) [C:\OpenCV\Bu
ild\modules\world\opencv_world.vcxproj]
trackerBoostingModel.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldDataset.cpp) [C:\OpenCV\Bu
ild\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldModel.cpp) [C:\OpenCV\Buil
d\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\onlineBoosting.cpp) [C:\OpenC
V\Build\modules\world\opencv_world.vcxproj]
trackerCSRT.cpp
trackerCSRTScaleEstimation.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldDetector.cpp) [C:\OpenCV\B
uild\modules\world\opencv_world.vcxproj]
trackerCSRTSegmentation.cpp
trackerCSRTUtils.cpp
trackerFeature.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tldUtils.cpp) [C:\OpenCV\Buil
d\modules\world\opencv_world.vcxproj]
trackerFeatureSet.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerCSRT.cpp) [C:\OpenCV\B
uild\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerCSRTScaleEstimation.cp
p) [C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerBoosting.cpp) [C:\Open
CV\Build\modules\world\opencv_world.vcxproj]
trackerKCF.cpp
trackerMIL_legacy.cpp
trackerMedianFlow.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerFeature.cpp) [C:\OpenC
V\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerBoostingModel.cpp) [C:
\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerCSRTSegmentation.cpp)
[C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerCSRTUtils.cpp) [C:\Ope
nCV\Build\modules\world\opencv_world.vcxproj]
trackerSampler.cpp
trackerSamplerAlgorithm.cpp
trackerStateEstimator.cpp
tracking_by_matching.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerFeatureSet.cpp) [C:\Op
enCV\Build\modules\world\opencv_world.vcxproj]
tracking_utils.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerMIL_legacy.cpp) [C:\Op
enCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerSampler.cpp) [C:\OpenC
V\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerMedianFlow.cpp) [C:\Op
enCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tracking_by_matching.cpp) [C:
\OpenCV\Build\modules\world\opencv_world.vcxproj]
unscented_kalman.cpp
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerKCF.cpp) [C:\OpenCV\Bu
ild\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerStateEstimator.cpp) [C
:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\trackerSamplerAlgorithm.cpp)
[C:\OpenCV\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\tracking_utils.cpp) [C:\OpenC
V\Build\modules\world\opencv_world.vcxproj]
C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\include\opencv2/tracking/tracking_internals.hpp(18,10)
: fatal error C1083: Cannot open include file: 'opencv2/video/detail/tracking.detail.hpp': No such file or directory (c
ompiling source file C:\OpenCV\opencv_contrib-4.x\opencv_contrib-4.x\modules\tracking\src\unscented_kalman.cpp) [C:\Ope
nCV\Build\modules\world\opencv_world.vcxproj]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
incomplete question (invalid tracker) ask questions and other "no action" items here: https://forum.opencv.org/
Projects
None yet
Development

No branches or pull requests

6 participants