pub enum Illumination {
KVectors(Vec<KVector>),
Angles(AngleList),
LEDArray(LEDArray),
LEDSphere(LEDSphere),
SphericalLEDArm(SphericalLEDArm),
RotatingLEDArc(RotatingLEDArc),
Coded(CodedIllumination),
Calibrated {
k_vectors: Vec<KVector>,
frame_gains: Option<Vec<f64>>,
frame_weights: Option<MultiplexingMatrix>,
},
}Variants§
KVectors(Vec<KVector>)
Angles(AngleList)
LEDArray(LEDArray)
LEDSphere(LEDSphere)
SphericalLEDArm(SphericalLEDArm)
RotatingLEDArc(RotatingLEDArc)
Coded(CodedIllumination)
Calibrated
Imported/calibrated source vectors with optional per-frame gains and optional incoherent multiplexing rows.
Trait Implementations§
Source§impl Clone for Illumination
impl Clone for Illumination
Source§fn clone(&self) -> Illumination
fn clone(&self) -> Illumination
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Illumination
impl Debug for Illumination
Source§impl<'de> Deserialize<'de> for Illumination
impl<'de> Deserialize<'de> for Illumination
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IlluminationSource for Illumination
impl IlluminationSource for Illumination
fn k_vectors(&self, optics: &Optics) -> Result<Vec<KVector>>
Source§fn frame_gains(&self) -> Result<Option<Vec<f64>>>
fn frame_gains(&self) -> Result<Option<Vec<f64>>>
Optional multiplicative intensity gain for each compiled frame.
Source§fn multiplexing_matrix(&self) -> Result<Option<MultiplexingMatrix>>
fn multiplexing_matrix(&self) -> Result<Option<MultiplexingMatrix>>
Optional incoherent source weights for each measured frame.
Auto Trait Implementations§
impl Freeze for Illumination
impl RefUnwindSafe for Illumination
impl Send for Illumination
impl Sync for Illumination
impl Unpin for Illumination
impl UnsafeUnpin for Illumination
impl UnwindSafe for Illumination
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more