Class ScaleTranslateRotate2D

java.lang.Object
boofcv.struct.geo.ScaleTranslateRotate2D

public class ScaleTranslateRotate2D extends Object
Motion model for scale, translation, and rotation: (x',y') = (x,y)*R*scale + (tranX , tranY) R is rotation matrix.
  • Field Details

    • scale

      public double scale
      Scaling
    • transX

      public double transX
      Translation along x and y axis
    • transY

      public double transY
      Translation along x and y axis
    • theta

      public double theta
      Angle of rotation
  • Constructor Details

    • ScaleTranslateRotate2D

      public ScaleTranslateRotate2D(double theta, double scale, double transX, double transY)
    • ScaleTranslateRotate2D

      public ScaleTranslateRotate2D()
  • Method Details