[][src]Struct openvino::InferRequest

pub struct InferRequest { /* fields omitted */ }

Implementations

impl InferRequest[src]

pub fn set_batch_size(&mut self, size: usize) -> Result<(), InferenceError>[src]

Set the batch size of the inference requests.

pub fn set_blob(&mut self, name: &str, blob: Blob) -> Result<(), InferenceError>[src]

Assign a Blob to the input (i.e. name) on the network.

pub fn get_blob(&mut self, name: &str) -> Result<Blob, InferenceError>[src]

Retrieve a Blob from the output (i.e. name) on the network.

pub fn infer(&mut self) -> Result<(), InferenceError>[src]

Execute the inference request.

Trait Implementations

impl Drop for InferRequest[src]

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, 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.