View Source Evision.RGBD.Odometry (Evision v0.2.7)

Summary

Types

t()

Type that represents an RGBD.Odometry struct.

Enumerator

Types

@type enum() :: integer()
@type t() :: %Evision.RGBD.Odometry{ref: reference()}

Type that represents an RGBD.Odometry struct.

  • ref. reference()

    The underlying erlang resource variable.

Functions

@spec clear(Keyword.t()) :: any() | {:error, String.t()}
@spec clear(t()) :: t() | {:error, String.t()}

Clears the algorithm state

Positional Arguments
  • self: Evision.RGBD.Odometry.t()

Python prototype (for reference only):

clear() -> None
@spec compute2(Keyword.t()) :: any() | {:error, String.t()}
Link to this function

compute2(self, srcFrame, dstFrame)

View Source
@spec compute2(t(), Evision.RGBD.OdometryFrame.t(), Evision.RGBD.OdometryFrame.t()) ::
  Evision.Mat.t() | false | {:error, String.t()}

compute2

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
  • srcFrame: OdometryFrame
  • dstFrame: OdometryFrame
Keyword Arguments
Return
  • retval: bool
  • rt: Evision.Mat.t().

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.).

Python prototype (for reference only):

compute2(srcFrame, dstFrame[, Rt[, initRt]]) -> retval, Rt
Link to this function

compute2(self, srcFrame, dstFrame, opts)

View Source
@spec compute2(
  t(),
  Evision.RGBD.OdometryFrame.t(),
  Evision.RGBD.OdometryFrame.t(),
  [{:initRt, term()}] | nil
) :: Evision.Mat.t() | false | {:error, String.t()}

compute2

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
  • srcFrame: OdometryFrame
  • dstFrame: OdometryFrame
Keyword Arguments
Return
  • retval: bool
  • rt: Evision.Mat.t().

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.).

Python prototype (for reference only):

compute2(srcFrame, dstFrame[, Rt[, initRt]]) -> retval, Rt
@spec compute(Keyword.t()) :: any() | {:error, String.t()}
Link to this function

compute(self, srcImage, srcDepth, srcMask, dstImage, dstDepth, dstMask)

View Source

compute

Positional Arguments
  • self: Evision.RGBD.Odometry.t()

  • srcImage: Evision.Mat.

    Image data of the source frame (CV_8UC1)

  • srcDepth: Evision.Mat.

    Depth data of the source frame (CV_32FC1, in meters)

  • srcMask: Evision.Mat.

    Mask that sets which pixels have to be used from the source frame (CV_8UC1)

  • dstImage: Evision.Mat.

    Image data of the destination frame (CV_8UC1)

  • dstDepth: Evision.Mat.

    Depth data of the destination frame (CV_32FC1, in meters)

  • dstMask: Evision.Mat.

    Mask that sets which pixels have to be used from the destination frame (CV_8UC1)

Keyword Arguments
  • initRt: Evision.Mat.

    Initial transformation from the source frame to the destination one (optional)

Return
  • retval: bool

  • rt: Evision.Mat.t().

    Resulting transformation from the source frame to the destination one (rigid body motion): dst_p = Rt * src_p, where dst_p is a homogeneous point in the destination frame and src_p is homogeneous point in the source frame, Rt is 4x4 matrix of CV_64FC1 type.

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it's provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation).

Python prototype (for reference only):

compute(srcImage, srcDepth, srcMask, dstImage, dstDepth, dstMask[, Rt[, initRt]]) -> retval, Rt
Link to this function

compute(self, srcImage, srcDepth, srcMask, dstImage, dstDepth, dstMask, opts)

View Source

compute

Positional Arguments
  • self: Evision.RGBD.Odometry.t()

  • srcImage: Evision.Mat.

    Image data of the source frame (CV_8UC1)

  • srcDepth: Evision.Mat.

    Depth data of the source frame (CV_32FC1, in meters)

  • srcMask: Evision.Mat.

    Mask that sets which pixels have to be used from the source frame (CV_8UC1)

  • dstImage: Evision.Mat.

    Image data of the destination frame (CV_8UC1)

  • dstDepth: Evision.Mat.

    Depth data of the destination frame (CV_32FC1, in meters)

  • dstMask: Evision.Mat.

    Mask that sets which pixels have to be used from the destination frame (CV_8UC1)

Keyword Arguments
  • initRt: Evision.Mat.

    Initial transformation from the source frame to the destination one (optional)

Return
  • retval: bool

  • rt: Evision.Mat.t().

    Resulting transformation from the source frame to the destination one (rigid body motion): dst_p = Rt * src_p, where dst_p is a homogeneous point in the destination frame and src_p is homogeneous point in the source frame, Rt is 4x4 matrix of CV_64FC1 type.

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it's provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation).

Python prototype (for reference only):

compute(srcImage, srcDepth, srcMask, dstImage, dstDepth, dstMask[, Rt[, initRt]]) -> retval, Rt
@spec create(Keyword.t()) :: any() | {:error, String.t()}
@spec create(binary()) :: t() | {:error, String.t()}

create

Positional Arguments
Return
  • retval: Odometry

Python prototype (for reference only):

create(odometryType) -> retval
Link to this function

default_max_depth(named_args)

View Source
@spec default_max_depth(Keyword.t()) :: any() | {:error, String.t()}
@spec default_max_depth(t()) :: number() | {:error, String.t()}

DEFAULT_MAX_DEPTH

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: float

Python prototype (for reference only):

