pub trait SinusoidalPattern_ParamsTraitConst {
    fn as_raw_SinusoidalPattern_Params(&self) -> *const c_void;

    fn width(&self) -> i32 { ... }
    fn height(&self) -> i32 { ... }
    fn nbr_of_periods(&self) -> i32 { ... }
    fn shift_value(&self) -> f32 { ... }
    fn method_id(&self) -> i32 { ... }
    fn nbr_of_pixels_between_markers(&self) -> i32 { ... }
    fn horizontal(&self) -> bool { ... }
    fn set_markers(&self) -> bool { ... }
    fn markers_location(&self) -> Vector<Point2f> { ... }
}
Expand description

Parameters of SinusoidalPattern constructor

Parameters

  • width: Projector’s width.
  • height: Projector’s height.
  • nbrOfPeriods: Number of period along the patterns direction.
  • shiftValue: Phase shift between two consecutive patterns.
  • methodId: Allow to choose between FTP, PSP and FAPS.
  • nbrOfPixelsBetweenMarkers: Number of pixels between two consecutive markers on the same row.
  • setMarkers: Allow to set markers on the patterns.
  • markersLocation: vector used to store markers location on the patterns.

Required Methods

Provided Methods

Implementors