Package boofcv.abst.fiducial
Class ECoCheck_to_FiducialDetector<T extends ImageGray<T>>
java.lang.Object
boofcv.abst.fiducial.FiducialDetectorPnP<T>
boofcv.abst.fiducial.ECoCheck_to_FiducialDetector<T>
- All Implemented Interfaces:
FiducialDetector<T>
Wrapper around
ECoCheckDetector
for FiducialDetector
.-
Field Summary
Fields inherited from class boofcv.abst.fiducial.FiducialDetectorPnP
pixelToNorm
-
Constructor Summary
ConstructorDescriptionECoCheck_to_FiducialDetector
(ECoCheckDetector<T> detector, FastArray<ConfigECoCheckMarkers.MarkerShape> markerShapes) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Detects fiducials inside the image.getBounds
(int which, @Nullable Polygon2D_F64 storage) Used to retrieve the bounds around a marker in the image.void
getCenter
(int which, Point2D_F64 location) Returns where in the image the fiducial is.getControl3D
(int which) 3D location of control points in the fiducial reference framegetDetectedControl
(int which) Returns a list of detected control points in the image for the specified fiducial.long
getId
(int which) If applicable, returns the ID of the fiducial found.Type of input imagegetMessage
(int which) If applicable, returns a message associated with the fiducial.double
getSideHeight
(int which) Height of the fiducial.double
getSideWidth
(int which) Width of the fiducial.double
getWidth
(int which) Returns the width of the fiducial in world units.boolean
hasID()
If true thenFiducialDetector.getId(int)
returns a valid unique numberboolean
If true thenFiducialDetector.getMessage(int)
returns a valid messageint
The total number of fiducial foundMethods inherited from class boofcv.abst.fiducial.FiducialDetectorPnP
computeStability, estimatePose, getFiducialToCamera, getLensDistortion, is3D, setLensDistortion
-
Constructor Details
-
ECoCheck_to_FiducialDetector
public ECoCheck_to_FiducialDetector(ECoCheckDetector<T> detector, FastArray<ConfigECoCheckMarkers.MarkerShape> markerShapes)
-
-
Method Details
-
detect
Description copied from interface:FiducialDetector
Detects fiducials inside the image. Each call to this function only depends upon the input image. The previous calls do not affect it's outcome.- Parameters:
input
- Input image. Not modified.
-
totalFound
public int totalFound()Description copied from interface:FiducialDetector
The total number of fiducial found- Returns:
- number of targets found
-
getCenter
Description copied from interface:FiducialDetector
Returns where in the image the fiducial is. Typically this will be the fiducial's visual center. Note that the visual center is unlikely to be the projection of the 3D geometric center. To find the former you need to reproject it using the found fiducialToCamera.NOTE: The reprojected center might not be the same as the location returned here.
- Parameters:
which
- Fiducial's indexlocation
- (output) Storage for the transform. modified.
-
getBounds
Description copied from interface:FiducialDetector
Used to retrieve the bounds around a marker in the image. How the bounds are defined is left up the implementation. It could be a simple rectangle or it could be corner features.- Parameters:
which
- Which fiducial.storage
- (Optional) Storage for fiducials.- Returns:
- Found marker. Points are owned by the caller and will not be modified in the future.
-
getId
public long getId(int which) Description copied from interface:FiducialDetector
If applicable, returns the ID of the fiducial found. CallFiducialDetector.hasID()
to see if this function returns a valid value.- Parameters:
which
- Detected fiducial's index- Returns:
- ID of the fiducial
-
getMessage
Description copied from interface:FiducialDetector
If applicable, returns a message associated with the fiducial. CallFiducialDetector.hasMessage()
()} to see if this function returns a valid value.- Parameters:
which
- Detected fiducial's index- Returns:
- Encoded message
-
getWidth
public double getWidth(int which) Description copied from interface:FiducialDetector
Returns the width of the fiducial in world units. If not square then it returns a reasonable approximation. Intended for use in visualization and not precise calculations.- Parameters:
which
- Fiducial's index- Returns:
- Fiducial's width.
-
hasID
public boolean hasID()Description copied from interface:FiducialDetector
If true thenFiducialDetector.getId(int)
returns a valid unique number- Returns:
- boolean
-
hasMessage
public boolean hasMessage()Description copied from interface:FiducialDetector
If true thenFiducialDetector.getMessage(int)
returns a valid message- Returns:
- boolean
-
getInputType
Description copied from interface:FiducialDetector
Type of input image -
getSideWidth
public double getSideWidth(int which) Description copied from class:FiducialDetectorPnP
Width of the fiducial. used to compute stability- Specified by:
getSideWidth
in classFiducialDetectorPnP<T extends ImageGray<T>>
- Parameters:
which
- specifies which fiducial- Returns:
- the width
-
getSideHeight
public double getSideHeight(int which) Description copied from class:FiducialDetectorPnP
Height of the fiducial. used to compute stability- Specified by:
getSideHeight
in classFiducialDetectorPnP<T extends ImageGray<T>>
- Parameters:
which
- specifies which fiducial- Returns:
- the height
-
getDetectedControl
Description copied from class:FiducialDetectorPnP
Returns a list of detected control points in the image for the specified fiducial. Observations will be in distorted image pixels.- Specified by:
getDetectedControl
in classFiducialDetectorPnP<T extends ImageGray<T>>
-
getControl3D
Description copied from class:FiducialDetectorPnP
3D location of control points in the fiducial reference frame- Specified by:
getControl3D
in classFiducialDetectorPnP<T extends ImageGray<T>>
- Returns:
- 3D location of control points
-