Skip to content

Using SIMD instructions in image processing using OpenCV

License

Notifications You must be signed in to change notification settings

m3y54m/sobel-simd-opencv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published