ImageJS
    Preparing search index...

    Interface GetAffineTransformOptions

    interface GetAffineTransformOptions {
        bestKeypointRadius?: number;
        centroidPatchDiameter?: number;
        crosscheck?: boolean;
        debug?: boolean;
        debugImagePath?: string;
        destinationOrigin?: Point;
        enhanceContrast?: boolean;
        maxRansacNbIterations?: number;
    }
    Index

    Properties

    bestKeypointRadius?: number

    10

    centroidPatchDiameter?: number

    31

    crosscheck?: boolean

    Should only the crossckeck matches be considered.

    true

    debug?: boolean

    Save images with matches for debugging.

    false

    debugImagePath?: string

    Path of the debug image.

    ${import.meta.dirname}/montage.png

    destinationOrigin?: Point

    Origin of the destination image relative to the top-left corner of the source image. Roughly indicates the position of the destination image in the source image. Is used to filter matches by distance as well as to define a subarea of the source image to use for contrast enhancement.

    { column: 0, row: 0 }

    enhanceContrast?: boolean

    Should the contrast of the images be enhanced before feature matching.

    true

    maxRansacNbIterations?: number

    Max number of iterations of the ransac algorithm.