View Source Evision.ThinPlateSplineShapeTransformer (Evision v0.1.37)

Summary

Types

t()

Type that represents an ThinPlateSplineShapeTransformer struct.

Functions

getRegularizationParameter

Set the regularization parameter for relaxing the exact interpolation requirements of the TPS algorithm.

Types

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

Type that represents an ThinPlateSplineShapeTransformer struct.

  • ref. reference()

    The underlying erlang resource variable.

Functions

Link to this function

getRegularizationParameter(self)

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

getRegularizationParameter

Positional Arguments
  • self: Evision.ThinPlateSplineShapeTransformer.t()
Return
  • retval: double

Python prototype (for reference only):

getRegularizationParameter() -> retval
Link to this function

setRegularizationParameter(self, beta)

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

Set the regularization parameter for relaxing the exact interpolation requirements of the TPS algorithm.

Positional Arguments
  • self: Evision.ThinPlateSplineShapeTransformer.t()

  • beta: double.

    value of the regularization parameter.

Python prototype (for reference only):

setRegularizationParameter(beta) -> None