You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ios-dev.yaml 1.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. nodes:
  2. - id: camera
  3. build: pip install -e ../../node-hub/dora-ios-lidar
  4. path: dora-ios-lidar
  5. inputs:
  6. tick: dora/timer/millis/20
  7. outputs:
  8. - image
  9. - depth
  10. env:
  11. IMAGE_WIDTH: 1280
  12. IMAGE_HEIGHT: 720
  13. ROTATE: ROTATE_90_CLOCKWISE
  14. - id: rav1e-local
  15. path: dora-rav1e
  16. build: cargo build -p dora-rav1e --release
  17. inputs:
  18. image: camera/image
  19. outputs:
  20. - image
  21. env:
  22. RAV1E_SPEED: 10
  23. - id: rav1e-local-depth
  24. path: dora-rav1e
  25. build: cargo build -p dora-rav1e --release
  26. inputs:
  27. depth: camera/depth
  28. outputs:
  29. - depth
  30. env:
  31. RAV1E_SPEED: 10
  32. - id: dav1d-local-depth
  33. path: dora-dav1d
  34. build: cargo build -p dora-dav1d --release
  35. inputs:
  36. depth: rav1e-local-depth/depth
  37. outputs:
  38. - depth
  39. - id: dav1d-local
  40. path: dora-dav1d
  41. build: cargo build -p dora-dav1d --release
  42. inputs:
  43. image: rav1e-local/image
  44. outputs:
  45. - image
  46. - id: plot
  47. build: pip install -e ../../node-hub/dora-rerun
  48. path: dora-rerun
  49. inputs:
  50. image: dav1d-local/image
  51. depth: dav1d-local-depth/depth