-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Port corners.jl to ImageFeatures.jl #682
Comments
Seems right to me. Some thinking about deprecation strategy could be warranted, though. Base has experienced some pains from moving code out to the standard library or packages. |
We did do it before reasonably painlessly with ImageTransformations. Or do you not plan to reexport ImageFeatures here? |
ImageFeatures is not a dependency of Images (it's vice versa). |
I've studied the code of ImageFeatures.jl some more and realised that it does not introduce any new corner detectors. Instead, the package uses the corner extraction functions in the The My ultimate aim is to introduce the ability to compute corners to sub-pixel precision. My current thinking is to keep the I would then make some changes in the ImageFeatures.jl package so that a Keypoint type need not be an integer. In summary, contrary to my initial suggestion, I would prefer to hold off moving the corner detection functions to ImageFeatures.jl for now. Rather, I would prefer to focus on getting the sub-pixel precision working. |
Add sub-pixel corner detection capability #682
Closed by #1028 |
I propose that corners.jl, which currently implements harris, shi-tomasi and kitchen_rosenfeld, be moved to ImageFeatures.jl and be re-written so that it conforms to the conventions of the ImageFeatures.jl package. I'd be happy to give this a go.
The text was updated successfully, but these errors were encountered: