Package boofcv.abst.feature.describe
Class DescribeRadiusAngle_Point<T extends ImageGray<T>,TD extends TupleDesc<TD>>
java.lang.Object
boofcv.abst.feature.describe.DescribeRadiusAngle_Point<T,TD>
- All Implemented Interfaces:
DescribePoint<T,,TD> DescriptorInfo<TD>
public class DescribeRadiusAngle_Point<T extends ImageGray<T>,TD extends TupleDesc<TD>>
extends Object
implements DescribePoint<T,TD>
Convert
DescribePointRadiusAngle into DescribePoint. Internally it uses OrientationImage
to estimate the feature's angle and DescribePointRadiusAngle to compute the descriptor. The region's
radius is user provided.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDescribeRadiusAngle_Point(DescribePointRadiusAngle<T, TD> describer, OrientationImage<T> orientationEstimator, double regionRadius) -
Method Summary
Modifier and TypeMethodDescriptionCreates new description instance which can be processed by this classThe type of region descriptor generatedDescription of the type of image it can processbooleanExtract a description of the local image at the the pixel coordinate of the point.voidSpecified the image which is to be processed.
-
Field Details
-
regionRadius
public double regionRadiusSize of the region's radius. If set to a value ≤ 0, then it will be changed to canonical radius
-
-
Constructor Details
-
DescribeRadiusAngle_Point
public DescribeRadiusAngle_Point(DescribePointRadiusAngle<T, TD> describer, OrientationImage<T> orientationEstimator, double regionRadius)
-
-
Method Details
-
setImage
Description copied from interface:DescribePointSpecified the image which is to be processed. -
process
Description copied from interface:DescribePointExtract a description of the local image at the the pixel coordinate of the point. WARNING: Check the returned value to make sure a description was actually computed. Some implementations might now allow features to extend outside the image border and will return false.- Specified by:
processin interfaceDescribePoint<T extends ImageGray<T>,TD extends TupleDesc<TD>> - Parameters:
x- Coordinate of the point.y- Coordinate of the point.description- (output) Storage for extracted feature. UseDescriptorInfo.createDescription()to create descriptor.- Returns:
- true if a descriptor can computed or false if not.
-
getImageType
Description copied from interface:DescribePointDescription of the type of image it can process- Specified by:
getImageTypein interfaceDescribePoint<T extends ImageGray<T>,TD extends TupleDesc<TD>> - Returns:
- ImageDataType
-
createDescription
Description copied from interface:DescriptorInfoCreates new description instance which can be processed by this class- Specified by:
createDescriptionin interfaceDescriptorInfo<T extends ImageGray<T>>- Returns:
- New descriptor
-
getDescriptionType
Description copied from interface:DescriptorInfoThe type of region descriptor generated- Specified by:
getDescriptionTypein interfaceDescriptorInfo<T extends ImageGray<T>>- Returns:
- Returns the descriptor type.
-