-
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
Add implementatin of box filter and blur #383
Conversation
box_filter
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 LGTM. Feel free to merge.
There is an important build configuration missing
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.
run box_filter.cpp ;
entry is missing from here:
gil/test/core/image_processing/Jamfile
Line 17 in ec30419
run threshold_binary.cpp ; |
Currently, the box_filter.cpp
test is not compiled on Jamfile-only CI jobs on Travis CI and AppVeyor.
ec30419
to
baebe52
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 There is one request for change to fix the test linking error
baebe52
to
f1118e2
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 looks good, feel free to merge.
Looks like you'll need to resolve conflict
implemented `blur` function tests added for `box_filter` closes boostorg#382
f1118e2
to
27d9d53
Compare
Description
implemented
blur
functiontests added for
box_filter
This utility will provide a way to remove noise from the image using convolution with
average
kernel(normalized and unnormalized).It also provides
blur
function which works only with normalized mean kernelsReferences
closes #382
Tasklist