View Source Evision.AlignExposures (Evision v0.1.13)
Link to this section Summary
Types
Type that represents an Evision.AlignExposures
struct.
Functions
Aligns images
Link to this section Types
@type t() :: %Evision.AlignExposures{ref: reference()}
Type that represents an Evision.AlignExposures
struct.
ref.
reference()
The underlying erlang resource variable.
Link to this section Functions
@spec process( t(), [Evision.Mat.maybe_mat_in()], [Evision.Mat.maybe_mat_in()], Evision.Mat.maybe_mat_in(), Evision.Mat.maybe_mat_in() ) :: :ok | {:error, String.t()}
Aligns images
Positional Arguments
src:
[Evision.Mat]
.vector of input images
dst:
[Evision.Mat]
.vector of aligned images
times:
Evision.Mat
.vector of exposure time values for each image
response:
Evision.Mat
.256x1 matrix with inverse camera response function for each pixel value, it should have the same number of channels as images.
Python prototype (for reference):
process(src, dst, times, response) -> None