-
Notifications
You must be signed in to change notification settings - Fork 4
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
Cpp version #5
Comments
Could you provide more details or clarify which specific C++ project you're referring to? This will help me understand your project better and contribution you accordingly. |
@Ashutoshjangam |
@giangdao1402 using namespace std; // Function to apply RaPlace filter to a 2D vector
} int main() {
} Image Convolution: The applyRaPlaceFilter function takes a 2D vector representing the image and applies the Laplacian kernel to each pixel. This involves multiplying the kernel by the surrounding pixels and summing the results. Edge Handling: The algorithm does not process the boundary pixels to avoid accessing out-of-bounds memory. This is a simple approach to edge handling, but more sophisticated methods (like padding) can be used for better results. Output: The filtered image is stored in a new 2D vector, which is returned by the function and displayed in the main function. |
Have you complete cpp version ?
Thank you !
The text was updated successfully, but these errors were encountered: