[][src]Trait opencv::shape::prelude::ThinPlateSplineShapeTransformer

pub trait ThinPlateSplineShapeTransformer: ShapeTransformer {
    pub fn as_raw_ThinPlateSplineShapeTransformer(&self) -> *const c_void;
pub fn as_raw_mut_ThinPlateSplineShapeTransformer(&mut self) -> *mut c_void; pub fn set_regularization_parameter(&mut self, beta: f64) -> Result<()> { ... }
pub fn get_regularization_parameter(&self) -> Result<f64> { ... } }

Definition of the transformation

occupied in the paper "Principal Warps: Thin-Plate Splines and Decomposition of Deformations", by F.L. Bookstein (PAMI 1989). :

Required methods

Loading content...

Provided methods

pub fn set_regularization_parameter(&mut self, beta: f64) -> Result<()>[src]

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

Parameters

  • beta: value of the regularization parameter.

pub fn get_regularization_parameter(&self) -> Result<f64>[src]

Loading content...

Implementors

Loading content...