vidi::pipelines

Struct AcquiredCamera

Source
pub struct AcquiredCamera(CameraId, ArcMutexGuard<RawMutex, dyn CameraImpl>);
Expand description

A representation of a camera that is ready to stream or streaming.

It may be modified even as the stream is running:

  • controls may be set
  • dynamic links may be changed

Tuple Fields§

§0: CameraId§1: ArcMutexGuard<RawMutex, dyn CameraImpl>

Implementations§

Source§

impl AcquiredCamera

Source

pub fn get_id(&self) -> &CameraId

Returns globally unique, camera ID, stable for this device and for this software version (ideally for all software versions).

Source

pub fn _video_capture_device(&self) -> &Device

Source

pub fn query_controls(&self) -> Result<Vec<Description>, Error>

Returns the camera controls.

Source

pub fn control(&self, control: &Description) -> Result<Control>

Reads the current value of the control.

Source

pub fn set_control(&self, control: Control) -> Result<()>

Sets the value of the control. May take effect after some frames.

Source

fn unwrap_config(&self, config: DeviceConfig) -> Option<PipelineState>

Verifies that the DeviceConfig belongs to this camera.

Source

fn configure(&mut self, config: &PipelineState) -> TracedResult<(), Error>

Source

fn configure_pipeline( &mut self, config: DeviceConfig, ) -> TracedResult<(), Error>

Source

pub fn start<'b>( &'b mut self, config: DeviceConfig, buffer_count: usize, ) -> TracedResult<Stream<Stream>, Error>

Starts recording from the camera

Source

pub fn start_manual( &mut self, config: DeviceConfig, buffer_count: usize, ) -> TracedResult<Stream<StreamManual>, Error>

Starts recording from the camera with manual buffer management

Source

pub fn create_configs_database<T: Database>(&mut self) -> Result<T>

Returns a database of supported configs.

Source

pub fn get_supported_configs(&mut self) -> Result<ConfigsDatabase>

Source

fn scan_configs(&mut self) -> Result<Vec<FrameSize>>

Returns the advertised configs, consisting of format and sizes

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more