You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added the function void ImageKernelConvolution(Image *image, float* karnel, int karenlWidth) that does image convolution from a given user kernel defined as 1D array.
Image: Input image
karnel: pointer to1D float array for the kernel
karenlWidth: The width of the kernel matrix
The kernel matrix is only supported for square sized matrices.
Example results:
From left to right: Sharpen kernel, right Sobel operator, Gaussian blur done 6 times, Original image
The text was updated successfully, but these errors were encountered:
Added the function
void ImageKernelConvolution(Image *image, float* karnel, int karenlWidth)
that does image convolution from a given user kernel defined as 1D array.Image: Input image
karnel: pointer to1D float array for the kernel
karenlWidth: The width of the kernel matrix
The kernel matrix is only supported for square sized matrices.
Example results:
From left to right: Sharpen kernel, right Sobel operator, Gaussian blur done 6 times, Original image
The text was updated successfully, but these errors were encountered: