Wideband autonomous SDR analysis engine forked from sdr-visual-suite
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
499B

  1. package pipeline
  2. import "sdr-wideband-suite/internal/detector"
  3. type SurveillanceResult struct {
  4. Candidates []Candidate `json:"candidates"`
  5. Finished []detector.Event `json:"finished"`
  6. Signals []detector.Signal `json:"signals"`
  7. NoiseFloor float64 `json:"noise_floor"`
  8. Thresholds []float64 `json:"thresholds,omitempty"`
  9. }
  10. type RefinementResult struct {
  11. Signals []detector.Signal `json:"signals"`
  12. Decisions []SignalDecision `json:"decisions,omitempty"`
  13. }