Stitching.DoPasPanaStitching Method

Definition

Namespace: P1.ImageSdk

A class to stitch L and R nir images from a Pas Pana camera group. The left image is regarded as the master image. The stitcher will seamlessly merge togther the two images into one large image. This function enables some control of environmental compensation of the calibration

public HugeBitmapImage DoPasPanaStitching(
    RawImage leftImage,
    IBitmapImage leftBitmap,
    ConvertConfig leftConfig,
    RawImage rightImage,
    IBitmapImage rightBitmap,
    ConvertConfig rightConfig,
    bool useMeanFocalPlane,
    ref StitchingMetrics metrics,
    ref double outputFocalLength
    );

Parameters:

leftImage

the left image (containing metadata etc.)

leftBitmap

the left Rgb bitmap.

leftConfig

is a reference to a convertconfig for the left image, where environmental compensation can be configured

rightImage

the right image (containing metadata etc.)

rightBitmap

the right Rgb bitmap.

rightConfig

is a reference to a convertconfig for the right image, where environmental compensation can be configured

useMeanFocalPlane

use mean focal plane option when generating the stitched image. I should not be necessary

metrics

is a reference to a metrics struct where resulting metrics for the stacking operation is returned

outputFocalLength

is a reference to a double value, where the used output focallength will be returned.

Returns:

The resulting stitched bitmap.