View Source Evision.ThinPlateSplineShapeTransformer (Evision v0.2.2-rc2)

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

from_struct(thin_plate_spline_shape_transformer)

View Source
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