-
Notifications
You must be signed in to change notification settings - Fork 164
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 rasterizer support for ellipse #585
Conversation
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.
Please, ensure this code does not introduce any new warnings
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.
The feature is based on a known paper and is covered by a test.
So, without doing any verification of the algorithm implementation, I'm happy to accept it.
/cc @lpranam any objections?
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.
you forgot to add example in CMakeLists.txt otherwise all good :D
As far as I understand, we don't need to add example files individually in example/CMakeLists.txt since it is using |
oh yes, sorry my bad I forgot. we have a few different approach in cmake so this happens a lot with me... |
* Added all standard morphological transformations * Should handle grayscale dilation/erosion * Added test cases and improved code structure * Should handle multichannel images
* Added all standard morphological transformations * Should handle grayscale dilation/erosion * Added test cases and improved code structure * Should handle multichannel images
* Added all standard morphological transformations * Should handle grayscale dilation/erosion * Added test cases and improved code structure * Should handle multichannel images
This PR was staged for releasing with Boost 1.80, but I'd like to give another review on ellipse.hpp:
|
Thanks a lot for providing your review @marco-langer !
|
@marco-langer Great comments. Since this has already been merged, I'd suggest to simply open an issue with reference to this PR. |
@meshtag FYI, we have merged PR #692 which addresses points raised by @marco-langer, so please have a look at those changes. |
Reviewed the PR. |
Description
This pull request adds rasterization functionality for drawing ellipse using midpoint algorithm.
I would like to ponder upon following points once this basic functionality is approved(possibly merged) :
I would like this pull request to be considered as solution for my competency test.
References
Tasklist