class: FactoryStitchingTransform
[42:14] static extends: object
Static wrappers for boofcv.alg.sfm.d2.FactoryStitchingTransform.
Methods
-
createAffine_F64 ()
Creates a double affine stitching transform.
- @r
AStitchingTransform wrapper.
- @r
-
createAffine_F32 ()
Creates a float affine stitching transform.
- @r
AStitchingTransform wrapper.
- @r
-
createHomography_F64 ()
Creates a double homography stitching transform.
- @r
AStitchingTransform wrapper.
- @r
-
createHomography_F32 ()
Creates a float homography stitching transform.
- @r
AStitchingTransform wrapper.
- @r
class: ImageMotion2D
[94:7] extends: object
ImageMotion2D wraps boofcv.abst.sfm.d2.ImageMotion2D.
Members
- obj
Methods
-
ImageMotion2D (
object Obj)Wraps an image motion object.
- @p
Objis an existing ImageMotion2D.
- @p
-
process (
object Image)Processes an image.
- @p
Imageis the image. - @r
Trueon success.
- @p
-
reset ()
Resets the motion estimator.
-
setToFirst ()
Sets the first frame as current.
-
getFrameID ()
Gets the frame ID.
- @r
Theframe ID.
- @r
-
getFirstToCurrent ()
Gets first-to-current transform.
- @r
Araw Java transform object.
- @r
class: StitchingTransform
[68:7] extends: object
StitchingTransform wraps boofcv.alg.sfm.d2.StitchingTransform.
Members
- obj
Methods
-
StitchingTransform (
object Obj)Wraps a stitching transform.
- @p
Objis an existing StitchingTransform object.
- @p
-
convertPixel (
object Transform, Output = null)Converts an invertible transform into a pixel transform.
- @p
Transformis the source transform. - @p
Outputis the optional output pixel transform. - @r
Thepixel transform Java object.
- @p
-
convertH (
object Transform, Output = null)Converts an invertible transform into a homography.
- @p
Transformis the source transform. - @p
Outputis the optional output homography. - @r
AHomography2D_F64 Java object.
- @p
class: StitchingFromMotion2D
[130:7] extends: object
StitchingFromMotion2D wraps boofcv.alg.sfm.d2.StitchingFromMotion2D.
Members
- obj
Methods
-
StitchingFromMotion2D (
object Obj)Wraps a stitching pipeline.
- @p
Objis an existing StitchingFromMotion2D.
- @p
-
configure (
int Width, int Height, object WorldToInit)Configures the stitched image.
- @p
Widthis width. - @p
Heightis height. - @p
WorldToInitis the initial transform.
- @p
-
process (
object Image)Processes one image.
- @p
Imageis the input image. - @r
Trueon success.
- @p
-
getStitchedImage ()
Gets the stitched image.
- @r
Theraw BoofCV stitched image.
- @r
-
setOriginToCurrent ()
Sets the origin to the current frame.
-
reset ()
Resets the stitcher.
class: FactoryMotion2D
[22:14] static extends: object
Static wrappers for boofcv.factory.sfm.FactoryMotion2D.
Methods
-
createMotion2D (
...)Creates a 2D image motion estimator.
- @p
Argsare the BoofCV createMotion2D arguments: ransac iterations, thresholds, tracker, and transform. - @r
AnImageMotion2D wrapper.
- @p
-
createVideoStitch (
double MaxJumpFraction, object Motion, object ImageType)Creates a video stitching pipeline.
- @p
MaxJumpFractionis the maximum allowed jump fraction. - @p
Motionis an ImageMotion2D wrapper. - @p
ImageTypeis an ImageType wrapper. - @r
AStitchingFromMotion2D wrapper.
- @p