com.craftar
Class CraftARResult
- java.lang.Object
- com.craftar.CraftARResult
public class CraftARResult extends java.lang.Object
ACraftARResult
holds the information about an item found in a visual search query: the item, the image matched, the score and the bounding box in the query image for the matched image.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description CraftARBoundingBox
getBoundingBox()
Bounding box in the query image of the reference image matched.CraftARItem
getItem()
CraftARItem matched for this result.CraftARImage
getMatchedImage()
Returns the image that matched with the query image.int
getScore()
Recognition score for the matched image
-
-
-
Method Detail
-
getItem
public CraftARItem getItem()
CraftARItem matched for this result.
-
getBoundingBox
public CraftARBoundingBox getBoundingBox()
Bounding box in the query image of the reference image matched.
-
getScore
public int getScore()
Recognition score for the matched image
-
getMatchedImage
public CraftARImage getMatchedImage()
Returns the image that matched with the query image.
-
-