Package boofcv.alg.sfm.d3.direct
Class PyramidDirectColorDepth.LayerTo3D
java.lang.Object
boofcv.alg.sfm.d3.direct.PyramidDirectColorDepth.LayerTo3D
- All Implemented Interfaces:
ImagePixelTo3D
- Enclosing class:
- PyramidDirectColorDepth<T extends ImageGray<T>>
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondouble
getW()
Found w-coordinate of point in camera coordinate system.double
getX()
Found x-coordinate of point in camera coordinate system.double
getY()
Found y-coordinate of point in camera coordinate system.double
getZ()
Found z-coordinate of point in camera coordinate system.boolean
process
(double x, double y) Estimate the location of the pixel in 3D camera coordinates.void
wrap
(ImagePixelTo3D orig)
-
Field Details
-
scale
public double scale
-
-
Constructor Details
-
LayerTo3D
public LayerTo3D()
-
-
Method Details
-
wrap
-
process
public boolean process(double x, double y) Description copied from interface:ImagePixelTo3D
Estimate the location of the pixel in 3D camera coordinates.- Specified by:
process
in interfaceImagePixelTo3D
- Parameters:
x
- x-coordinate of the pixely
- y-coordinate of the pixel- Returns:
- true if a position could be estimated and false if not.
-
getX
public double getX()Description copied from interface:ImagePixelTo3D
Found x-coordinate of point in camera coordinate system.- Specified by:
getX
in interfaceImagePixelTo3D
- Returns:
- x-coordinate
-
getY
public double getY()Description copied from interface:ImagePixelTo3D
Found y-coordinate of point in camera coordinate system.- Specified by:
getY
in interfaceImagePixelTo3D
- Returns:
- y-coordinate
-
getZ
public double getZ()Description copied from interface:ImagePixelTo3D
Found z-coordinate of point in camera coordinate system.- Specified by:
getZ
in interfaceImagePixelTo3D
- Returns:
- z-coordinate
-
getW
public double getW()Description copied from interface:ImagePixelTo3D
Found w-coordinate of point in camera coordinate system. If a point is at infinity then this value will be zero.- Specified by:
getW
in interfaceImagePixelTo3D
- Returns:
- w-coordinate
-