Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 2.68 KB

README.md

File metadata and controls

59 lines (42 loc) · 2.68 KB

Sobel Filter + SIMD + OpenCV

Using SIMD instructions in image processing using OpenCV

image

Build and Install OpenCV4

I've explained the build and installation steps in this gist: Build OpenCV 4 in Ubuntu

Configure project

The recommended method for configuring OpenCV-based projects is using CMake.

sudo apt install cmake

If you are on Windows, download and execute CMake installer:

https://cmake.org/download/

The basic project configurations are written in CMakeLists.txt file which will be recognized by CMake tool. All source code of this project is in src directory. In order to generate the Makefile and other files used to build this project in a directory called build run these commands:

cmake -S src -B build

Build

cmake --build build --config Release

Run

Supposed that you are in build directory:

./sobel_simd_opencv

Resources