Vorhersageergebnisse von Modellen zur Bildobjekterkennung interpretieren
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Nach der Anforderung einer Vorhersage gibt Vertex AI Ergebnisse basierend auf dem Ziel Ihres Modells zurück. Antworten der AutoML-Bildobjekterkennungsvorhersage geben alle Objekte zurück, die in einem Bild gefunden wurden. Jedes gefundene Objekt hat eine Annotation (Label und normalisierter Begrenzungsrahmen) mit einem entsprechenden Konfidenzwert. Der Begrenzungsrahmen wird so geschrieben:
"bboxes": [
[xMin, xMax, yMin, yMax],
...]
Dabei sind xMin, xMax der minimale und maximale x-Wert und
yMin, yMax der minimale und maximale y-Wert.
Beispielausgabe für eine Batchvorhersage
Antworten der Batch-AutoML-Bildobjekterkennungsvorhersage werden als JSON Lines-Dateien in Cloud Storage-Buckets gespeichert. Jede Zeile der JSON Lines-Datei enthält alle Objekte einer einzelnen Bilddatei. Jedes gefundene Objekt hat eine Annotation (Label und normalisierter Begrenzungsrahmen) mit einem entsprechenden Konfidenzwert.
Wichtig: Begrenzungsrahmen werden so angegeben:
"bboxes": [
[xMin, xMax, yMin, yMax],
...]
Dabei sind xMin und xMax die minimalen und maximalen x-Werte und
yMin und yMax die minimalen und maximalen y-Werte.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Schwer verständlich","hardToUnderstand","thumb-down"],["Informationen oder Beispielcode falsch","incorrectInformationOrSampleCode","thumb-down"],["Benötigte Informationen/Beispiele nicht gefunden","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-08-07 (UTC)."],[],[],null,["# Interpret prediction results from image object detection models\n\nAfter requesting a prediction, Vertex AI returns results based on your model's objective. AutoML image object detection prediction responses return all objects found in an image. Each found object has an annotation (label and normalized bounding box) with a corresponding confidence score. The bounding box is written as:\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\n`\n\"bboxes\": [\n[xMin, xMax, yMin, yMax],\n...]\n`\nWhere `xMin, xMax` are the minimum and maximum x values and `\nyMin, yMax` are the minimum and maximum y values respectively.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n#### Example batch prediction output\n\nBatch AutoML image object detection prediction responses are stored as\nJSON Lines files in Cloud Storage buckets. Each line of the JSON Lines\nfile\ncontains all objects found in a single image file. Each found object has\nan annotation (label and normalized bounding box) with a corresponding\nconfidence score.\n| **Note: Zero coordinate values omitted.** When the API detects a coordinate (\"x\" or \"y\") value of 0, ***that coordinate is omitted in the\n| JSON response*** . Thus, a response with a bounding poly around the entire image would be \n| **\\[{},{\"x\": 1,\"y\": 1}\\]** . For more information, see [Method: projects.locations.models.predict](https://cloud.google.com/automl/docs/reference/rest/v1/projects.locations.models/predict#boundingpoly).\n\n\n| **Note**: The following JSON Lines example includes line breaks for\n| readability. In your JSON Lines files, line breaks are included only after each\n| each JSON object.\n\n\u003cbr /\u003e\n\n\n\u003cbr /\u003e\n\n**Important:** Bounding boxes are specified as:\n\n\n`\n\"bboxes\": [\n[xMin, xMax, yMin, yMax],\n...]\n`\nWhere `xMin` and `xMax` are the minimum and maximum x values and `\nyMin` and `yMax` are the minimum and maximum y values respectively.\n\n\u003cbr /\u003e\n\n```\n{\n \"instance\": {\"content\": \"gs://bucket/image.jpg\", \"mimeType\": \"image/jpeg\"},\n \"prediction\": {\n \"ids\": [1, 2],\n \"displayNames\": [\"cat\", \"dog\"],\n \"bboxes\": [\n [0.1, 0.2, 0.3, 0.4],\n [0.2, 0.3, 0.4, 0.5]\n ],\n \"confidences\": [0.7, 0.5]\n }\n}\n```"]]