Question: Make a program that applies a blur filter to a selfie of yours. For this you must comply with the following: Use the CCV library
Make a program that applies a blur filter to a “selfie” of yours. For this you must comply with the following:
Use the CCV library (https://libccv.org/)
Investigate what is a static library and a dynamic library
To compile both the CCV library and the program use the clang compiler
To compile the program, include the -I flag as parameters to the compiler to indicate where to
find the CCV library header file, the -L flag to indicate where it is located
the CCV library file, include the option to link the math libraries, PNG, JPEG
and CCV. For compilation it is important to respect the order in which these options are passed to the compiler.
The program must be passed as the first parameter the location of the source image (selfie) and as
second parameter the resulting image (blurred).
The program must open the source image, apply a blur filter with a sigma factor equal to
5.5, you should finally save the blurry image
Step by Step Solution
3.42 Rating (158 Votes )
There are 3 Steps involved in it
include include include void bubblesortint arr int n int i j for i 0 i n 1 i for j 0 j n i 1 j if ar... View full answer
Get step-by-step solutions from verified subject matter experts
