pub mod quality;
pub mod realtime;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct KeyingParams {
pub key_color: [f32; 3],
pub similarity: f32,
pub smoothness: f32,
pub spill: f32,
}
impl Default for KeyingParams {
fn default() -> Self {
Self {
key_color: [0.0, 1.0, 0.0],
similarity: 0.5,
smoothness: 0.1,
spill: 0.5,
}
}
}