Skip to content
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

Implementation of threshold_binary and threshold_truncate #313

Merged
merged 2 commits into from
Jun 18, 2019
Merged

Implementation of threshold_binary and threshold_truncate #313

merged 2 commits into from
Jun 18, 2019

Conversation

miralshah365
Copy link
Contributor

@miralshah365 miralshah365 commented Jun 18, 2019

Description

Two variant of Binary threshold Implemented

  1. Simple Binary Threshold
    If the pixel value is more than the threshold then the pixel value is set to maximum or else to 0
  2. Inverse Binary Threshold
    If the pixel value is more than the threshold then the pixel value is set to 0 or else to maximum

Two Truncation threshold Implemented

  1. Threshold Truncate
    If the pixel value is more than the threshold then it is truncated if the direction specified is regular. If the direction is in inverse then values below the thresholds are truncated.
  2. Truncation to zero
    If the pixel value is less than the threshold then it is set to zero if the direction specified is regular. If the direction is in inverse then values above the thresholds are set to zero.

References

Tasklist

  • Add test case(s)
  • Ensure all CI builds pass
  • Review and approve

Add public functions threshold_binary and threshold_truncate.
Add tests and example.
Closes #310
@mloskot mloskot self-requested a review June 18, 2019 17:37
Copy link
Member

@mloskot mloskot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This work is ready for approval.

It has been already reviewed as PR at BoostGSoC19#1 and this PR is just a copy following the decision and agreement to work from Miral's private fork and submit against upstream repo.

@mloskot mloskot marked this pull request as ready for review June 18, 2019 17:40
@mloskot mloskot added the cat/feature New feature or functionality label Jun 18, 2019
@mloskot mloskot merged commit 716fe9a into boostorg:develop Jun 18, 2019
@mloskot mloskot added this to the Boost 1.71 milestone Jul 3, 2019
@mloskot mloskot added the google-summer-of-code All items related to GSoC activities label Feb 22, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cat/feature New feature or functionality google-summer-of-code All items related to GSoC activities
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[gsoc2019] Implement and test binary and binary inverse threshold
2 participants