public interface LookupSimilarImages
| Modifier and Type | Method and Description |
|---|---|
void |
findSimilar(java.lang.String target,
java.util.List<java.lang.String> similar) |
java.util.List<java.lang.String> |
getImageIDs() |
boolean |
lookupMatches(java.lang.String viewA,
java.lang.String viewB,
org.ddogleg.struct.FastQueue<boofcv.struct.feature.AssociatedIndex> pairs)
Looks up associated features between the two views.
|
void |
lookupPixelFeats(java.lang.String target,
org.ddogleg.struct.FastQueue<georegression.struct.point.Point2D_F64> features)
Looks up pixel observations of features in the specified view.
|
void |
lookupShape(java.lang.String target,
boofcv.struct.image.ImageDimension shape)
Looks up the original images width and height
|
java.util.List<java.lang.String> getImageIDs()
void findSimilar(java.lang.String target,
java.util.List<java.lang.String> similar)
target - ID of target imagesimilar - Storage for IDs of similar images. Cleared upon each callvoid lookupPixelFeats(java.lang.String target,
org.ddogleg.struct.FastQueue<georegression.struct.point.Point2D_F64> features)
target - ID of target imagefeatures - Storage for pixel observations. Cleared upon each callboolean lookupMatches(java.lang.String viewA,
java.lang.String viewB,
org.ddogleg.struct.FastQueue<boofcv.struct.feature.AssociatedIndex> pairs)
viewA - name of view AviewB - name of view Bpairs - Storage for associated features. Cleared upon each callvoid lookupShape(java.lang.String target,
boofcv.struct.image.ImageDimension shape)
target - (Input) the image to retrieve fromshape - (Output) storage for width and height