Guest User

Untitled

a guest
Dec 10th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. TDataAnalysis = class(TAuOutput)
  2. private
  3. _MaxNoise: byte;
  4. _NoiseTolerance: byte;
  5. published
  6. property MaxNoiseLevel: byte read _MaxNoise write _MaxNoise;
  7. property NoiseTolerance: byte read _MaxNoise write _NoiseTolerance;
  8.  
  9. object DataAnalysis1: TDataAnalysis
  10. Input = WaveIn1
  11. OnDone = DataAnalysis1Done
  12. MaxNoiseLevel = 10
  13. NoiseTolerance = 2
  14. ChunkSize = 100
  15. Window = fwHamming
  16. EndSample = -1
  17. Left = 384
  18. Top = 400
  19. end
  20. object DataAnalysis2: TDataAnalysis
  21. Input = WaveIn2
  22. OnDone = DataAnalysis2Done
  23. MaxNoiseLevel = 10
  24. NoiseTolerance = 2
  25. ChunkSize = 100
  26. Window = fwHamming
  27. EndSample = -1
  28. Left = 384
  29. Top = 472
  30. end
Add Comment
Please, Sign In to add comment