Table of Contents

Class MergeExposures

Namespace
Emgu.CV
Assembly
Emgu.CV.dll

The base class algorithms that can merge exposure sequence to a single image.

public abstract class MergeExposures : UnmanagedObject, IDisposable
Inheritance
MergeExposures
Implements
Derived
Inherited Members

Constructors

MergeExposures()

protected MergeExposures()

Fields

_mergeExposuresPtr

The pointer to the unmanaged MergeExposure object

protected nint _mergeExposuresPtr

Field Value

nint

Methods

DisposeObject()

Reset the native pointer to the MergeExposure object

protected override void DisposeObject()

Process(IInputArray, IOutputArray, IInputArray, IInputArray)

Merges images.

public void Process(IInputArray src, IOutputArray dst, IInputArray times, IInputArray response)

Parameters

src IInputArray

Vector of input images

dst IOutputArray

Result image

times IInputArray

Vector of exposure time values for each image

response IInputArray

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