pub trait SweepProcessor {
// Required methods
fn name(&self) -> &str;
fn process(&self, input: &SweepField) -> Result<SweepField>;
}Expand description
Transforms one SweepField into another.
This is the primary processing trait for single-sweep algorithms such as filtering, smoothing, and clutter removal.
Required Methods§
Sourcefn process(&self, input: &SweepField) -> Result<SweepField>
fn process(&self, input: &SweepField) -> Result<SweepField>
Process the input field, producing a new field with the same geometry.