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

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

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
  • self: Evision.Reg.MapperPyramid.t()
  • img1: Evision.Mat.t()
  • img2: Evision.Mat.t()
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(),
  [{atom(), term()}, ...] | nil
) :: Evision.Reg.Map.t() | {:error, String.t()}

calculate

Positional Arguments
  • self: Evision.Reg.MapperPyramid.t()
  • img1: Evision.Mat.t()
  • img2: Evision.Mat.t()
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(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(baseMapper)

View Source
@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()