/opencv-workshop-cpp

This project contained code about Computer Vision written with OpenCV C++.

Primary LanguageC++

Computer Vision OpenCV Workshop Class

Lecturer by Asst. Prof. Dr. Nikom Suvonvorn

This project contained code about Computer Vision written with OpenCV C++ when i was learning Computer Vision.

Ordered by number prefix.

What is OpenCV

OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. Being a BSD-licensed product, OpenCV makes it easy for businesses to utilize and modify the code.

learn more...

How to Install OpenCV

  • In Linux (g++)

    In linux run this command in your shell to compile code and Run.

    g++ File.cpp -o outputFile.out `pkg-config --cflags --libs opencv4` 

    if you are using vscode put it in task.json will make your life easier instead manually run command everytime.

  • In Window (Visual Studio 2022)

    Just build and Run