AlignExposures

Objective-C

@interface AlignExposures : Algorithm

Swift

class AlignExposures : Algorithm

The base class for algorithms that align images of the same scene with different exposures

Member of Photo

Methods

  • Aligns images

    Declaration

    Objective-C

    - (void)process:(nonnull NSArray<Mat *> *)src
                dst:(nonnull NSArray<Mat *> *)dst
              times:(nonnull Mat *)times
           response:(nonnull Mat *)response;

    Swift

    func process(src: [Mat], dst: [Mat], times: Mat, response: Mat)

    Parameters

    src

    vector of input images

    dst

    vector of aligned images

    times

    vector of exposure time values for each image

    response

    256x1 matrix with inverse camera response function for each pixel value, it should have the same number of channels as images.