Wideband autonomous SDR analysis engine forked from sdr-visual-suite
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1007B

  1. package pipeline
  2. import "sdr-wideband-suite/internal/detector"
  3. type SurveillanceResult struct {
  4. Candidates []Candidate `json:"candidates"`
  5. Scheduled []ScheduledCandidate `json:"scheduled,omitempty"`
  6. Finished []detector.Event `json:"finished"`
  7. Signals []detector.Signal `json:"signals"`
  8. NoiseFloor float64 `json:"noise_floor"`
  9. Thresholds []float64 `json:"thresholds,omitempty"`
  10. }
  11. type RefinementInput struct {
  12. Candidates []Candidate `json:"candidates,omitempty"`
  13. Scheduled []ScheduledCandidate `json:"scheduled,omitempty"`
  14. SampleRate int `json:"sample_rate"`
  15. FFTSize int `json:"fft_size"`
  16. CenterHz float64 `json:"center_hz"`
  17. Source string `json:"source,omitempty"`
  18. }
  19. type RefinementResult struct {
  20. Signals []detector.Signal `json:"signals"`
  21. Decisions []SignalDecision `json:"decisions,omitempty"`
  22. Candidates []Candidate `json:"candidates,omitempty"`
  23. }