Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Surface Detection - JSON Data

Detected

...

Rectangle Data - Coordinates, Dimensions, Area, ID, Color, Class Name

Code Block
languagepy
"detectedRectangles": [
    {
      "x": 35,
      "y": 681,
      "width": 30,
      "height": 33,
      "area": 718.5,
      "id": 1603111484990000,
      "classNames": [
        {
          "color": "#ff0000",
          "color_bgr": [
            0,
            0,
            255
          ],
          "id": 1,
          "label": "Defect"
        }

...

Code Block
languagepy
"heatmaps": [
    [
      {
        "type": "<numpy>",
        "shape": [
          837,
          1305,
          1
        ]
      },
      {
        "color": "#ff0000",
        "color_bgr": [
          0,
          0,
          255
        ],
        "id": 1,
        "label": "Defect"
      }

Detector - JSON Data

Detected

...

Rectangle Data - Coordinates, Dimensions, ID, Class Name, Confidence Percentage

Code Block
languagepy
  "detectedRectangles": [
    {
      "x": 456,
      "y": 361,
      "width": 165,
      "height": 163,
      "id": 1604385708721000,
      "confidence": 0.9918909072875977,
      "classNames": [
        {
          "id": 1604385716945,
          "label": "Screw02",
          "confidence": 0.9918909072875977
        }
      ]
    },
  ...

...