pub trait SensorModel<S>{
// Required methods
fn normalized_to_sensor(
&self,
n: &OPoint<S, Const<2>>,
) -> OPoint<S, Const<2>>;
fn sensor_to_normalized(
&self,
s: &OPoint<S, Const<2>>,
) -> OPoint<S, Const<2>>;
}Expand description
Sensor model mapping between normalized and sensor-plane coordinates.