Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »

Inspection shows how the input image is processed for each module, where detected objects are displayed for each image, providing detailed information such as: rectangles coordinates, ID, image size, confidence percentage, etc.

TheĀ Context (application variable), is displayed in JSON format for each module.

Anomaly of Surface - JSON Data

Image Dimensions (Pixels)

{
  "globalData": null,
  "image": {
    "type": "<numpy>",
    "shape": [
      837,
      1305,
      3
    ]
  }

Detected Rectangle Data - Coordinates, Dimensions, Size, ID, Color, Class Name

  "detectedRectangles": [
    {
      "x": 1086,
      "y": 510,
      "width": 3,
      "height": 3,
      "area": 2,
      "id": 1603111484990003,
      "classNames": [
        {
          "color": "#ff00ff",
          "color_bgr": [
            255,
            0,
            255
          ],
          "id": 1603111688057,
          "label": "Scratch"
        }
        ....

Heatmap Data - Dimensions, Color, ID & Class Name

 "heatmaps": [
    [
      {
        "type": "<numpy>",
        "shape": [
          768,
          1024,
          1
        ]
      },
      {
        "color": "#ff0000",
        "color_bgr": [
          0,
          0,
          255
        ],
        "id": 1,
        "label": "Defect"
      }
    ]
    ....

Classifier - JSON Data

Detected Retangle Data - Class Names, ID & Confidence Percentage (Accuracy)

"detectedRectangles": [
    {
      "classNames": [
        {
          "label": "Half White",
          "id": 1579785458561,
          "accuracy": 0.9999566078186035
        },
        {
          "label": "Full Black",
          "id": 1563879945497,
          "accuracy": 0.000023665264961891808
        },
        {
          "label": "Half Black",
          "id": 1579785458074,
          "accuracy": 0.00001757865356921684
        },
        {
          "label": "Missing",
          "id": 1579785459058,
          "accuracy": 0.0000020917841538903303
        },
        {
          "label": "Full White",
          "id": 1563879965635,
          "accuracy": 2.7898661159042604e-8
        }
      ]

Surface Detection - JSON Data

Detected Rectangles Data - Coordinates, Dimensions, Area, ID, Color, Class Name

"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"
        }

Heatmap Data - Dimensions, Color, ID & Class Name

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

Detector - JSON Data

Detected Rectangles Data - Coordinates, Dimensions, ID, Class Name, Confidence Percentage

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

OCR - JSON Data

Detected Rectangle Info - ID, Dimensions, OCR Text, Confidence Percentage

"ocr": [
    {
      "id": 1615382086440,
      "width": 109,
      "height": 38,
      "x": 169.11210023365456,
      "y": 420.09002285870446,
      "text": "Today",
      "confidence": 0.997153103351593

  • No labels