library.json 565 B

1234567891011121314151617181920212223
  1. {
  2. "name": "RunningMedian",
  3. "keywords": "running, moving, median, average, outliers",
  4. "description": "The library stores the last N individual values in a buffer to select the median. It filters outliers.",
  5. "authors":
  6. [
  7. {
  8. "name": "Rob Tillaart",
  9. "email": "Rob.Tillaart@gmail.com",
  10. "maintainer": true
  11. }
  12. ],
  13. "repository":
  14. {
  15. "type": "git",
  16. "url": "https://github.com/RobTillaart/RunningMedian.git"
  17. },
  18. "version": "0.3.10",
  19. "license": "MIT",
  20. "frameworks": "*",
  21. "platforms": "*",
  22. "headers": "RunningMedian.h"
  23. }