-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Add ORB float32 support #4684
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 ORB float32 support #4684
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.
Lgtm, awesome
@@ -120,3 +122,10 @@ def test_no_descriptors_extracted_orb(): | |||
detector_extractor = ORB() | |||
with testing.raises(RuntimeError): | |||
detector_extractor.detect_and_extract(img) | |||
|
|||
|
|||
@pytest.mark.parametrize('dtype', ['float32', 'float64', 'uint8', 'int']) |
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.
Int64?
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.
👍 I am trying to find a more elaborated test
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.
let me still merge this now you're welcome to submit an other PR with a more complete test of course.
@meeseeksdev backport to v0.17.x |
@emmanuelle, I found that |
Co-authored-by: Riadh Fezzani <rfezzani@gmail.com>
Description
Fixes #4675.
Checklist
./doc/examples
(new features only)./benchmarks
, if your changes aren't covered by anexisting benchmark
For reviewers
later.
__init__.py
.doc/release/release_dev.rst
.