Algorithms optimizations using OpenCV
-
Clone this repository to your computer
git clone https://github.com/dkurt/cv_winter_camp_2022 cd cv_winter_camp_2022
-
Initialize submodules
git submodule init git submodule update --depth 1
-
Build a project (make sure if
cmake
installed)mkdir build && cd build
-
Linux
cmake -DCMAKE_BUILD_TYPE=Release .. && make -j4
-
Microsoft Windows
"C:\Program Files\CMake\bin\cmake.exe" -G "Visual Studio 16 2019" -A x64 .. "C:\Program Files\CMake\bin\cmake.exe" --build . --config Release -j 4
-
- src - source files with algorithms implementation
- include - header files with algorithms definitions
- test - regression tests
- perf - performance tests
- 3rdparty - folder with OpenCV submodule