-
Notifications
You must be signed in to change notification settings - Fork 165
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
Implemented median_filter #393
Conversation
092da74
to
5d6df23
Compare
5d6df23
to
f448f2c
Compare
f448f2c
to
0575fe4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@miralshah365 Good work.
The only important comment I have is about the optimisation of std::vector
use.
Once we resolve that one, your PR is ready to merge.
tests for median_filter added
0575fe4
to
f8aa340
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@miralshah365 Thank you for your prompt updates. It looks good. Feel free to merge as soon as all our CI-s pass.
Description
implemented
median_filter
functiontests added for
median_filter
This utility will provide a way to remove noise from the image by choosing a median value from a window which iterates over entire image.
Tasklist