ngaloppo / cv_winter_camp_2022

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Intel Computer Vision Camp - Optimization Track (Winter 2022 ❄️ ❄️ ❄️)

Algorithms optimizations using OpenCV

Slides chat CI

Getting started

  • 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

C++ project structure

  • src - source files with algorithms implementation
  • include - header files with algorithms definitions
  • test - regression tests
  • perf - performance tests
  • 3rdparty - folder with OpenCV submodule

About


Languages

Language:C++ 87.8%Language:CMake 10.1%Language:CSS 2.2%