-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Image convolution function ImageKernelConvolution #3528
Conversation
@Kimo-s Thanks for the addition, just added some points to review or further discuss. Also, as commented on Discord: I've been thinking about input parameter For example: int columns = (int)sqrtf((float)kernelSize);
if (columns*columns != kernelSize)
{
TRACELOG(LOG_WARNING, "IMAGE: Convolution kernel must be square to be applied");
return;
} Another option could be appending zeros if (columns*columns < kernelSize) Also, the example window should be 800x450 pixels for consistency with the other examples and web display |
@Kimo-s thank you very much for all the reviews! I will merge this new function as soon as |
@Kimo-s thanks for this great addition! |
Please refer to the issue for more info: #3527