You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@timholy Some descriptors like ORB and BRISK (currently working on this with FREAK) also calculate keypoints for description. If someone wants just the keypoints, there should be an option to retrieve those. But if the same keypoints are to be passed on to the create_descriptor function later on, they wont make any sense since we need the orientation as well as the scale of each keypoint. I was thinking of having a Feature type -
type Feature
keypoint::Keypoint
orientation::Float64
scale::Float64end
and then return an Array{Feature} from the extract_features function. Will such a structure make iteration over keypoints/features slow, since the person will probably just need the keypoints?
FREAK Roadmap
BRISK Roadmap
The text was updated successfully, but these errors were encountered: