Package boofcv.struct.distort
Interface Point2Transform2_F64
- All Known Subinterfaces:
Point2Transform2Model_F64<Model>
- All Known Implementing Classes:
AddBrownNtoN_F64
,AddBrownPtoN_F64
,AddDivisionNtoN_F64
,DoNothing2Transform2_F64
,FlipVertical_F64
,FlipVerticalNorm2_F64
,NarrowToWidePtoP_F64
,PinholeNtoP_F64
,PinholePtoN_F64
,Point2Transform2BundleCamera
,PointTransformAffine_F64
,PointTransformHomography_F64
,RemoveBrownNtoN_F64
,RemoveBrownPtoN_F64
,RemoveDivisionNtoN_F64
,SequencePoint2Transform2_F64
,Transform2PixelThenNorm_F64
,Transform2ThenPixel_F64
public interface Point2Transform2_F64
Applies a transform to a 2D point.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
compute
(double x, double y, Point2D_F64 out) Applies transformationCreates a copy of this transform for use in concurrent application.
-
Method Details
-
compute
Applies transformation- Parameters:
x
- x-coordinate of pointy
- y-coordinate of pointout
- Transformed point location.
-
copyConcurrent
Point2Transform2_F64 copyConcurrent()Creates a copy of this transform for use in concurrent application. What that means is that any variable which might be modified by a concurrent call tocompute(double, double, georegression.struct.point.Point2D_F64)
is not passed to the 'copied' output. Expensive to compute models might be passed in as a reference.
-