[][src]Trait opencv::line_descriptor::prelude::BinaryDescriptorTrait

pub trait BinaryDescriptorTrait: AlgorithmTrait {
    pub fn as_raw_BinaryDescriptor(&self) -> *const c_void;
pub fn as_raw_mut_BinaryDescriptor(&mut self) -> *mut c_void; pub fn get_num_of_octaves(&mut self) -> Result<i32> { ... }
pub fn set_num_of_octaves(&mut self, octaves: i32) -> Result<()> { ... }
pub fn get_width_of_band(&mut self) -> Result<i32> { ... }
pub fn set_width_of_band(&mut self, width: i32) -> Result<()> { ... }
pub fn get_reduction_ratio(&mut self) -> Result<i32> { ... }
pub fn set_reduction_ratio(&mut self, r_ratio: i32) -> Result<()> { ... }
pub fn read(&mut self, fn_: &FileNode) -> Result<()> { ... }
pub fn write(&self, fs: &mut FileStorage) -> Result<()> { ... }
pub fn detect(
        &mut self,
        image: &Mat,
        keypoints: &mut Vector<KeyLine>,
        mask: &Mat
    ) -> Result<()> { ... }
pub fn detect_1(
        &self,
        images: &Vector<Mat>,
        keylines: &mut Vector<Vector<KeyLine>>,
        masks: &Vector<Mat>
    ) -> Result<()> { ... }
pub fn compute(
        &self,
        image: &Mat,
        keylines: &mut Vector<KeyLine>,
        descriptors: &mut Mat,
        return_float_descr: bool
    ) -> Result<()> { ... }
pub fn compute_1(
        &self,
        images: &Vector<Mat>,
        keylines: &mut Vector<Vector<KeyLine>>,
        descriptors: &mut Vector<Mat>,
        return_float_descr: bool
    ) -> Result<()> { ... }
pub fn descriptor_size(&self) -> Result<i32> { ... }
pub fn descriptor_type(&self) -> Result<i32> { ... }
pub fn default_norm(&self) -> Result<i32> { ... } }

Class implements both functionalities for detection of lines and computation of their binary descriptor.

Class' interface is mainly based on the ones of classical detectors and extractors, such as Feature2d's @ref features2d_main and @ref features2d_match. Retrieved information about lines is stored in line_descriptor::KeyLine objects.

Required methods

Loading content...

Provided methods

pub fn get_num_of_octaves(&mut self) -> Result<i32>[src]

Get current number of octaves

pub fn set_num_of_octaves(&mut self, octaves: i32) -> Result<()>[src]

Set number of octaves

Parameters

  • octaves: number of octaves

pub fn get_width_of_band(&mut self) -> Result<i32>[src]

Get current width of bands

pub fn set_width_of_band(&mut self, width: i32) -> Result<()>[src]

Set width of bands

Parameters

  • width: width of bands

pub fn get_reduction_ratio(&mut self) -> Result<i32>[src]

Get current reduction ratio (used in Gaussian pyramids)

pub fn set_reduction_ratio(&mut self, r_ratio: i32) -> Result<()>[src]

Set reduction ratio (used in Gaussian pyramids)

Parameters

  • rRatio: reduction ratio

pub fn read(&mut self, fn_: &FileNode) -> Result<()>[src]

Read parameters from a FileNode object and store them

Parameters

  • fn: source FileNode file

pub fn write(&self, fs: &mut FileStorage) -> Result<()>[src]

Store parameters to a FileStorage object

Parameters

  • fs: output FileStorage file

pub fn detect(
    &mut self,
    image: &Mat,
    keypoints: &mut Vector<KeyLine>,
    mask: &Mat
) -> Result<()>
[src]

Requires line detection

Parameters

  • image: input image
  • keypoints: vector that will store extracted lines for one or more images
  • mask: mask matrix to detect only KeyLines of interest

C++ default parameters

  • mask: Mat()

pub fn detect_1(
    &self,
    images: &Vector<Mat>,
    keylines: &mut Vector<Vector<KeyLine>>,
    masks: &Vector<Mat>
) -> Result<()>
[src]

Requires line detection

Parameters

  • image: input image
  • keypoints: vector that will store extracted lines for one or more images
  • mask: mask matrix to detect only KeyLines of interest

Overloaded parameters

  • images: input images
  • keylines: set of vectors that will store extracted lines for one or more images
  • masks: vector of mask matrices to detect only KeyLines of interest from each input image

C++ default parameters

  • masks: std::vector()

pub fn compute(
    &self,
    image: &Mat,
    keylines: &mut Vector<KeyLine>,
    descriptors: &mut Mat,
    return_float_descr: bool
) -> Result<()>
[src]

Requires descriptors computation

Parameters

  • image: input image
  • keylines: vector containing lines for which descriptors must be computed
  • descriptors:
  • returnFloatDescr: flag (when set to true, original non-binary descriptors are returned)

C++ default parameters

  • return_float_descr: false

pub fn compute_1(
    &self,
    images: &Vector<Mat>,
    keylines: &mut Vector<Vector<KeyLine>>,
    descriptors: &mut Vector<Mat>,
    return_float_descr: bool
) -> Result<()>
[src]

Requires descriptors computation

Parameters

  • image: input image
  • keylines: vector containing lines for which descriptors must be computed
  • descriptors:
  • returnFloatDescr: flag (when set to true, original non-binary descriptors are returned)

Overloaded parameters

  • images: input images
  • keylines: set of vectors containing lines for which descriptors must be computed
  • descriptors:
  • returnFloatDescr: flag (when set to true, original non-binary descriptors are returned)

C++ default parameters

  • return_float_descr: false

pub fn descriptor_size(&self) -> Result<i32>[src]

Return descriptor size

pub fn descriptor_type(&self) -> Result<i32>[src]

Return data type

pub fn default_norm(&self) -> Result<i32>[src]

returns norm mode

Loading content...

Implementors

Loading content...