View Source Evision.Reg.MapperPyramid (Evision v0.2.9)

Summary

Types

t()

Type that represents an Reg.MapperPyramid struct.

Types

@type t() :: %Evision.Reg.MapperPyramid{ref: reference()}

Type that represents an Reg.MapperPyramid struct.

  • ref. reference()

    The underlying erlang resource variable.

Functions

@spec calculate(Keyword.t()) :: any() | {:error, String.t()}
Link to this function

calculate(self, img1, img2)

View Source
@spec calculate(t(), Evision.Mat.maybe_mat_in(), Evision.Mat.maybe_mat_in()) ::
  Evision.Reg.Map.t() | {:error, String.t()}

calculate

Positional Arguments
Keyword Arguments
Return
  • retval: cv::Ptr<Map>

Python prototype (for reference only):

calculate(img1, img2[, init]) -> retval
Link to this function

calculate(self, img1, img2, opts)

View Source
@spec calculate(
  t(),
  Evision.Mat.maybe_mat_in(),
  Evision.Mat.maybe_mat_in(),
  [{:init, term()}] | nil
) ::
  Evision.Reg.Map.t() | {:error, String.t()}

calculate

Positional Arguments
Keyword Arguments
Return
  • retval: cv::Ptr<Map>

Python prototype (for reference only):

calculate(img1, img2[, init]) -> retval
Link to this function

get_numIterPerScale_(self)

View Source
@spec get_numIterPerScale_(t()) :: integer()
@spec get_numLev_(t()) :: integer()
@spec getMap(Keyword.t()) :: any() | {:error, String.t()}
@spec getMap(t()) :: Evision.Reg.Map.t() | {:error, String.t()}

getMap

Positional Arguments
  • self: Evision.Reg.MapperPyramid.t()
Return
  • retval: cv::Ptr<Map>

Python prototype (for reference only):

getMap() -> retval
Link to this function

mapperPyramid(named_args)

View Source
@spec mapperPyramid(Keyword.t()) :: any() | {:error, String.t()}
@spec mapperPyramid(Evision.Reg.Mapper.t()) :: t() | {:error, String.t()}

MapperPyramid

Positional Arguments
  • baseMapper: Mapper
Return
  • self: MapperPyramid

Python prototype (for reference only):

MapperPyramid(baseMapper) -> <reg_MapperPyramid object>
Link to this function

set_numIterPerScale_(self, prop)

View Source
@spec set_numIterPerScale_(t(), integer()) :: t()
@spec set_numLev_(t(), integer()) :: t()