View Source Evision.LineMod.DepthNormal (Evision v0.1.38)

Summary

Types

t()

Type that represents an LineMod.DepthNormal struct.

Types

@type t() :: %Evision.LineMod.DepthNormal{ref: reference()}

Type that represents an LineMod.DepthNormal struct.

  • ref. reference()

    The underlying erlang resource variable.

Functions

Link to this function

create(distance_threshold, difference_threshold, num_features, extract_threshold)

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

create

Positional Arguments
  • distance_threshold: int
  • difference_threshold: int
  • num_features: size_t
  • extract_threshold: int
Return
  • retval: DepthNormal

\brief Constructor. \param distance_threshold Ignore pixels beyond this distance. \param difference_threshold When computing normals, ignore contributions of pixels whose

                         depth difference with the central pixel is above this threshold.

\param num_features How many features a template must contain. \param extract_threshold Consider as candidate feature only if there are no differing

                         orientations within a distance of extract_threshold.

Python prototype (for reference only):

create(distance_threshold, difference_threshold, num_features, extract_threshold) -> retval
Link to this function

get_difference_threshold(self)

View Source
@spec get_difference_threshold(t()) :: integer()
Link to this function

get_distance_threshold(self)

View Source
@spec get_distance_threshold(t()) :: integer()
Link to this function

get_extract_threshold(self)

View Source
@spec get_extract_threshold(t()) :: integer()
@spec get_num_features(t()) :: integer()