Docs.rs
  • opencv-0.76.3
    • opencv 0.76.3
    • Docs.rs crate page
    • MIT
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • twistedfall
    • Dependencies
      • libc ^0.2 normal
      • num-traits ^0.2 normal
      • once_cell ^1 normal
      • rgb ^0.8.20 normal
      • matches ^0.1 dev
      • cc ^1 build
      • clang ^2 build
      • dunce ^1 build
      • jobserver ^0.1.25 build
      • once_cell ^1 build
      • opencv-binding-generator ^0.55.0 build
      • pkg-config ^0.3 build
      • semver ^1 build
      • shlex ^1 build
      • vcpkg ^0.2.9 build
    • Versions
    • 77.78% of the crate is documented
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

logo

AgastFeatureDetectorConst

Required Methods

  • as_raw_AgastFeatureDetector

Provided Methods

  • get_default_name
  • get_nonmax_suppression
  • get_threshold
  • get_type

Implementors

In opencv::prelude

?
Change settings

Trait opencv::prelude::AgastFeatureDetectorConst

source ·
pub trait AgastFeatureDetectorConst: Feature2DTraitConst {
    fn as_raw_AgastFeatureDetector(&self) -> *const c_void;

    fn get_threshold(&self) -> Result<i32> { ... }
    fn get_nonmax_suppression(&self) -> Result<bool> { ... }
    fn get_type(&self) -> Result<AgastFeatureDetector_DetectorType> { ... }
    fn get_default_name(&self) -> Result<String> { ... }
}
Expand description

Constant methods for crate::features2d::AgastFeatureDetector

Required Methods§

source

fn as_raw_AgastFeatureDetector(&self) -> *const c_void

Provided Methods§

source

fn get_threshold(&self) -> Result<i32>

source

fn get_nonmax_suppression(&self) -> Result<bool>

source

fn get_type(&self) -> Result<AgastFeatureDetector_DetectorType>

source

fn get_default_name(&self) -> Result<String>

Implementors§

source§

impl AgastFeatureDetectorConst for Ptr<dyn AgastFeatureDetector>