DEFAULT_MAX_DEPTH() -> retval
Link to this function

default_max_depth_diff(named_args)

View Source
@spec default_max_depth_diff(Keyword.t()) :: any() | {:error, String.t()}
@spec default_max_depth_diff(t()) :: number() | {:error, String.t()}

DEFAULT_MAX_DEPTH_DIFF

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: float

Python prototype (for reference only):

DEFAULT_MAX_DEPTH_DIFF() -> retval
Link to this function

default_max_points_part(named_args)

View Source
@spec default_max_points_part(Keyword.t()) :: any() | {:error, String.t()}
@spec default_max_points_part(t()) :: number() | {:error, String.t()}

DEFAULT_MAX_POINTS_PART

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: float

Python prototype (for reference only):

DEFAULT_MAX_POINTS_PART() -> retval
Link to this function

default_max_rotation(named_args)

View Source
@spec default_max_rotation(Keyword.t()) :: any() | {:error, String.t()}
@spec default_max_rotation(t()) :: number() | {:error, String.t()}

DEFAULT_MAX_ROTATION

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: float

Python prototype (for reference only):

DEFAULT_MAX_ROTATION() -> retval
Link to this function

default_max_translation(named_args)

View Source
@spec default_max_translation(Keyword.t()) :: any() | {:error, String.t()}
@spec default_max_translation(t()) :: number() | {:error, String.t()}

DEFAULT_MAX_TRANSLATION

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: float

Python prototype (for reference only):

DEFAULT_MAX_TRANSLATION() -> retval
Link to this function

default_min_depth(named_args)

View Source
@spec default_min_depth(Keyword.t()) :: any() | {:error, String.t()}
@spec default_min_depth(t()) :: number() | {:error, String.t()}

DEFAULT_MIN_DEPTH

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: float

Python prototype (for reference only):

DEFAULT_MIN_DEPTH() -> retval
@spec empty(Keyword.t()) :: any() | {:error, String.t()}
@spec empty(t()) :: boolean() | {:error, String.t()}

Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: bool

Python prototype (for reference only):

empty() -> retval
Link to this function

getCameraMatrix(named_args)

View Source
@spec getCameraMatrix(Keyword.t()) :: any() | {:error, String.t()}
@spec getCameraMatrix(t()) :: Evision.Mat.t() | {:error, String.t()}

getCameraMatrix

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: Evision.Mat.t()

@see setCameraMatrix/2

Python prototype (for reference only):

getCameraMatrix() -> retval
Link to this function

getDefaultName(named_args)

View Source
@spec getDefaultName(Keyword.t()) :: any() | {:error, String.t()}
@spec getDefaultName(t()) :: binary() | {:error, String.t()}

getDefaultName

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return

Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string.

Python prototype (for reference only):

getDefaultName() -> retval
Link to this function

getTransformType(named_args)

View Source
@spec getTransformType(Keyword.t()) :: any() | {:error, String.t()}
@spec getTransformType(t()) :: integer() | {:error, String.t()}

getTransformType

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
Return
  • retval: integer()

@see setTransformType/2

Python prototype (for reference only):

getTransformType() -> retval
Link to this function

prepareFrameCache(named_args)

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

prepareFrameCache(self, frame, cacheType)

View Source
@spec prepareFrameCache(t(), Evision.RGBD.OdometryFrame.t(), integer()) ::
  {number(), number()} | {:error, String.t()}

prepareFrameCache

Positional Arguments
  • self: Evision.RGBD.Odometry.t()

  • frame: OdometryFrame.

    The odometry which will process the frame.

  • cacheType: integer().

    The cache type: CACHE_SRC, CACHE_DST or CACHE_ALL.

Return
  • retval: Size

Prepare a cache for the frame. The function checks the precomputed/passed data (throws the error if this data does not satisfy) and computes all remaining cache data needed for the frame. Returned size is a resolution of the prepared frame.

Python prototype (for reference only):

prepareFrameCache(frame, cacheType) -> retval
@spec read(Keyword.t()) :: any() | {:error, String.t()}
@spec read(t(), Evision.FileNode.t()) :: t() | {:error, String.t()}

Reads algorithm parameters from a file storage

Positional Arguments

Python prototype (for reference only):

read(fn) -> None
@spec save(Keyword.t()) :: any() | {:error, String.t()}
@spec save(t(), binary()) :: t() | {:error, String.t()}

save

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
  • filename: String

Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).

Python prototype (for reference only):

save(filename) -> None
Link to this function

setCameraMatrix(named_args)

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

setCameraMatrix(self, val)

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

setCameraMatrix

Positional Arguments

@see getCameraMatrix/1

Python prototype (for reference only):

setCameraMatrix(val) -> None
Link to this function

setTransformType(named_args)

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

setTransformType(self, val)

View Source
@spec setTransformType(t(), integer()) :: t() | {:error, String.t()}

setTransformType

Positional Arguments
  • self: Evision.RGBD.Odometry.t()
  • val: integer()

@see getTransformType/1

Python prototype (for reference only):

setTransformType(val) -> None
@spec write(Keyword.t()) :: any() | {:error, String.t()}
@spec write(t(), Evision.FileStorage.t()) :: t() | {:error, String.t()}

Stores algorithm parameters in a file storage

Positional Arguments

Python prototype (for reference only):

write(fs) -> None
@spec write(t(), Evision.FileStorage.t(), binary()) :: t() | {:error, String.t()}

write

Positional Arguments

Has overloading in C++

Python prototype (for reference only):

write(fs, name) -> None