Package boofcv.struct.sfm
Class ScaleTranslateRotate2D
- java.lang.Object
-
- boofcv.struct.sfm.ScaleTranslateRotate2D
-
public class ScaleTranslateRotate2D extends java.lang.ObjectMotion model for scale, translation, and rotation: (x',y') = (x,y)*R*scale + (tranX , tranY) R is rotation matrix.
-
-
Constructor Summary
Constructors Constructor Description ScaleTranslateRotate2D()ScaleTranslateRotate2D(double theta, double scale, double transX, double transY)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetScale()doublegetTheta()doublegetTransX()doublegetTransY()voidset(ScaleTranslateRotate2D src)voidsetScale(double scale)voidsetTheta(double theta)voidsetTransX(double transX)voidsetTransY(double transY)
-
-
-
Method Detail
-
set
public void set(ScaleTranslateRotate2D src)
-
getTheta
public double getTheta()
-
setTheta
public void setTheta(double theta)
-
getScale
public double getScale()
-
setScale
public void setScale(double scale)
-
getTransX
public double getTransX()
-
setTransX
public void setTransX(double transX)
-
getTransY
public double getTransY()
-
setTransY
public void setTransY(double transY)
-
-