Skip to content

Latest commit

 

History

History
59 lines (29 loc) · 1012 Bytes

File metadata and controls

59 lines (29 loc) · 1012 Bytes

Simple console app to apply filters on your .bmp images

Filters:

Crop - cuts your image (from top left angle)

Negative - inverses colors

Grayscale - makes your image monochrome

Sharp - sharpens your image

Edge - finds an edge of objects

Blur - applies blur on image

Vignette - vignette

How to start using:

Go to /image_processor directory in terminal and write these commands:

% mkdir build && cd build

% cmake ..

% make image_processor

% ./image_processor

Than follow instructions

How to use:

Go to /image_processor/build directory in terminal and write this command:

% ./image_processor

Than follow instructions

How to use after changing code:

Go to /image_processor/build directory in terminal and write these commands:

% make image_processor

% ./image_processor

Than follow instructions

Unit Tests

If you want to run unit tests you need to go to /image_processor/build directory in terminal and write:

% make unit_tests

% ./unit_tests