folder.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. {
  2. "models": {
  3. "yolo_model_main": {
  4. "model_path": "model/model1.engine",
  5. "model_type": "YOLO11SEG",
  6. "names": [
  7. "person",
  8. "bicycle",
  9. "car",
  10. "motorcycle",
  11. "airplane",
  12. "bus",
  13. "train",
  14. "truck",
  15. "boat",
  16. "traffic light",
  17. "fire hydrant",
  18. "stop sign",
  19. "parking meter",
  20. "bench",
  21. "bird",
  22. "cat",
  23. "dog",
  24. "horse",
  25. "sheep",
  26. "cow",
  27. "elephant",
  28. "bear",
  29. "zebra",
  30. "giraffe",
  31. "backpack",
  32. "umbrella",
  33. "handbag",
  34. "tie",
  35. "suitcase",
  36. "frisbee",
  37. "skis",
  38. "snowboard",
  39. "sports ball",
  40. "kite",
  41. "baseball bat",
  42. "baseball glove",
  43. "skateboard",
  44. "surfboard",
  45. "tennis racket",
  46. "bottle",
  47. "wine glass",
  48. "cup",
  49. "fork",
  50. "knife",
  51. "spoon",
  52. "bowl",
  53. "banana",
  54. "apple",
  55. "sandwich",
  56. "orange",
  57. "broccoli",
  58. "carrot",
  59. "hot dog",
  60. "pizza",
  61. "donut",
  62. "cake",
  63. "chair",
  64. "couch",
  65. "potted plant",
  66. "bed",
  67. "dining table",
  68. "toilet",
  69. "tv",
  70. "laptop",
  71. "mouse",
  72. "remote",
  73. "keyboard",
  74. "cell phone",
  75. "microwave",
  76. "oven",
  77. "toaster",
  78. "sink",
  79. "refrigerator",
  80. "book",
  81. "clock",
  82. "vase",
  83. "scissors",
  84. "teddy bear",
  85. "hair drier",
  86. "toothbrush"
  87. ],
  88. "gpu_id": 1,
  89. "confidence_threshold": 0.25,
  90. "nms_threshold": 0.45
  91. }
  92. },
  93. "pipelines": [
  94. {
  95. "pipeline_id": "pipeline_1",
  96. "description": "处理文件夹图片",
  97. "nodes": [
  98. {
  99. "node_id": "src_1",
  100. "node_type": "Source",
  101. "params": {
  102. "stream_url": "images/",
  103. "gpu_id": 1,
  104. "decode_type": "FOLDER",
  105. "skip_frame": 1
  106. }
  107. },
  108. {
  109. "node_id": "infer_1",
  110. "node_type": "Inference",
  111. "params": {
  112. "model_id": "yolo_model_main"
  113. }
  114. },
  115. {
  116. "node_id": "track_1",
  117. "node_type": "Tracker",
  118. "params": {
  119. "track_name": "person",
  120. "track_frame": 30,
  121. "track_distance": 30
  122. }
  123. },
  124. {
  125. "node_id": "analyze_1",
  126. "node_type": "Analyzer",
  127. "params": {}
  128. },
  129. {
  130. "node_id": "draw_1",
  131. "node_type": "Drawer",
  132. "params": {}
  133. },
  134. {
  135. "node_id": "push",
  136. "node_type": "Push",
  137. "params": {}
  138. }
  139. ]
  140. }
  141. ]
  142. }