[][src]Struct pico_detect::Localizer

pub struct Localizer { /* fields omitted */ }

Implements object localization using decision trees.

Details available here.

Implementations

impl Localizer[src]

pub fn localize(&self, image: &GrayImage, roi: &Point3<f32>) -> Point2<f32>[src]

Estimate object location on the image

Arguments

  • image - Target image.
  • roi - Initial location to start:
    • roi.x position on image x-axis,
    • roi.y position on image y-axis,
    • roi.z initial window size to search.

pub fn perturb_localize(
    &self,
    image: &GrayImage,
    roi: &Point3<f32>,
    rng: impl RngCore,
    nperturbs: usize
) -> Point2<f32>
[src]

Estimate object location on the image with perturbation to increase accuracy.

Arguments

  • image - Target image.
  • roi - Initial location to start:
    • roi.x initial position on image x-axis,
    • roi.y initial position on image y-axis,
    • roi.z initial window size (in pixels) to search.
  • rng - Source for randomness.
  • nperturbs - How many perturbations to make.

pub fn from_readable(readable: impl Read) -> Result<Self, Error>[src]

Create localizer from a readable source.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,