public class CalibratedPoseAndPoint
extends java.lang.Object
configure(int, int) to specif the number
of views and points.| Constructor and Description |
|---|
CalibratedPoseAndPoint() |
| Modifier and Type | Method and Description |
|---|---|
void |
configure(int numViews,
int numPoints)
Specifies the number of views and 3D points being estimated
|
boolean[] |
getKnownArray()
An array that indicates which views are known and which views are not
|
int |
getNumPoints()
The number of points (or features) whose location is being optimized.
|
int |
getNumUnknownViews()
Returns the number of camera views which do not have a 'known' or fixed pose.
|
int |
getNumViews()
The number of camera views which observed the points/features
|
georegression.struct.point.Point3D_F64 |
getPoint(int index)
Returns the location of a specific point/feature
|
georegression.struct.se.Se3_F64 |
getWorldToCamera(int view)
Transform from world to camera view
|
boolean |
isViewKnown(int view)
Used to see if a particular view is marked as known or not
|
void |
setViewKnown(int view,
boolean known)
Specify if a view is assumed to have a known view or not.
|
public void configure(int numViews,
int numPoints)
numViews - Number of camera views observing the points.numPoints - Number of points observedpublic void setViewKnown(int view,
boolean known)
view - Index of the viewknown - true of known or false if not.public boolean isViewKnown(int view)
view - The view's indexpublic georegression.struct.se.Se3_F64 getWorldToCamera(int view)
view - The view's indexpublic georegression.struct.point.Point3D_F64 getPoint(int index)
index - Index of the pointpublic int getNumPoints()
public int getNumViews()
public int getNumUnknownViews()
public boolean[] getKnownArray()