STRAP Annotation Examples

STRAP (STRuctured Annotations single Pass) is a dataset of region annotations built on top of existing image datasets. A frozen MLLM makes one structured pass over each image and returns a machine-readable record that localizes and describes its objects. This page shows examples on CC3M and DataComp-1B images: Qwen3.6-35B-A3B, the model used to generate STRAP, on its own, then Qwen3.6-35B-A3B and GPT-5.4 side by side on the same photos.

Annotation prompt objects_parts_structured/prompt.txt
Analyze the input image and return a structured inventory of visible objects with hierarchical classification, confidence scores, spatial location, salience-based detail tiering, contextual typicality, confusable alternatives, structured attributes, interactions, readable text, and part-level annotation for salient objects.

Instructions:

Object identification
- Identify all objects that are visible or partially visible in the image, including background elements.
- List only independently meaningful objects. Parts of a larger visible object (e.g., a car wheel, a table leg) belong in that object's intrinsic_parts field, not as separate entries — unless they are independently salient objects in the scene in their own right.
- Assign each object a unique integer id starting from 1.
- If an object is only partly visible, note which parts are visible, whether it is occluded by another object or out of frame. When occluded by another listed object, record that object's id in occluded_by_id.

Detail tiering by salience
- Assign each object a salience score (0.0 to 1.0): 1.0 = clear main subject, near 0.0 = minor background element.
- High-salience objects (salience >= 0.5): provide full detail — hierarchy, confusable classes, context typicality, rich attributes, intrinsic_parts, and associated_items.
- Low-salience objects (salience < 0.5): provide minimal detail — basic_label, location, salience, visibility, and brief attributes (colors and pose_or_state only). Set hierarchy, confusable_with, context_typicality, intrinsic_parts, and associated_items to null / empty.

Intrinsic parts and associated items (salient objects only)
For objects with salience >= 0.5, provide:
- intrinsic_parts: structurally integral, clearly visible components of the object — listed as plain strings.
- associated_items: items worn, carried, mounted, or otherwise added to the object, but not structural parts of it — listed as structured objects.

Rules for intrinsic_parts:
- List only clearly visible parts — do not hallucinate hidden, occluded, or assumed parts.
- Keep parts reasonably coarse and natural for the object category; avoid overly fine-grained decomposition.
- Include only parts that belong to this specific object instance.
- Treat structural components as intrinsic_parts (e.g., head, arm, wheel, door, petal, trunk).
- Do not include clothing, accessories, or carried items here — those go in associated_items.
- Use consistent snake_case part names (e.g., left_arm, nose_bridge, rear_wheel).
- Typical examples by category:
  - person: head, torso, left_arm, right_arm, left_hand, right_hand, left_leg, right_leg
  - plant: leaves, stem, flower, petals, trunk, branches
  - car: front_wheel, rear_wheel, door, window, windshield, mirror, hood
  - chair: seat, backrest, legs, armrest

Rules for associated_items:
- Each entry is an object with four fields:
  - item: descriptive name of the item, including visible color or type when relevant (e.g., "red t-shirt", "leather backpack").
  - relation: how the item is associated — use one of: worn_on, carried_on, carried_in_hand, mounted_on, attached_to, tied_to, held_by.
  - covers: list of intrinsic part names (from this object's intrinsic_parts) that the item sits on, covers, or is in contact with (e.g., ["torso", "upper_arms"]). Use an empty array when no specific parts apply.
  - object_id: if this item is also annotated as a top-level object with its own id, set this to that id; otherwise null.
- For people: clothing, jewelry, accessories, or carried items (e.g., "red t-shirt" worn_on [torso, upper_arms], "backpack" carried_on [upper_back], "glasses" worn_on [eyes, nose_bridge]).
- For vehicles: mounted accessories (e.g., "roof rack" mounted_on [roof], "bike rack" attached_to [rear]).
- For animals: collar, leash, harness, saddle (e.g., "leather collar" worn_on [neck]).
- Do not include nearby unrelated objects that are not directly associated with this object instance.
- Typical examples by category:
  - person: red t-shirt (worn_on torso), backpack (carried_on upper_back), glasses (worn_on eyes/nose_bridge)
  - car: roof rack (mounted_on roof), bike rack (attached_to rear)
  - dog: collar (worn_on neck), leash (attached_to neck)
  - plant: support stick (attached_to stem)

Cross-referencing with object_id in associated_items:
- When a listed associated item is also annotated as a top-level object (with its own id in the objects list), set object_id to that object's id.
- Example: a person's backpack annotated separately as object id 7 → {"item": "black backpack", "relation": "carried_on", "covers": ["upper_back"], "object_id": 7}.
- Example: a person's glasses not listed as a separate object → {"item": "glasses", "relation": "worn_on", "covers": ["eyes", "nose_bridge"], "object_id": null}.
- Avoid duplicating items as separate top-level objects unless they are independently salient in the scene.

Grouping
- When two or more similar objects form a natural group (e.g., a pair of shoes, three sheep grazing together, a row of chairs), give each its own entry with individual attributes and location, but assign them the same group_id. A group requires at least 2 objects.
- Collapse into a single entry with count > 1 only when 5 or more identical instances cannot be meaningfully distinguished individually (e.g., a large flock of birds). The location then covers the whole group.

Renditions
- If an object is a depiction or representation of something rather than the real thing (e.g., a painting of a dog, a bronze sculpture of a horse, a plush toy cat, a crochet flower), set its rendition field with:
  - medium: the physical form — "painting", "sculpture", "plush toy", "crochet", "figurine", "drawing", "photograph", "mural", "embroidery", "mosaic", "relief", etc.
  - depicts: what concept or subject it represents — "dog", "horse", "landscape", "Abraham Lincoln", etc.
- For renditions, basic_label should be what the object physically is (e.g., "painting", "sculpture", "plush toy"), and the hierarchy classifies the physical form. What it depicts goes in rendition.depicts.
- For real objects (not renditions), set rendition to null.

Basic label
- Provide a basic_label for every object: the name most people would use first ("what is this?"). Examples: "chair", "dog", "car", "mug".
- For renditions, the basic_label is the physical medium: "painting", "statue", "plush toy".
- Use common English, not scientific names. Each label is a single noun phrase.
- If uncertain whether a term is basic vs. finer: "Would most people say this without prompting?" If yes, it is basic.
- Example: image shows a common house cat. WRONG: "tabby cat" (finer). RIGHT: "cat".

Hierarchical naming (salient objects only)
For objects with salience >= 0.5, provide a hierarchy with variable-depth levels above and below the basic label:
- coarser_levels: one or more levels above basic, sorted from nearest parent to broadest. Example for "dog": [{"label": "mammal", "confidence": 0.99}, {"label": "animal", "confidence": 0.99}]. Include as many levels as are informative; stop when a level becomes too generic to be useful.
- finer_levels: zero or more levels below basic, sorted from nearest child to most specific. Example for "dog": [{"label": "Golden Retriever", "confidence": 0.85}]. Add levels only when visually supportable. Empty array when no finer distinction is apparent.
- basic_confidence: confidence in the basic_label (0.0–1.0).
- confidence_note: optional explanation when confidence scores need clarification or when basic vs. finer level assignment is ambiguous.
- Assign confidence scores based on visual certainty, not prior knowledge.
- Use common English terms at every level. Each label is a single noun phrase. Use Latin or scientific names only when they are the standard way to refer to a category and no common English equivalent exists (e.g., "Canidae" for the dog family, genus names for plants).
For low-salience objects, set hierarchy to null.

Recognition basis
For each object:
- recognition_requires_text: true when identity is only determinable by reading text on or near it (e.g., a generic can identified as "Coca-Cola" only by its label).
- recognition_requires_context: true when identity is only determinable from surrounding scene context (e.g., a metal instrument identified as a "stethoscope" because the scene is a hospital).
Both can be false or both true simultaneously.

Confusable classes (salient objects only)
For objects with salience >= 0.5, list plausible visually similar alternatives a reasonable observer might consider, with reasons. For low-salience objects, use an empty array.

Location
For each object:
- bounding_description: textual location (e.g., "center-left foreground").
- anchor_point: [x, y] in normalized image coordinates (0.0–1.0, (0,0) = top-left). Place this point on the most visually central part of the object's surface. For concave or irregularly shaped objects (e.g., an L-shaped sofa, a person with arms outstretched), pick the point on the largest solid region of the object, near its visual mass center. For objects extending beyond the image boundary, the point must lie within the visible portion.
- bounding_box: [x_min, y_min, x_max, y_max] axis-aligned rectangle tightly enclosing the visible portion of the object.
Prioritize approximate correctness over false precision.

Contextual typicality (salient objects only)
For objects with salience >= 0.5: is_typical_context = true if the object is in a normal setting; false if unusual (explain in context_note). For low-salience objects, set to null.

Attributes
Record visible attributes as a structured object per object:
- colors: dominant visible colors.
- materials: visible material cues (wood, metal, glass, fabric, plastic, etc.).
- pose_or_state: pose or state (sitting, standing, open, closed, parked, blooming, etc.).
- size_cue: relative size when informative (e.g., "large", "small relative to nearby chair").
- expression: facial expression if applicable.
- markings: visible patterns, logos, or markings.
- clothing: worn items if applicable.
- condition: wear, damage, or age cues.
- other: any other directly observable traits not covered above.
For low-salience objects, only colors and pose_or_state are required; other fields may be empty or null.

Text
- Text on a specific object goes into that object's text_on_object field. Extract exactly when possible.
- Text visible but not tied to one object goes into global_text.

Interactions
- Identify pairs or groups of objects that visually interact.
- Describe the interaction kind (holding, riding, sitting_on, contained_in, playing, chasing, leaning_against, stacked_on, standing_next_to, etc.).
- Specify directionality: from_object_id → to_object_id. For symmetric interactions (next to, facing each other), set is_directional to false, both ids to null, and explain in note.
- Only report visually evident interactions.

Scene context
- Provide a brief description of the overall scene setting, environment, and background in scene_context (e.g., "sunny suburban street", "dimly lit restaurant interior", "studio portrait with white backdrop"). Set to null if the scene is too ambiguous or featureless to characterize.

Uncertain items
Place ambiguous objects or interpretations in uncertain_or_ambiguous_items.

Output rules:
- Include only what is visible in the image.
- Return valid JSON only.
- Follow the JSON schema exactly.
- Do not add extra keys.
- Use null where the schema allows null and the detail is not visually supportable.
- Set intrinsic_parts and associated_items to empty arrays for low-salience objects (salience < 0.5).
JSON output schema objects_parts_structured/schema.json
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "image_summary": {
      "type": [
        "string",
        "null"
      ],
      "description": "Short visual summary of the image."
    },
    "scene_context": {
      "type": [
        "string",
        "null"
      ],
      "description": "Brief description of the overall scene setting, environment, and background (e.g., 'sunny suburban street', 'dimly lit restaurant interior', 'studio portrait with white backdrop'). Null if the scene is too ambiguous or featureless to characterize."
    },
    "objects": {
      "type": "array",
      "description": "Visible objects in the image.",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "integer",
            "description": "Unique identifier starting from 1."
          },
          "count": {
            "type": "integer",
            "minimum": 1,
            "description": "Number of instances. >1 only for indistinguishable identical groups."
          },
          "group_id": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Shared id linking objects that form a natural group. Null if not grouped."
          },
          "salience": {
            "type": "number",
            "minimum": 0.0,
            "maximum": 1.0,
            "description": "Prominence: 1.0 = main subject, near 0.0 = minor background."
          },
          "brief_description": {
            "type": "string",
            "description": "Short phrase to distinguish this object from others, e.g. 'the red chair in the foreground', 'large brown dog on the left'."
          },
          "basic_label": {
            "type": "string",
            "description": "Basic-level name most people would use first: chair, dog, car, mug."
          },
          "rendition": {
            "anyOf": [
              {
                "type": "object",
                "additionalProperties": false,
                "description": "Present when the object is a depiction or representation (painting, sculpture, plush toy, etc.) rather than the real thing.",
                "properties": {
                  "medium": {
                    "type": "string",
                    "description": "Physical form of the rendition: painting, sculpture, plush toy, crochet, figurine, drawing, photograph, mural, embroidery, mosaic, relief, etc."
                  },
                  "depicts": {
                    "type": "string",
                    "description": "What concept or subject it represents: dog, horse, landscape, Abraham Lincoln, etc."
                  }
                },
                "required": [
                  "medium",
                  "depicts"
                ]
              },
              {
                "type": "null"
              }
            ],
            "description": "Null for real objects. For renditions, basic_label is the physical medium and depicts captures the subject."
          },
          "recognition_requires_text": {
            "type": "boolean",
            "description": "True when identity is only determinable by reading text on or near the object."
          },
          "recognition_requires_context": {
            "type": "boolean",
            "description": "True when identity is only determinable from surrounding scene context."
          },
          "hierarchy": {
            "anyOf": [
              {
                "type": "object",
                "additionalProperties": false,
                "description": "Variable-depth naming hierarchy above and below the basic label. Provided for salient objects (salience >= 0.5).",
                "properties": {
                  "coarser_levels": {
                    "type": "array",
                    "description": "Levels above basic, sorted from nearest parent to broadest. E.g. for 'dog': [{label: 'mammal', confidence: 0.99}, {label: 'animal', confidence: 0.99}].",
                    "items": {
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "label": {
                          "type": "string",
                          "description": "Category name at this level."
                        },
                        "confidence": {
                          "type": "number",
                          "minimum": 0.0,
                          "maximum": 1.0,
                          "description": "Visual certainty for this label."
                        }
                      },
                      "required": [
                        "label",
                        "confidence"
                      ]
                    }
                  },
                  "basic_confidence": {
                    "type": "number",
                    "minimum": 0.0,
                    "maximum": 1.0,
                    "description": "Confidence in the basic_label."
                  },
                  "finer_levels": {
                    "type": "array",
                    "description": "Levels below basic, sorted from nearest child to most specific. Can range from broad subcategories to extremely fine-grained identifications such as a specific car model, plant cultivar, bird species, or furniture product line. E.g. for 'dog': [{label: 'Golden Retriever', confidence: 0.85}]; for 'car': [{label: 'sedan', confidence: 0.95}, {label: 'Tesla Model 3', confidence: 0.7}]. Empty array if no finer distinction is apparent.",
                    "items": {
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "label": {
                          "type": "string",
                          "description": "More specific name at this level."
                        },
                        "confidence": {
                          "type": "number",
                          "minimum": 0.0,
                          "maximum": 1.0,
                          "description": "Visual certainty for this label."
                        }
                      },
                      "required": [
                        "label",
                        "confidence"
                      ]
                    }
                  },
                  "confidence_note": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Explanation when confidence scores need clarification or basic vs. finer level assignment is ambiguous."
                  }
                },
                "required": [
                  "coarser_levels",
                  "basic_confidence",
                  "finer_levels",
                  "confidence_note"
                ]
              },
              {
                "type": "null"
              }
            ],
            "description": "Full naming hierarchy for salient objects. Null for low-salience objects."
          },
          "confusable_with": {
            "type": "array",
            "description": "Plausible alternative classes based on visual similarity. Empty for low-salience objects.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "class": {
                  "type": "string",
                  "description": "The alternative class label."
                },
                "reason": {
                  "type": "string",
                  "description": "Why this alternative is plausible."
                }
              },
              "required": [
                "class",
                "reason"
              ]
            }
          },
          "context_typicality": {
            "anyOf": [
              {
                "type": "object",
                "additionalProperties": false,
                "description": "Whether this object appears in a typical context. Provided for salient objects (salience >= 0.5).",
                "properties": {
                  "is_typical_context": {
                    "type": "boolean",
                    "description": "True if the object is in a normal, expected setting."
                  },
                  "context_note": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "Explanation when context is atypical. Null when typical."
                  }
                },
                "required": [
                  "is_typical_context",
                  "context_note"
                ]
              },
              {
                "type": "null"
              }
            ],
            "description": "Null for low-salience objects."
          },
          "location": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "anchor_point": {
                "type": "array",
                "description": "[x, y] in normalized coordinates (0.0–1.0, (0,0) = top-left). Placed on the most visually central part of the object's surface. For concave or irregular shapes, on the largest solid region near its visual mass center. Must lie within the visible portion for objects extending beyond the image boundary.",
                "minItems": 2,
                "maxItems": 2,
                "items": {
                  "type": "number",
                  "minimum": 0.0,
                  "maximum": 1.0
                }
              },
              "bounding_box": {
                "type": "array",
                "description": "[x_min, y_min, x_max, y_max] enclosing rectangle in normalized coordinates.",
                "minItems": 4,
                "maxItems": 4,
                "items": {
                  "type": "number",
                  "minimum": 0.0,
                  "maximum": 1.0
                }
              }
            },
            "required": [
              "anchor_point",
              "bounding_box"
            ]
          },
          "bounding_description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Textual location such as 'center-left foreground'."
          },
          "visibility": {
            "type": "string",
            "enum": [
              "fully_visible",
              "mostly_visible",
              "partially_visible",
              "small_or_distant",
              "occluded"
            ],
            "description": "How visible the object is in the image."
          },
          "occluded_by_id": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Id of the object that occludes this one, if applicable."
          },
          "intrinsic_parts": {
            "type": "array",
            "description": "Structurally integral, clearly visible components of this object, listed as plain part-name strings. Provided for salient objects (salience >= 0.5). Empty array for low-salience objects or when no parts are distinctly visible. Use snake_case names (e.g. 'left_arm', 'rear_wheel', 'nose_bridge').",
            "items": {
              "type": "string",
              "description": "Part name, e.g. 'head', 'torso', 'left_arm', 'rear_wheel', 'door', 'petal'."
            }
          },
          "associated_items": {
            "type": "array",
            "description": "Items worn, carried, mounted, or otherwise added to this object that are not structural parts of it. Provided for salient objects (salience >= 0.5). Empty array for low-salience objects or when no associated items are visible.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "item": {
                  "type": "string",
                  "description": "Descriptive name of the item, including visible color or type when relevant, e.g. 'red t-shirt', 'black backpack', 'leather collar', 'roof rack'."
                },
                "relation": {
                  "type": "string",
                  "enum": [
                    "worn_on",
                    "carried_on",
                    "carried_in_hand",
                    "mounted_on",
                    "attached_to",
                    "tied_to",
                    "held_by"
                  ],
                  "description": "How the item is associated with the object."
                },
                "covers": {
                  "type": "array",
                  "description": "Intrinsic part names (from this object's intrinsic_parts) that the item sits on, covers, or is in contact with. Empty array when no specific parts apply.",
                  "items": {
                    "type": "string"
                  }
                },
                "object_id": {
                  "type": [
                    "integer",
                    "null"
                  ],
                  "description": "Id of the corresponding top-level annotated object if this item is also listed independently in the objects array; otherwise null."
                }
              },
              "required": [
                "item",
                "relation",
                "covers",
                "object_id"
              ]
            }
          },
          "attributes": {
            "type": "object",
            "additionalProperties": false,
            "description": "Structured visible attributes. For low-salience objects, only colors and pose_or_state are required; other fields may be empty arrays or null.",
            "properties": {
              "colors": {
                "type": "array",
                "description": "Dominant visible colors.",
                "items": {
                  "type": "string"
                }
              },
              "materials": {
                "type": "array",
                "description": "Visible material cues (wood, metal, glass, fabric, plastic, etc.).",
                "items": {
                  "type": "string"
                }
              },
              "pose_or_state": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Pose or state: sitting, standing, open, closed, parked, blooming, etc."
              },
              "size_cue": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Relative size when informative, e.g. 'large', 'small relative to nearby chair'."
              },
              "expression": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Facial expression if applicable."
              },
              "markings": {
                "type": "array",
                "description": "Visible patterns, logos, or markings.",
                "items": {
                  "type": "string"
                }
              },
              "clothing": {
                "type": "array",
                "description": "Worn items if applicable.",
                "items": {
                  "type": "string"
                }
              },
              "condition": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Wear, damage, or age cues."
              },
              "other": {
                "type": "array",
                "description": "Other directly observable traits not covered above.",
                "items": {
                  "type": "string"
                }
              }
            },
            "required": [
              "colors",
              "materials",
              "pose_or_state",
              "size_cue",
              "expression",
              "markings",
              "clothing",
              "condition",
              "other"
            ]
          },
          "text_on_object": {
            "type": "array",
            "description": "Readable text on this object.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "text": {
                  "type": "string"
                },
                "location_on_object": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Where text appears: shirt front, sign top line, mug side, etc."
                },
                "legibility": {
                  "type": "string",
                  "enum": [
                    "clear",
                    "partial",
                    "uncertain"
                  ]
                }
              },
              "required": [
                "text",
                "location_on_object",
                "legibility"
              ]
            }
          }
        },
        "required": [
          "id",
          "brief_description",
          "count",
          "group_id",
          "salience",
          "basic_label",
          "rendition",
          "recognition_requires_text",
          "recognition_requires_context",
          "hierarchy",
          "confusable_with",
          "context_typicality",
          "location",
          "bounding_description",
          "visibility",
          "occluded_by_id",
          "intrinsic_parts",
          "associated_items",
          "attributes",
          "text_on_object"
        ]
      }
    },
    "interactions": {
      "type": "array",
      "description": "Pairwise or multi-object interactions visible in the image.",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "object_ids": {
            "type": "array",
            "description": "IDs of the interacting objects. Minimum 2.",
            "minItems": 2,
            "items": {
              "type": "integer"
            }
          },
          "kind": {
            "type": "string",
            "description": "Interaction type: holding, riding, sitting_on, contained_in, etc."
          },
          "direction": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "from_object_id": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Agent/source of the interaction. Null when non-directional."
              },
              "to_object_id": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Patient/target of the interaction. Null when non-directional."
              },
              "is_directional": {
                "type": "boolean",
                "description": "False for symmetric interactions like 'next to'."
              }
            },
            "required": [
              "from_object_id",
              "to_object_id",
              "is_directional"
            ]
          },
          "note": {
            "type": [
              "string",
              "null"
            ],
            "description": "Clarification for ambiguous directionality or multi-object interactions."
          }
        },
        "required": [
          "object_ids",
          "kind",
          "direction",
          "note"
        ]
      }
    },
    "global_text": {
      "type": "array",
      "description": "Readable text not tied to a specific object.",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "text": {
            "type": "string"
          },
          "location": {
            "type": [
              "string",
              "null"
            ],
            "description": "Approximate location such as 'top-center poster'."
          },
          "legibility": {
            "type": "string",
            "enum": [
              "clear",
              "partial",
              "uncertain"
            ]
          }
        },
        "required": [
          "text",
          "location",
          "legibility"
        ]
      }
    },
    "uncertain_or_ambiguous_items": {
      "type": "array",
      "description": "Objects or interpretations too ambiguous for confident inclusion.",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "description": {
            "type": "string"
          },
          "possible_classes": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "reason": {
            "type": [
              "string",
              "null"
            ],
            "description": "Why the item is uncertain: blur, occlusion, low resolution, etc."
          }
        },
        "required": [
          "description",
          "possible_classes",
          "reason"
        ]
      }
    }
  },
  "required": [
    "image_summary",
    "scene_context",
    "objects",
    "interactions",
    "global_text",
    "uncertain_or_ambiguous_items"
  ]
}
Preselected imagesRandom images + GPT-5.4 comparison

Qwen3.6-35B-A3B annotations examples

Chosen for clearly visible objects and rich annotations — not a claim about typical output quality, just a handful of examples we liked.

objects_parts_structured · Qwen3.6-35B-A3B only

CC3M

10 images
CC3M · 1000695356
Qwen3.6-35B-A3B768×512px · 5 boxes
s1-cc3m-1
1
2
3
4
5
1person0.90fully visible

A person bent over on a beach at sunset.

humanmammalanimalperson
Partsheadtorsoleft_legright_legleft_armright_arm
Associateddark shortsworn_oncovers torsodark t-shirtworn_oncovers torsodark shoesworn_oncovers left_leg, right_leg
blackfabricleatherbent over, hands on kneesaverage adult sizenot visibledark shortsdark t-shirtdark shoesunknownsilhouette
confusable withstatuesculpture
2sun0.80fully visible

The sun setting over the water.

starcelestial bodysun
bright yellowwhitesettingappears large due to perspectiveglowing
confusable withmoonstreetlight
3city skyline0.70partially visible

A city skyline in the distance.

urban areabuilt environmentcity skyline
Partsbuildingssmokestack
dark silhouetteconcretesteelstaticdistantsilhouette
confusable withindustrial complexbridge
4water0.60fully visible

The body of water in the background.

liquidnatural featurewater
darkreflectivewatercalmlargereflecting the sunset
confusable withoceanlake
5beach0.50fully visible

The sandy beach in the foreground.

landformnatural featurebeach
dark brownblacksandstaticlargetextured
confusable withdesert
CC3M · 2001846359
Qwen3.6-35B-A3B512×768px · 6 boxes
s1-cc3m-2
1
2
3
4
5
6
1cocktail glass0.95fully visible

A short glass containing an amber-colored cocktail with ice, a cherry, and an orange slice.

glasswarecontainercocktail glassrocks glass
Partsglass_bodythick_baserimliquidice_cubesgarnish_cherrygarnish_orange_slice
clearamberredorangeglassstandingstandard drink sizecondensation droplets on the exteriorcoldcontains large ice cubesgarnished with a red cherry and an orange slice
confusable withwater glasstumbler
2orange0.75fully visible

A halved orange resting on a wooden board.

fruitcitrusorange
Partsrindpithfleshsegments
orangeorganiccut in halfmediumfresh
confusable withtangerinegrapefruit
3decanter0.65partially visible

A glass decanter filled with a dark liquid, located in the background.

glasswarecontainerdecanter
Partsbodyneckstopper
cleardark amberglassstandinglargetextured or patterned glass surfacecontains a dark liquid, likely whiskey or a similar spirit
confusable withcarafebottle
4cherry×20.45partially visible

Two red cherries in the background, behind the cocktail glass.

redorganicrestingsmall
5cutting board0.40partially visible

A small wooden board holding the orange and cherries.

brownwoodflatsmall
6table0.30partially visible

The wooden surface the objects are resting on.

brownwoodflatlargewood grain
CC3M · 3000125857
Qwen3.6-35B-A3B683×512px · 5 boxes
s1-cc3m-3
1
2
3
4
5
1man0.95fully visible

A man in a striped shirt pointing at a drawing.

humanpersonman
Partsheadtorsoleft_armright_armleft_handright_hand
Associatedwhite and pink striped shirtworn_oncovers torso, left_arm, right_arm
whitepinkfabricstanding, pointingadultfocused, looking at the drawingvertical pink stripes on shirtstriped shirtcleandark hair, side profile view
confusable withpainterart critic
2drawing0.85fully visible

A charcoal portrait of a man on a canvas.

artworkvisual_artdrawingportraitcharcoal sketch
Partscanvasportrait_faceportrait_hairportrait_torso
whiteblackgreypapercharcoalstaticlargeneutral, serioushatching and shading linesnewsketchy background lines
confusable withpaintingphotograph
3easel0.70partially visible

A wooden easel holding the canvas.

furnitureart_equipmenteasel
Partscanvas_boardsupport_framebase
Associatedcanvas with drawingmounted_oncovers canvas_boardwooden box with paintmounted_oncovers top_edge
whitebrownwoodcanvasstandinglargepaint splatters on the frameused
confusable withtripod
4box0.40fully visible

A small wooden box with paint on top of the easel.

browngreenredwoodrestingsmallpaint smudgesused
5chair0.30partially visible

A brown leather armchair.

brownleatheremptylargetufted upholstery
CC3M · 4000579449
Qwen3.6-35B-A3B852×480px · 6 boxes
s1-cc3m-4
1
2
3
4
5
6
1man0.90fully visible

A shirtless man with dreadlocks running on the beach.

humanpersonman
Partsheadtorsoleft_armright_armleft_legright_legleft_footright_foot
Associatedgrey shortsworn_oncovers torsogrey socksworn_oncovers left_foot, right_footrunning shoesworn_oncovers left_foot, right_foot
skin tonegreyblackskinfabricrubberrunningaverage adult maleneutraltattoo on left shouldergrey shortsgrey socksrunning shoescleandreadlocksmuscular build
confusable withjoggersurfer
2wave0.70fully visible

A large wave breaking in the ocean.

water phenomenonwave
Partscrestfacewhitewater
greenwhitewaterbreakinglarge
confusable withwhitewater
3reflection0.60fully visible

The reflection of the running man in a puddle on the sand.

visual phenomenonreflection
Partshead_reflectiontorso_reflectionleg_reflections
dark greybrownwaterstaticdistorted and elongatedwavy due to water surface
4sand0.30fully visible

The wet sand of the beach.

greybrownsandwaterwet
5ocean0.20fully visible

The ocean in the background.

greygreenwaterchoppy
6sky0.10fully visible

The overcast sky.

light greyaircloudsovercast
CC3M · 5003235776
Qwen3.6-35B-A3B577×512px · 20 boxes
s1-cc3m-5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
1desk0.85fully visible

A wooden desk with a black top and a set of drawers.

furnituretabledesk
Partstabletopdrawer_unitdrawer_handleslegs
Associatedblue briefcaseattached_tocovers tabletopsilver desk lampattached_tocovers tabletopsmall white bottleattached_tocovers tabletop
light brownblackwoodlaminatestationarystandard sizewood graingoodhas a set of drawers on the left side
confusable withdresser
2briefcase0.30fully visible

A blue briefcase or laptop case.

blueunknownclosedsmallgood
3desk lamp0.30fully visible

A silver desk lamp with an adjustable arm.

silvermetalstationarysmallgood
4bottle0.20fully visible

A small white bottle, possibly lotion or sanitizer.

whiteplasticstandingsmallgood
5chair0.70fully visible

A wooden chair with a slatted back.

furniturechair
Partsseatbackrestlegs
light brownwoodstationarystandard sizewood graingoodslatted backrest
confusable withstool
6bed0.80partially visible

A single bed with a wooden frame, dark bedding, and a red blanket.

furniturebed
Partsheadboardfootboardside_railsmattress
Associatedblack pillowattached_tocovers mattresswhite pillowattached_tocovers mattresswhite fluffy pillowattached_tocovers mattressdark grey sheetsattached_tocovers mattressred knitted blanketattached_tocovers mattresspatterned blanketattached_tocovers mattress
light brownblackredwhitewoodfabricmadesinglewood graingood
confusable withdaybed
7pillow0.40fully visible

A black pillow on the bed.

blackfabricrestingstandardgood
8pillow0.30partially visible

A white pillow on the bed, partially visible behind the black pillow.

whitefabricrestingstandardgood
9pillow0.40fully visible

A small, white, fluffy decorative pillow.

whitefabricrestingsmallgoodfluffy texture
10blanket0.50fully visible

A red knitted blanket on the bed.

redknitted fabricfoldedstandardgood
11blanket0.50fully visible

A patterned blanket with stripes and geometric designs.

redwhiteblueblackwoven fabricfoldedstandardstripesgeometric patternsgood
12side table0.20fully visible

A small black side table next to the bed.

blackmetalstationarysmallgood
13trash can0.10partially visible

A small trash can.

whiteplasticstationarysmallgood
14rug0.10partially visible

A dark grey rug on the floor.

dark greyfabricflatmediumgoodshaggy texture
15fairy lights0.10partially visible

A string of fairy lights.

whitewireplastichangingsmallgood
16curtain0.10partially visible

A white sheer curtain or canopy.

whitefabricdrapedmediumgood
17light switch0.10fully visible

A wall-mounted light switch.

whiteplasticstationarysmallgood
18shelf0.10fully visible

A black wall-mounted shelf.

blackunknownmountedsmallgood
19wall art0.10fully visible

A collection of black and white photos and prints on the wall.

blackwhitepapermountedsmallgoodmultiple pieces
20wall art0.10fully visible

A collection of black and white photos and prints on the wall.

blackwhitepapermountedsmallgoodmultiple pieces
CC3M · 6001620006
Qwen3.6-35B-A3B512×682px · 5 boxes
s1-cc3m-6
1
2
3
4
5
1building0.85fully visible

A modern building with light-colored walls and dark windows.

structurearchitecturebuildingmodern building
Partswallswindowscornersbalcony
light graywhitedark grayconcreteglassstandinglargerectangular windowshorizontal lines on the facadegoodflat roofgeometric design
confusable withoffice buildingschool
2tree0.75fully visible

A deciduous tree with bare branches, standing on a grassy slope.

plantfloratreedeciduous tree
Partstrunkbranchesroots
browndark brownwooddormantmediumbare branchesno leaveshealthysparse canopy
confusable withsaplingdead tree
3pond0.65fully visible

A body of water with lily pads and reflections.

body of waterwater featurepondornamental pond
Partswater surfacelily padsreflectionsedge
dark graygreenbrownwaterstillmediumlily padsreflections of the building and treenaturalconcrete border
confusable withpoollake
4grass0.40fully visible

A grassy slope leading down to the pond.

greenbrowngrassslopedlargenatural
5bush0.30partially visible

A small, dry-looking bush on the far left.

browntanplant matterstandingsmalldry
CC3M · 7000749723
Qwen3.6-35B-A3B852×480px · 8 boxes
s1-cc3m-7
1
2
3
4
5
6
7
8
1bridge1.00fully visible

A large green steel arch bridge spanning the scene.

structureinfrastructurebridgearch bridgetruss bridge
Partsmain_archtruss_structuredecksupport_pierscables
Associatedmetal railingmounted_oncovers deck
dark greenblacksteelmetalstationaryvery largegraffiti on the right supportappears weatheredcomplex truss design
confusable withviaducttrestle
2building0.80partially visible

A large, multi-story apartment building on the left side of the image.

structurearchitecturebuildingapartment buildingbrutalist building
Partsfacadewindowsfloors
brownbeigeconcretebrickstationarylargeappears agedgrid-like window pattern
confusable withoffice buildingwarehouse
3building0.70partially visible

A large, blocky building visible under the bridge.

structurearchitecturebuildingapartment building
Partsfacadewindowsfloors
brownbeigeconcretebrickstationarylargeappears agedgrid-like window pattern
confusable withoffice building
4wall0.60fully visible

A concrete embankment or wall in the foreground.

structurewallembankment
Partsfacetop_edge
Associatedmetal railingmounted_oncovers top_edge
light graybeigeconcretestationarymediumclean
confusable withfenceretaining wall
5railing0.50fully visible

A metal railing along the top of the foreground wall.

fixturerailing
Partstop_railvertical_postshorizontal_supports
greenmetalstationarysmallclean
confusable withfence
6riverbed0.40fully visible

A dry, concrete-lined riverbed or canal.

landformriverbedcanal
Partsbottomsides
graybrownconcretedirtdrylargegraffiti on the far wallunusedconcrete-lined
confusable withroadconstruction site
7bush0.30fully visible

A bush with red flowers on the right side.

plantbush
Partsleavesflowers
greenredorganicstationarysmallhealthy
confusable withtree
8walkway0.20partially visible

A paved walkway in the immediate foreground.

pathwalkway
Partssurface
grayconcretepaving stonesstationarysmallclean
confusable withroad
CC3M · 8000222848
Qwen3.6-35B-A3B768×512px · 15 boxes
s1-cc3m-8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
1sofa0.95fully visible

A large, L-shaped sectional sofa in a light beige or off-white color, positioned on a grey area rug in the foreground.

furnitureseatingsofasectional sofa
Partsseat_cushionsbackrestsarmrestsbase_frame
Associatedlight grey throw pillowsattached_tocovers seat_cushions, backrests
light beigeoff-whitefabric upholsterystationarylargenewL-shaped design
confusable withloveseatcouch
2coffee table0.85fully visible

A modern, low-profile coffee table with a black metal frame and a dark top, placed in front of the sofa.

furnituretablecoffee table
Partstabletopmetal_framelegs
Associatedsmall green cactus figurineattached_tocovers tabletopsmall decorative trayattached_tocovers tabletop
blackdark greymetalglass or dark woodstationarymediumnew
confusable withside table
3cactus figurine0.45fully visible

A small, green cactus figurine sitting on the coffee table.

greenceramic or plasticstationarysmallnew
4armchair0.75fully visible

A single upholstered armchair with a light-colored fabric and a wooden frame, positioned in the foreground.

furnitureseatingarmchair
Partsseatbackrestarmrestslegs
Associatedlight-colored upholsteryattached_tocovers seat, backrest
light beigewoodfabricwoodstationarymediumnewnailhead trim on armrests
confusable withaccent chairrecliner
5rug0.70fully visible

A large, grey area rug with a subtle pattern, placed under the sofa and coffee table.

home decorfloor coveringrug
greywhitefabricflatlargesubtle patternnew
confusable withcarpet
6floor lamp0.65partially visible

A tall, arched floor lamp with a dark shade, positioned behind the sofa.

lightinglampfloor lamparc lamp
Partsbasearched_stemlampshade
blackdark greymetalstationarytallnew
confusable withpendant light
7fireplace0.60fully visible

A large, dark grey, textured fireplace structure that acts as a room divider.

home fixtureheating appliancefireplacemodern fireplace
Partsfireboxchimney_structure
dark greycharcoalstone or concretestationarylargetextured surfacenew
confusable withroom dividerchimney breast
8bar stool×30.55fully visible

Three identical wooden bar stools with metal legs, lined up at the kitchen counter.

furnitureseatingbar stool
Partsseatlegsfootrest
light woodblack metalwoodmetalstationarymediumnew
confusable withcounter stool
9kitchen counter0.50fully visible

A long, light wood kitchen counter with a dark countertop.

furniturekitchen fixturekitchen counter
Partscountertopcabinet_base
light woodblackwoodstone or laminatestationarylargenew
confusable withisland
10dining set0.40partially visible

A dining table with several chairs in the background.

darklightunknownstationarymediumnew
11curtain0.35fully visible

A large window or glass door on the left wall, covered by a long curtain.

beigefabrichanginglargenew
12wall art0.30partially visible

A large, framed piece of art on the right wall.

black and whitepaperglassframehanginglargenew
13pendant lights0.25partially visible

A set of pendant lights hanging over the dining area in the background.

blackwhitemetalglasshangingsmallnew
14shelves0.20fully visible

A set of shelves on the right wall, holding various items.

light woodwoodmountedsmallnew
15chest of drawers0.15partially visible

A wooden chest of drawers on the far right edge of the image.

light woodwoodstationarymediumnew
CC3M · 9003111502
Qwen3.6-35B-A3B768×512px · 9 boxes
s1-cc3m-9
1
2
3
4
5
6
7
8
9
1jockey0.95fully visible

Jockey in lime green and blue silks riding a dark horse in the foreground.

personhumanjockey
Partsheadtorsoleft_armright_armleft_handright_handleft_legright_leg
Associatedlime green and blue diamond-patterned silksworn_oncovers torso, left_arm, right_armwhite breechesworn_oncovers left_leg, right_legblack riding bootsworn_oncovers left_leg, right_leglight green helmetworn_oncovers headdark gogglesworn_oncovers headblack riding cropheld_bycovers right_hand
Text“AIR MURYS” — left leg of the jockey's breeches
lime greenbluewhiteblackfabricplasticleatherleaning forward in a racing crouchaverage adult human sizefocused, mouth opendiamond pattern on silkstext 'AIR MURYS' on legsilksbreechesbootshelmetgogglescleansweaty
confusable withequestrianpolo player
2horse0.90fully visible

Dark horse with a white star on its forehead, being ridden by jockey 1.

mammalequinehorse
Partsheadnecktorsofront_legsrear_legsmanetail
Associatedblack bridle and reinsattached_tocovers headgreen and white saddle clothattached_tocovers torsosaddleattached_tocovers torso
blackwhitefurleatherfabricgallopinglargefocused, mouth openwhite star on foreheadsweatymuscular build
confusable withpony
3jockey0.70fully visible

Jockey in red and black striped silks riding a brown horse.

personhumanjockey
Partsheadtorsoleft_armright_armleft_handright_handleft_legright_leg
Associatedred and black striped silksworn_oncovers torso, left_arm, right_armwhite breechesworn_oncovers left_leg, right_legmaroon helmetworn_oncovers headdark gogglesworn_oncovers headriding cropheld_bycovers right_hand
redblackwhitemaroonfabricplasticleatherleaning forward in a racing crouchaverage adult human sizefocusedstriped pattern on silkssilksbreecheshelmetgogglessweaty
confusable withequestrian
4horse0.65fully visible

Brown horse being ridden by jockey 3.

mammalequinehorse
Partsheadnecktorsofront_legsrear_legsmanetail
Associatedbridle and reinsattached_tocovers headsaddleattached_tocovers torso
brownfurleathergallopinglargefocused, mouth opensweaty
confusable withpony
5jockey0.40partially visible

Jockey in the background, out of focus.

brownwhiteleaning forward
6horse0.35partially visible

Horse in the background, out of focus.

browngalloping
7jockey0.25partially visible

Jockey in the far background, very out of focus.

yellowwhiteleaning forward
8horse0.20partially visible

Horse in the far background, very out of focus.

browngalloping
9person0.15partially visible

Blurred figure of a spectator in the background.

whitestanding
CC3M · 10001183703
Qwen3.6-35B-A3B852×480px · 12 boxes
s1-cc3m-10
1
2
3
4
5
6
7
8
9
10
11
12
1cantaloupe0.95fully visible

A large, whole cantaloupe melon in the foreground.

fruitplantcantaloupe
Partsrindbody
greenbeigebrownrindrestinglargenetted pattern on rindfresh
confusable withhoneydew melonmuskmelon
2basket0.85fully visible

A woven basket filled with various fruits.

containerfurnishingbasket
Partswoven bodyvertical handlerim
light browntanwoven woodwickerfilledmediumgood
confusable withhampertote bag
3watermelon0.80partially visible

A large, sliced watermelon showing its red interior.

fruitplantwatermelon
Partsred fleshgreen rindseeds
redgreenblackfleshrindslicedlargefresh
4grapes0.75fully visible

A bunch of dark purple grapes.

fruitplantgrapes
Partsberriesstem
dark purpleblue-blackskinclusteredsmall individual berriesfresh
confusable withcurrants
5apple0.70fully visible

A red and yellow apple.

fruitplantapple
Partsbodyskin
redyellowgreenskinrestingmediumfresh
confusable withpeachnectarine
6orange0.65fully visible

A group of oranges in the basket.

fruitplantorange
Partsrindbody
orangerindrestingmediumfresh
confusable withtangerinepomelo
7fig0.60fully visible

A fig that has been cut in half, showing its pink interior.

fruitplantfig
Partsskinfleshseeds
purplepinkbrownskinfleshslicedsmallfresh
confusable withpersimmon
8fig0.55fully visible

A whole, uncut fig next to the sliced one.

fruitplantfig
Partsskinbody
purpleskinrestingsmallfresh
confusable withpersimmon
9peach0.50fully visible

A peach in the foreground.

fruitplantpeach
Partsskinbody
yellowredorangeskinrestingmediumfresh
confusable withnectarineapricot
10peach0.45fully visible

A second peach in the foreground.

yellowredrestingmediumfresh
11plum0.40fully visible

A plum or nectarine in the background.

purpleredrestingsmallfresh
12fruit0.35partially visible

A partially visible fruit on the far right.

orangeyellowrestingunknownfresh
objects_parts_structured · Qwen3.6-35B-A3B only

DataComp

10 images
DATACOMP · 1003530226
Qwen3.6-35B-A3B589×900px · 5 boxes
s1-datacomp-1
1
2
3
4
5
1martial artist0.95fully visible

A man in a white martial arts uniform with a black belt, captured mid-air performing a high flying kick.

personhumanmartial artistkarateka
Partsheadtorsoleft_armright_armleft_legright_legleft_footright_foot
Associatedwhite gi topworn_oncovers torso, left_arm, right_armwhite gi pantsworn_oncovers left_leg, right_legblack beltworn_oncovers torso
whiteblackfabricmid-air, performing a high kickaverage adult malefocused, intenseblack beltwhite giblack beltcleanbeardshort dark hair
confusable withdanceracrobats
2martial artist0.85fully visible

A man in a white martial arts uniform with a black belt, standing on the ground in a defensive stance.

personhumanmartial artistkarateka
Partsheadtorsoleft_armright_armleft_legright_legleft_footright_foot
Associatedwhite gi topworn_oncovers torso, left_arm, right_armwhite gi pantsworn_oncovers left_leg, right_legblack beltworn_oncovers torso
whiteblackfabricstanding, defensive stanceaverage adult malefocused, observingblack beltwhite giblack beltcleanshort dark hair
confusable withmartial arts instructorstudent
3tree0.30partially visible

A large, leafy tree in the background.

darkfoliagestationarylargehealthy
4grass0.25fully visible

A grassy lawn where the men are practicing.

lightgrassflatlarge areamowed
5foliage0.20fully visible

Dense foliage and trees in the background.

darkleavesstationarylarge areadense
DATACOMP · 2001017416
Qwen3.6-35B-A3B800×450px · 6 boxes
s1-datacomp-2
1
2
3
4
5
6
1tree0.95fully visible

A large, leafless tree with a thick, forked trunk and sprawling branches, standing prominently in the center of the frame.

plantfloratreedeciduous tree
Partstrunkforked_basebranchestwigs
browngreytanwoodbarkstanding, leaflesslarge, dominant in the framelight-colored patches on the trunk, possibly lichen or sun-bleached barkappears healthy but dormantcomplex, intricate branching structure
confusable withdead treeacacia tree
2tree0.60fully visible

A smaller, leafy tree to the right of the main tree.

plantfloratreeevergreen tree
Partstrunkbranchescanopyleaves
greenbrownwoodleavesstanding, leafymedium, smaller than the central treehealthy
confusable withacacia tree
3tree0.50fully visible

A smaller, leafy tree to the left of the main tree.

plantfloratreeevergreen tree
Partstrunkbranchescanopyleaves
greenbrownwoodleavesstanding, leafymedium, smaller than the central treehealthy
confusable withacacia tree
4grassland0.40fully visible

The grassy field that covers the foreground and midground of the image.

greenyellowbrowngrassvegetationflat, expansivevery large, covers the entire ground areamixed, with both green and dry patches
5sky0.30fully visible

The sky, which is filled with dark, heavy clouds.

dark bluegreywhitecloudsatmosphereovercast, stormyvery large, covers the entire sky areadramatic, with heavy cloud cover
6horizon0.20partially visible

A distant, dark line of trees or hills on the horizon.

dark greenblackdistant vegetationflat, distantsmall, appears as a thin line due to distance
DATACOMP · 3003583220
Qwen3.6-35B-A3B900×651px · 17 boxes
s1-datacomp-3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
1barrel0.95fully visible

A large wooden barrel used as a display stand in the center of the room.

containerfurniturebarrelwine barrel
Partswooden_stavesmetal_bandstop_surfacebottom_surfaceside_surface
Associatedwine bottlesmounted_oncovers top_surface
browntanblackwoodmetaluprightlargemetal bandsgoodhorizontal metal bands
confusable withdrumtub
2wine bottles0.85fully visible

A collection of wine bottles arranged on top of the central barrel.

bottlecontainerwine bottleswine bottle
Partsglass_bodyneckcap/corklabel
dark greenblackredwhiteglasscorkpaperuprightstandardlabelsnewarranged in rows
confusable withliquor bottlesbeer bottles
3shelf0.90fully visible

A large wooden shelving unit on the right side, filled with wine bottles.

furniturestorage unitshelfwine rack
Partsshelvesvertical supportsframe
Associatedwine bottlesmounted_oncovers shelves
browntanwooduprightlargegoodmulti-tiered
confusable withbookshelfcabinet
4wine bottles0.80fully visible

A large collection of wine bottles on the right-hand shelf.

bottlecontainerwine bottleswine bottle
Partsglass_bodyneckcap/corklabel
dark greenblackredwhiteyellowglasscorkpaperuprightstandardlabelsnewarranged in rows
confusable withliquor bottlesbeer bottles
5arch0.85fully visible

A large stone archway forming the ceiling and structure of the cellar.

architectural elementstructurearchstone arch
Partsstone blockskeystonecurved topvertical supports
Associatedwooden ceiling beamsattached_tocovers curved topchandeliermounted_oncovers curved top
tanbrownbeigestonewoodstaticlargegoodrustic appearance
confusable withtunnelbridge
6ceiling beams0.70fully visible

Wooden beams forming the ceiling inside the stone arch.

architectural elementstructureceiling beams
Partsplanksjoists
browndark brownwoodhorizontallargegoodparallel arrangement
confusable withfloorboardsdecking
7chandelier0.60fully visible

A chandelier hanging from the center of the ceiling.

light fixturelightingchandeliercandle-style chandelier
Partscentral hubarmsbulbs/lightshanging chain/rod
dark metalyellow lightmetalglasshangingmediumgoodmultiple light sources
confusable withpendant lightsconce
8wine rack0.75fully visible

A wooden wine rack on the left side, filled with bottles.

furniturestorage unitwine rackwine rack
Partsshelvesvertical supportsframe
Associatedwine bottlesmounted_oncovers shelves
browntanwooduprightmediumgoodmulti-tiered
confusable withbookshelfcabinet
9wine bottles0.70fully visible

A collection of wine bottles on the left-hand wine rack.

bottlecontainerwine bottleswine bottle
Partsglass_bodyneckcap/corklabel
dark greenblackredwhiteglasscorkpaperuprightstandardlabelsnewarranged in rows
confusable withliquor bottlesbeer bottles
10wall sconce0.65fully visible

A wall-mounted light fixture on the left stone pillar.

light fixturelightingwall sconcecandle-style sconce
Partsmounting platearmlight source
dark metalyellow lightmetalglassmountedsmallgoodcandle-like bulb
confusable withpendant lightlamp
11wall sconce0.65fully visible

A wall-mounted light fixture on the right stone pillar.

light fixturelightingwall sconcecandle-style sconce
Partsmounting platearmlight source
dark metalyellow lightmetalglassmountedsmallgoodcandle-like bulb
confusable withpendant lightlamp
12table0.55partially visible

A small wooden table or stand in the background.

furnituresurfacetable
Partstop surfacelegs
brownwooduprightsmallgood
confusable withstoolcrate
13framed picture0.50fully visible

A framed picture or menu on the back wall.

decorationwall artframed picture
Partsframeglassimage
blackwhitewoodglasspaperhangingsmallgood
confusable withmirrorwindow
14pillar0.45fully visible

A stone pillar on the left side of the room.

architectural elementstructurepillarstone pillar
Partsstone blocksvertical surface
Associatedwall sconcemounted_oncovers vertical surface
tanbeigestoneuprightlargegoodrustic appearance
confusable withcolumnwall
15pillar0.45fully visible

A stone pillar on the right side of the room.

architectural elementstructurepillarstone pillar
Partsstone blocksvertical surface
Associatedwall sconcemounted_oncovers vertical surface
tanbeigestoneuprightlargegoodrustic appearance
confusable withcolumnwall
16floor0.40fully visible

A tiled floor in the cellar.

surfacearchitectural elementfloortiled floor
Partstilesgrout lines
tanbrownstoneceramicflatlargegoodgrid pattern
confusable withrugcarpet
17barrel0.35partially visible

A small wooden barrel in the background.

containerfurniturebarrelwine barrel
Partswooden_stavesmetal_bandstop_surfacebottom_surfaceside_surface
browntanblackwoodmetaluprightsmallmetal bandsgoodhorizontal metal bands
confusable withdrumtub
DATACOMP · 4001616965
Qwen3.6-35B-A3B640×426px · 12 boxes
s1-datacomp-4
1
2
3
4
5
6
7
8
9
10
11
12
1house0.90fully visible

A two-story house with a brown roof, a large yellow star on the roof, and a wraparound deck.

buildingstructurehousewaterfront house
Partsroofwallswindowsdeckbalconystairs
Associatedyellow star decorationattached_tocovers roofred chairsattached_tocovers deckwhite railingattached_tocovers deck, balcony
whitebrownyellowwoodstuccometalstandinglargeyellow star on the roofgoodhas a wraparound deck and balcony
confusable withhotelvacation rental
2star decoration0.70fully visible

A large, five-pointed yellow star attached to the roof of the main house.

decorationobjectstar decoration
yellowunknownattachedmediumgoodfive-pointed star
confusable withroof ventsolar panel
3house0.60fully visible

A white house with a large balcony and a small boat docked in front.

buildingstructurehousewaterfront house
Partsroofwallsbalconywindows
Associatedwhite railingattached_tocovers balcony
whitewoodstuccostandinglargegoodhas a large second-story balcony
confusable withcondominium
4boat0.50fully visible

A white motorboat with a blue bimini top, docked in the foreground.

vesselvehicleboatmotorboat
Partshulldeckbimini_topwindshield
whitebluefiberglassfabricdockedsmallgoodhas a blue canopy over the cockpit
confusable withpontoon boat
5sailboat0.40fully visible

A white sailboat with its mast up, moored in the canal.

vesselvehiclesailboat
Partshullmastdeck
whitefiberglassmetalmooredmediumgoodhas a tall mast, sails are furled
confusable withmotor yacht
6house0.30fully visible

A light blue house on stilts, located across the water.

buildingstructurehouse
Partsroofwallsstilts
light bluewoodstandingsmallgoodbuilt on stilts over the water
confusable withboathouse
7water0.20fully visible

A large body of water, likely a bay or ocean inlet.

body of waternatural featurewater
bluegreencalmvery largehas a few distant boats
confusable withriver
8tree0.20partially visible

A large, leafy green tree in the right foreground.

plantfloratree
Partsleavesbranches
greenstandinglargehealthy
confusable withbush
9palm tree0.20fully visible

A palm tree on the left side of the canal.

plantflorapalm tree
Partstrunkfronds
greenbrownstandingmediumhealthy
confusable withother tree
10dock0.10fully visible

A wooden dock extending from the main house into the canal.

structureinfrastructuredock
Partsplankspilings
brownwoodstandingmediumgood
confusable withpier
11building0.10partially visible

A small, white building with a flat roof, located behind the main house.

structurebuilding
Partsroofwalls
whitegrayunknownstandingsmallgood
confusable withshedboathouse
12boat0.10partially visible

A small, white boat in the distance on the main body of water.

vesselvehicleboat
whitesailingsmall
confusable withsailboat
DATACOMP · 5001080044
Qwen3.6-35B-A3B736×552px · 8 boxes
s1-datacomp-5
1
2
3
4
5
6
7
8
1dog0.90fully visible

A chocolate Labrador Retriever in the foreground, looking directly at the camera with its mouth open.

mammalanimaldogLabrador Retriever
Partsheadtorsoleft_earright_earsnoutmouthtongueteethleft_eyeright_eyenose
chocolate brownfursitting, looking uplargehappy, expectantclean, healthy
confusable withchocolate labrador mixflat-coated retriever
2dog0.85partially visible

A chocolate Labrador Retriever to the right of the first dog, looking up at the camera.

mammalanimaldogLabrador Retriever
Partsheadtorsoleft_earright_earsnoutmouthleft_eyeright_eyenose
chocolate brownfursitting, looking uplargecurious, expectantclean, healthy
confusable withchocolate labrador mixflat-coated retriever
3dog0.70partially visible

A chocolate Labrador Retriever in the background, looking towards the camera.

mammalanimaldogLabrador Retriever
Partsheadtorsoleft_earright_earsnoutmouthtongueleft_eyeright_eyenose
chocolate brownfursitting, looking uplargehappy, expectantclean, healthy
confusable withchocolate labrador mixflat-coated retriever
4legs0.30partially visible

The lower legs and knees of a person, visible at the bottom of the frame.

skin tonesittingaverage
5cabinet0.20partially visible

White kitchen cabinets with a handle.

whitepainted woodclosedlarge
6countertop0.15partially visible

A countertop with a speckled pattern.

brownbeigelaminateflatlarge
7object0.10partially visible

A dark object on the countertop.

blackrestingsmall
8bowl0.05partially visible

A blue bowl in the background room.

blueplasticrestingsmall
DATACOMP · 6000110825
Qwen3.6-35B-A3B900×506px · 14 boxes
s1-datacomp-6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
1basilica0.95fully visible

The large, domed basilica dominating the background skyline.

churchbuildingstructurebasilicaBaroque church
Partsmain_domebell_towersecondary_domesfacadecolumnsstatuesroof
beigecreamgreystonemarblestandinglargearchitectural detailsstatueswell_maintainedsilhouetted against the sunset
confusable withcathedralpalace
2sun0.85fully visible

The bright, glowing sun setting in the sky.

starcelestial_bodysun
Partscoreglow
yelloworangesettingmediumglowinghazy
confusable withmoonstreetlight
3gondola0.75fully visible

A traditional Venetian gondola with a gondolier and passengers.

boatwatercraftvehiclegondolaVenetian gondola
Partshullprowsternseats
Associatedgondoliercarried_in_handpassengerscarried_in_hand
blackwoodfloatingsmallsilhouetted
confusable withcanoerowboat
4person0.65fully visible

The gondolier standing at the stern of the gondola.

humanadultpersongondolier
Partsheadtorsolegs
Associateddark clothingworn_oncovers torso, legs
blackstandingsmalldark clothingsilhouetted
confusable withpassengerstatue
5person0.55partially visible

Passengers sitting in the gondola.

humanadultperson
Partsheadtorso
Associateddark clothingworn_oncovers torso
blacksittingsmalldark clothingsilhouetted
confusable withgondolier
6boat0.45fully visible

A small motorboat in the distance.

watercraftvehicleboat
Partshull
whitefloatingsmalldistant
confusable withgondola
7bird0.40fully visible

A bird flying in the sky.

animalvertebratebird
Partswingsbody
darkflyingsmallsilhouetted
confusable withinsect
8post0.35fully visible

A wooden mooring post in the water.

structureobjectpostbricole
Partsshaft
dark_brownblackwoodstandingmediumweatheredsilhouetted
confusable withtree_trunkpole
9post0.30fully visible

A wooden mooring post in the water.

structureobjectpostbricole
Partsshaft
dark_brownblackwoodstandingmediumweatheredsilhouetted
confusable withtree_trunkpole
10post0.25fully visible

A wooden mooring post in the water.

structureobjectpostbricole
Partsshaft
dark_brownblackwoodstandingmediumweatheredsilhouetted
confusable withtree_trunkpole
11post0.20fully visible

A wooden mooring post in the water.

structureobjectpostbricole
Partsshaft
dark_brownblackwoodstandingmediumweatheredsilhouetted
confusable withtree_trunkpole
12post0.15fully visible

A wooden mooring post in the water.

structureobjectpostbricole
Partsshaft
dark_brownblackwoodstandingmediumweatheredsilhouetted
confusable withtree_trunkpole
13buoy0.10fully visible

A small buoy in the water.

objectmarkerbuoy
whitefloatingsmall
confusable withrock
14water0.05fully visible

The water of the canal.

liquidnatural_featurewater
orangegreybrownflowinglargereflectionsrippled
DATACOMP · 7002078703
Qwen3.6-35B-A3B800×800px · 12 boxes
s1-datacomp-7
1
2
3
4
5
6
7
8
9
10
11
12
1earring0.90fully visible

A large, multi-colored floral stud earring with red, blue, yellow, and green stones.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
redblueyellowgreensilverrhinestonemetallying_flatmediumfaceted stonesnewmulti-colored
confusable withbroochhair clip
2earring0.85fully visible

A multi-colored floral stud earring with blue, yellow, red, and green stones.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
blueyellowredgreensilverrhinestonemetallying_flatmediumfaceted stonesnewmulti-colored
confusable withbroochhair clip
3earring0.80fully visible

A black floral stud earring.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
blacksilverrhinestonemetallying_flatmediumfaceted stonesnewmonochrome
confusable withbroochhair clip
4earring0.75fully visible

A green and silver floral stud earring.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
greensilverrhinestonemetallying_flatmediumfaceted stonesnewtwo-tone
confusable withbroochhair clip
5earring0.70fully visible

A grey/silver floral stud earring.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
greysilverrhinestonemetallying_flatmediumfaceted stonesnewmonochrome
confusable withbroochhair clip
6earring0.65fully visible

A gold and white floral stud earring.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
goldwhiterhinestonemetallying_flatmediumfaceted stonesnewtwo-tone
confusable withbroochhair clip
7earring0.60fully visible

A pink floral stud earring.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
pinksilverrhinestonemetallying_flatmediumfaceted stonesnewmonochrome
confusable withbroochhair clip
8earring0.55fully visible

A magenta floral stud earring.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
magentasilverrhinestonemetallying_flatmediumfaceted stonesnewmonochrome
confusable withbroochhair clip
9earring0.50fully visible

A blue floral stud earring.

jewelryaccessoryearringrhinestone earring
Partscenter_stonesurrounding_stonesmetal_settingear_post
bluesilverrhinestonemetallying_flatmediumfaceted stonesnewmonochrome
confusable withbroochhair clip
10earring0.45fully visible

A dark blue floral stud earring.

dark bluesilverrhinestonemetallying_flatmediumnew
11earring0.40fully visible

A white floral stud earring.

whitesilverrhinestonemetallying_flatmediumnew
12platform0.30partially visible

A white circular platform used for display.

whiteplasticceramiclying_flatmediumnew
DATACOMP · 8002574224
Qwen3.6-35B-A3B900×596px · 20 boxes
s1-datacomp-8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
1shelving unit0.95fully visible

A tall, silver metal shelving unit holding various audio components.

furniturestorageshelving unit
Partsframeshelveslegs
Associatedturntable with wooden basemounted_oncovers top_shelfsilver amplifiermounted_oncovers middle_shelfsilver amplifiermounted_oncovers middle_shelfsilver amplifiermounted_oncovers lower_shelfsilver amplifiermounted_oncovers lower_shelfstack of white papersmounted_oncovers bottom_shelf
silvergreymetalstandinglargeclean
confusable withrackdisplay stand
2turntable0.85fully visible

A turntable with a wooden base and silver platter.

electronic deviceaudio equipmentturntable
Partsplattertonearmbase
brownsilverwoodmetalstationarymediumclean
confusable withrecord playerCD player
3amplifier0.75fully visible

A silver audio amplifier with knobs and a display.

electronic deviceaudio equipmentamplifier
Partschassisknobsdisplay
silvermetalstationarymediumclean
confusable withreceiverpreamp
4amplifier0.75fully visible

A silver audio amplifier with knobs and a display.

electronic deviceaudio equipmentamplifier
Partschassisknobsdisplay
silvermetalstationarymediumclean
confusable withreceiverpreamp
5amplifier0.75fully visible

A silver audio amplifier with knobs and a display.

electronic deviceaudio equipmentamplifier
Partschassisknobsdisplay
silvermetalstationarymediumclean
confusable withreceiverpreamp
6amplifier0.75fully visible

A silver audio amplifier with knobs and a display.

electronic deviceaudio equipmentamplifier
Partschassisknobsdisplay
silvermetalstationarymediumclean
confusable withreceiverpreamp
7amplifier0.80fully visible

A large black amplifier with blue meters on the front.

electronic deviceaudio equipmentamplifier
Partschassisknobsmeters
blackbluemetalstationarylargeclean
confusable withreceiverpreamp
8amplifier0.80fully visible

A large silver amplifier with vertical fins on the side.

electronic deviceaudio equipmentamplifier
Partschassisknobsfins
silvermetalstationarylargeclean
confusable withreceiverpreamp
9speaker0.90fully visible

A tall, black floor-standing speaker.

electronic deviceaudio equipmentspeaker
Partscabinetdriversgrille
blackwoodmetalstandinglargeclean
confusable withsubwoofertower speaker
10shelving unit0.85fully visible

A tall, white metal shelving unit holding various audio components.

furniturestorageshelving unit
Partsframeshelveslegs
Associatedblack audio componentmounted_oncovers top_shelfblack audio componentmounted_oncovers second_shelfblack audio componentmounted_oncovers third_shelfblack audio componentmounted_oncovers fourth_shelfblack audio componentmounted_oncovers fifth_shelfblack audio componentmounted_oncovers bottom_shelf
whitemetalstandinglargeclean
confusable withrackdisplay stand
11audio component0.70fully visible

A black audio component with gold connectors on top.

electronic deviceaudio equipmentaudio component
Partschassisconnectors
blackgoldmetalstationarymediumclean
confusable withreceiverpreamp
12audio component0.70fully visible

A black audio component.

electronic deviceaudio equipmentaudio component
Partschassis
blackmetalstationarymediumclean
confusable withreceiverpreamp
13audio component0.70fully visible

A black audio component.

electronic deviceaudio equipmentaudio component
Partschassis
blackmetalstationarymediumclean
confusable withreceiverpreamp
14audio component0.70fully visible

A black audio component with gold connectors on top.

electronic deviceaudio equipmentaudio component
Partschassisconnectors
blackgoldmetalstationarymediumclean
confusable withreceiverpreamp
15audio component0.70fully visible

A black audio component.

electronic deviceaudio equipmentaudio component
Partschassis
blackmetalstationarymediumclean
confusable withreceiverpreamp
16audio component0.70fully visible

A black audio component.

electronic deviceaudio equipmentaudio component
Partschassis
blackmetalstationarymediumclean
confusable withreceiverpreamp
17rug0.60partially visible

A red rug on the floor.

textilehome decorrug
Partssurface
redfabricflatlargeclean
confusable withcarpet
18table0.50partially visible

A white table with magazines on it.

furnituretable
Partssurfacelegs
Associatedmagazinesmounted_oncovers surface
whitewoodlaminatestandingmediumclean
confusable withcoffee tableside table
19poster0.40fully visible

A poster on the wall.

Text“Project” — center
yellowwhitepaperhangingsmallclean
20box0.30partially visible

A small black box on the floor.

blackunknownstationarysmallclean
DATACOMP · 9003013514
Qwen3.6-35B-A3B900×600px · 4 boxes
s1-datacomp-9
1
2
3
4
1steam locomotive0.95fully visible

A large, multi-colored steam locomotive with a prominent front headlight and a star emblem.

locomotivetrainvehiclemachinesteam locomotivesteam engine
Partsboilersmokestackheadlightcowcatcherfront_plowbellwater_tankfront_circular_platebrass_railings
Associatedsmall American flagattached_tocovers smokestack
Text“1” — on a small black plaque above the headlight
tealsilverredgoldblackmetalpainted steelbrassstationaryvery largea yellow star on a red and orange circular plate on the frontappears well-maintained and cleanhas a large, round, brass-colored headlightfeatures a prominent brass bell on the left side
confusable withdiesel locomotivetoy train
2child0.90fully visible

A young child with short brown hair, wearing a headband and a two-toned shirt, sitting on an adult's shoulders.

humanpersonchildchildtoddler
Partsheadtorsoleft_armright_armleft_legright_leg
Associatedblue patterned headbandworn_oncovers headgrey and dark grey long-sleeved shirtworn_oncovers torso, left_arm, right_armdark blue pantsworn_oncovers left_leg, right_leg
browngreydark greybluehairfabricsitting on shoulders, facing away from the camerasmallnot visible (back of head)grey and dark grey long-sleeved shirtdark blue pantsblue patterned headbandclean
confusable withbabyyoung boy
3adult0.85partially visible

An adult, seen from the back, wearing a blue t-shirt and carrying a child on their shoulders.

humanpersonadultman
Partsheadtorsoleft_armright_arm
Associatedblue t-shirtworn_oncovers torso, left_arm, right_arm
bluebrownhairfabricstanding, carrying a child on shoulderslarge relative to the childnot visible (back of head)blue t-shirtclean
confusable witholder child
4foliage0.30partially visible

Green foliage and trees in the background.

greenleavesstationary
DATACOMP · 10002029282
Qwen3.6-35B-A3B672×900px · 7 boxes
s1-datacomp-10
1
2
3
4
5
6
7
1dog0.95fully visible

A black and white dog lying down with a ball.

mammalanimaldogBorder Collie
Partsheadtorsoleft_earright_earsnoutleft_front_legright_front_legleft_eyeright_eyenosemouth
blackwhitefurlying_downmediumalert, looking at the camerablack patches around eyeswhite blaze on snoutwhite neck and chestclean, healthy
confusable withsheepdogcollie
2ball0.85fully visible

A colorful plush ball.

toyplaythingballplush ball
Partsbodypanels
yellowblueorangegreenredfabricplushrestingmedium, suitable for a dogmulti-colored panelsgood
confusable withbeach ballyarn ball
3rug0.40partially visible

A patterned rug on the floor.

redbeigeblueblackfabrictextileflat_on_floorlargeintricate floral or paisley patterngood
4sofa0.30partially visible

A sofa in the background.

brownbeigefabricwicker-like framestationarylargegood
5door0.25fully visible

A white door in the background.

whitewoodpaintedclosedstandardgood
6cabinet0.20partially visible

A wooden cabinet on the right.

light brownwoodwoodstationarymediumgood
7pillow0.15partially visible

A patterned pillow on the sofa.

blackwhitefabricrestingsmallabstract or animal printgood

Qwen3.6-35B-A3B vs GPT-5.4 annotations comparison

Picked without looking at the annotations first. Each pair is verified as the same photo by the original scrape URL, not by filename.

objects_parts_structured · Qwen3.6-35B-A3B vs GPT-5.4

CC3M

5 matched pairs
S2-CC3M · 1000179705
Qwen3.6-35B-A3B731×512px · 4 boxes
s2-cc3m-1-qwen
1
2
3
4
1baseball player1.00fully visible

A male baseball pitcher in mid-throw.

personathletebaseball playerbaseball pitcher
Partsheadtorsoleft_armright_armleft_legright_legleft_handright_hand
Associatedblack baseball cap with a yellow 'P' logoworn_oncovers headgrey baseball jersey with 'PITTSBURGH' and number '43' in black and yellowworn_oncovers torsogrey baseball pantsworn_oncovers left_leg, right_legblack beltworn_oncovers torsoblack baseball gloveworn_oncovers left_handblack compression sleeves on both legsworn_oncovers left_leg, right_legblack and white cleatsworn_oncovers left_leg, right_legwhite baseballheld_bycovers right_hand
Text“PITTSBURGH” — chest of jersey“43” — lower right of jersey“P” — front of cap
greyblackyellowwhitefabricleatherrubbermid-throw, dynamic athletic poselargefocusedPITTSBURGH 43 on jerseyP on captattoo on left armbaseball uniformcleatscapnewtattoo on left arm
confusable withbaseball batterbaseball coach
2umpire0.20partially visible

A blurred umpire standing in the background.

blackstanding
3advertising banner0.10partially visible

A blurred advertising banner in the background.

Text“TOYOTA” — banner
blackwhiteredfabrichangingToyota logo
4pitcher's mound0.05partially visible

The dirt surface of the pitcher's mound.

browndirtflat
GPT-5.4900×630px · 8 boxes
s2-cc3m-1-gpt
1
2
3
4
5
6
7
8
1person0.99fully visible

baseball pitcher in gray uniform at center

athleteadultpersonpersonbaseball playerpitcher
Partsheadtorsoleft_armright_armleft_handright_handleft_legright_leg
Associatedblack baseball capworn_oncovers headgray baseball jerseyworn_oncovers torso, left_arm, right_armgray baseball pantsworn_oncovers left_leg, right_legblack beltworn_oncovers torsoblack socksworn_oncovers left_leg, right_legblack cleatsworn_oncovers left_foot, right_footblack baseball gloveheld_bycovers left_handbaseballheld_bycovers right_hand
Text“PITTSBURGH” — jersey front“43” — jersey lower front
grayblacktanfabricleathermid-pitch with legs spread and throwing arm extendedlarge foreground subjectfocusedteam lettering on jerseynumber 43tattoo pattern on right armtattoo on left forearmblack capgray jerseygray pantsblack socksblack cleatsin useathletic stancelooking toward target
confusable withinfieldersoftball player
2cap0.62fully visible

black cap worn by the pitcher

hatclothingcapbaseball cap
Partscrownbrim
blackyellowfabricwornsmall relative to personyellow P logocapgoodteam-style uniform cap
confusable withsports capuniform hat
3glove0.66fully visible

black glove on the player's left hand

sports equipmentequipmentglovebaseball glove
Partspocketwebbingwrist_opening
blackleatherworn on hand and raisedsmall relative to personred accent near wristin useopen catching pocket visible
confusable withmittwork glove
4ball0.52fully visible

white baseball in the player's right hand

sports equipmentequipmentballbaseball
whiteleathergripped for throwingvery smallin use
confusable withsoftball
5person0.34mostly visible

umpire or official standing in the right background

blackgraystanding
6mound0.22partially visible

dirt pitching mound at the bottom foreground

browntanstatic
7sign0.18partially visible

advertising board along the lower background

Text“TOYOTA” — left side of sign“SERIES” — center-right of sign
blackwhitestatic
8crowd0.12small or distant

blurred crowd filling the stadium background

bluepurplewhiteblacktanseated and standing
S2-CC3M · 2000176447
Qwen3.6-35B-A3B512×608px · 9 boxes
s2-cc3m-2-qwen
1
2
3
4
5
6
7
8
9
1entertainment center0.95fully visible

A large, modular entertainment center unit with a mix of high-gloss white and dark wood-grain finishes, featuring multiple cabinets, shelves, and a central area for a television.

furniturecabinetentertainment centermedia console
Partsleft_tall_cabinetleft_lower_cabinetcentral_shelftv_mounttv_screenlow_consoleright_console_cabinettop_shelfwall_panel
Associatedblack electronic device (DVD/Blu-ray player)mounted_oncovers central_shelfblack electronic device (receiver or amplifier)mounted_oncovers central_shelfblack remote controlmounted_oncovers low_consolegrey remote controlmounted_oncovers low_consolestack of booksmounted_oncovers left_lower_cabinetsmall decorative objectmounted_oncovers left_lower_cabinet
high-gloss whitedark wood-grainblacklaminated woodglassplasticstandinglargehorizontal wood grain patternnew, pristinehigh-gloss finishmodular design
confusable withbookshelfwall unit
2DVD player0.60fully visible

A black electronic device, likely a DVD or Blu-ray player, with a silver front panel.

electronic devicemedia playerDVD player
Partsfront_paneldisc_traycontrol_buttons
blacksilverplasticmetalstandingsmallnew
confusable withBlu-ray playercable box
3receiver0.55fully visible

A black electronic device, likely a receiver or amplifier, stacked on top of the DVD player.

electronic deviceaudio componentreceiver
Partsfront_paneldisplay_screencontrol_knobscontrol_buttons
blackmetalplasticstandingsmallnew
confusable withamplifiermedia streamer
4remote control0.40fully visible

A black remote control lying on the low console.

blackplasticlying flatsmallnew
5remote control0.35fully visible

A grey remote control lying on the low console.

greyplasticlying flatsmallnew
6books0.30fully visible

A small stack of books on the left lower cabinet.

objectbooks
blackwhitepapercardboardstackedsmallnew
7decorative object0.25partially visible

A small, dark decorative object next to the stack of books.

objectdecorative object
dark greyunknownstandingsmallnew
8television0.85fully visible

A flat-screen television with a silver bezel, mounted within the entertainment center.

electronic devicedisplaytelevisionflat-screen TV
Partsscreenbezelstand_mount
blacksilverglassplasticmetaloffmediumnew
confusable withcomputer monitor
9rug0.20partially visible

A grey, shaggy rug on the floor in the foreground.

home decorrugshag rug
greyfabriclying flatlargenewshaggy texture
GPT-5.4600×712px · 10 boxes
s2-cc3m-2-gpt
1
2
3
4
5
6
7
8
9
10
1wall unit0.96mostly visible

large wall-mounted entertainment unit spanning most of the image

furnitureinterior furnishingwall unitentertainment centermodern modular wall unit
Partsleft_tall_cabinetupper_shelfmiddle_shelftv_frame_sectionlower_consolecabinet_doorsopen_compartments
whiteblackdark brownwoodlaminategloss finishstationaryvery largecleangeometric modular designmounted against wall
confusable withcabinet systemmedia console
2television0.84fully visible

flat-screen television in the center-right

electronic devicedisplay screentelevisionflat-screen television
Partsscreenbezelframe
blacksilverwhiteglassplasticmetaloffmedium-largecleanmounted within wall unit
confusable withcomputer monitordigital display
3books0.34fully visible

stack of books on the middle-left shelf

blackwhitegraystacked
4media player0.38fully visible

closed media player on the lower-left shelf

blacksilverclosed
5keyboard0.22fully visible

small keyboard-like device in front of the television

whitegrayresting on surfacesmall
6remote control0.18fully visible

small remote-like object to the right of the keyboard

graywhiteresting on surfacesmall
7wall0.47fully visible

dark wood-paneled wall behind the furniture

dark browncharcoalstationarylarge background surface
8floor0.29fully visible

white glossy floor at the bottom

whitelight grayflatlarge surface
9rug0.31partially visible

shag rug in the bottom-right foreground

graybrownlying flatmedium
10wall0.16fully visible

light-colored side wall on the far right

whitelight graystationarynarrow visible strip
S2-CC3M · 3000174375
Qwen3.6-35B-A3B900×494px · 7 boxes
s2-cc3m-3-qwen
1
2
3
4
5
6
7
1scooter0.95fully visible

A vintage-style motor scooter, primarily green and white, being ridden by two people.

motor vehiclevehiclescootervintage scooter
Partsfront_fairingheadlighthandlebarsfront_mirrorrear_mirrorseatrear_fenderfront_wheelrear_wheel
Associatedbrown leather seatattached_tocovers seat
greenwhitechromemetalplasticleatherparked_or_moving_slowlysmallchrome accentsgoodvintage style
confusable withmotorcyclemoped
2man0.90fully visible

A man with long hair driving the scooter, wearing sunglasses and a light blue shirt.

humanadultmanyoung adult
Partsheadtorsoleft_armright_armleft_handright_handleft_legright_leg
Associatedsunglassesworn_oncovers eyeslight blue button-down shirtworn_oncovers torso, left_arm, right_armbeige trousersworn_oncovers left_leg, right_legwatchworn_oncovers left_wrist
light bluebeigebrown hairfabricsitting, drivingaverageneutral, looking forwardlight blue shirtbeige trousersgoodlong hair
confusable withboy
3woman0.85fully visible

A woman sitting behind the man on the scooter, waving with both hands.

humanadultwomanyoung adult
Partsheadtorsoleft_armright_armleft_handright_handleft_legright_leg
Associatedsunglassesworn_oncovers eyeswhite sleeveless dressworn_oncovers torso, left_leg, right_legbrown beltworn_oncovers waistbraceletworn_oncovers right_wrist
whitebrowndark hairfabricsitting, wavingaveragesmiling, happywhite dressbrown beltgoodlong dark hair
confusable withgirl
4tree0.30partially visible

A large, leafy green tree in the background.

greenstandinglargehealthy
5building0.25partially visible

A classical-style building with columns in the background.

whitebeigestoneconcretestandinglargegoodclassical architecture
6fence0.20partially visible

A low fence or wall behind the scooter.

brownwoodmetalstandingsmallgood
7flowers0.15partially visible

A patch of red flowers in the background.

redgreenbloomingsmallhealthy
GPT-5.4900×494px · 10 boxes
s2-cc3m-3-gpt
1
2
3
4
5
6
7
8
9
10
1man0.98mostly visible

man driving the scooter in the center

adultpersonhumanman
Partsheadtorsoleft_armright_armleft_handleft_legright_leghairface
Associatedaviator sunglassesworn_oncovers facelight blue button-up shirtworn_oncovers torso, left_arm, right_armbeige pantsworn_oncovers left_leg, right_legwatchworn_oncovers left_arm
light bluebeigetanblackfabricmetalglasssitting and drivinglarge foreground subjectslight smilelight blue shirtbeige pantswearing sunglassesfacing left
confusable withwomanyoung adult
2woman0.97mostly visible

woman riding on the back of the scooter with raised arms

adultpersonhumanwoman
Partsheadtorsoleft_armright_armleft_handright_handleft_legright_leghairface
Associateddark sunglassesworn_oncovers facewhite sleeveless dressworn_oncovers torso, left_leg, right_legbrown beltworn_oncovers torsobraceletworn_oncovers right_arm
whitebrownblacktanfabricglassmetalsitting sideways with both arms raisedlarge foreground subjectsmilingwhite dressbrown beltwearing sunglasseslong dark hair
confusable withyoung adult
3scooter0.95partially visible

mint-green retro scooter in the foreground

motor vehiclevehiclescootermotor scooterretro-style scooter
Partsfront_fairingheadlightleft_mirrorright_mirrorhandlebarsseatrear_body
mint greenwhitebrownchromeorangemetalplasticleatherglassparked or moving slowly with riders seatedlarge foreground vehiclecleanretro stylingtwo riders on seat
confusable withmopedmotorcycle
4building0.34partially visible

white-columned building in the right background

whitecreamstanding
5tree0.28partially visible

large dark evergreen tree behind the couple

dark greenbrownstanding
6tree0.27partially visible

leafy green tree on the left

greenbrownstanding
7lamp post0.18partially visible

streetlamp pole behind the riders

dark brownblackstanding
8flowers0.16small or distant

flower bed along the right side

redpinkgreengrowing
9road0.14fully visible

paved road or plaza surface in the foreground

light graybeigeflat
10fence0.12partially visible

fence or wall behind the trees

beigetanstanding
S2-CC3M · 4000178363
Qwen3.6-35B-A3B640×447px · 5 boxes
s2-cc3m-4-qwen
1
2
3
4
5
1rock formation0.90fully visible

A large, rugged rock formation jutting into the ocean, topped with vegetation.

landformgeological featurerock formationheadlandsea stack
Partsmain_massupper_surfacerocky_facebase
Associateddark green treesattached_tocovers upper_surface
browntandark greyrockstonestationarylargeerosion patternsvegetation patchesweatheredjagged edges
confusable withcliffisland
2tree×30.60fully visible

Dark green coniferous trees growing on top of the rock formation.

plantfloratreeconiferpine tree
Partsfoliagetrunkbranches
dark greenblackleaveswoodstandingmediumhealthy
confusable withbush
3wave0.80fully visible

A large, powerful wave crashing against the rock formation, creating white foam.

water phenomenonnatural eventwavebreaking wavesurf
Partscrestfoamwater_body
whitelight bluegreenwatercrashinglargedynamicsplashingfrothy
confusable withmistcloud
4ocean0.70fully visible

The surrounding ocean water, appearing turbulent and greenish-blue.

body of waternatural featureoceansea
Partssurfacewater
greenbluewhitewaterturbulentvery largeroughfoamychoppy
confusable withlake
5tree0.40partially visible

Dark foliage of trees on the right edge of the frame.

dark greenblackleavesstationarymediumhealthy
GPT-5.4640×447px · 6 boxes
s2-cc3m-4-gpt
1
2
3
4
5
6
1rock formation0.95mostly visible

large rocky outcrop at left-center being hit by surf

landformnatural objectrock formationsea cliffrocky outcrop
Partsrock_facetop_ridgeledge
browngraytanrockstationarylargerough striated surfaceweatheredirregular jagged shapewet near wave impact area
confusable withcliffislet
2wave0.92mostly visible

large breaking wave and white surf striking the rocks

water movementnatural phenomenonwavebreaking wavesurf
Partscrestsprayfoam
whitebluegreenwatercrashinglargehigh splashturbulent water
confusable withwaterfall spraysea foam
3tree0.54mostly visible

cluster of dark trees on top-left of the rocks

plantliving thingtreeconifer
Partstrunkbranchesfoliage
dark greenblackbrownwoodfoliagestandingmediumwindswept silhouette
confusable withshrub
4tree0.43partially visible

large dark tree silhouette along the right edge

blackdark greenstanding
5ocean0.48fully visible

open ocean water in the background

bluetealchoppy
6text0.22fully visible

watermark text near bottom center

Text“alamy - G3RJEJ” — bottom center
whiteblackstatic
S2-CC3M · 5000177610
Qwen3.6-35B-A3B714×512px · 2 boxes
s2-cc3m-5-qwen
1
2
1woman1.00fully visible

A young woman with long dark hair, covering her face with her hand.

humanpersonwomanyoung woman
Partsheadhairleft_armright_armleft_handright_handtorsoshoulders
Associateddark sleeveless topworn_oncovers torso, shoulders
Text“depositphotos” — overlaid on the hair and face
dark brownblackskin tonehairskinfabricsitting, head bowed, face covered by handlarge, fills most of the framedistressed, sad, or crying (implied by gesture)watermark text 'depositphotos' overlaid on the imagedark sleeveless topcleanlong, wavy dark hairpale skin
confusable withgirlmodel
2wall0.20partially visible

A textured, light-colored wall.

Text“depositphotos” — overlaid on the wall surface
pale yellowlight greenblue-greyplasterconcretestaticlarge, fills the backgroundwatermark text 'depositphotos' overlaid on the walltextureduneven lighting
GPT-5.4900×645px · 2 boxes
s2-cc3m-5-gpt
1
2
1girl0.98mostly visible

young girl in the foreground with her face partly covered by her arm

childpersonhumangirl
Partsheadhairtorsoleft_armright_armleft_handright_handleft_shoulderright_shoulderleft_leg
Associateddark sleeveless topworn_oncovers torso, left_shoulder, right_shoulder
light beigeblackdark brownskinhairfabricsitting with head lowered and one forearm covering the facelarge close-up subjectface obscured; appears sad or distresseddark sleeveless toplong dark haireyes not visible
confusable withboyteenager
2wall0.22fully visible

plain wall in the background

graygreenish yellowblue-graystatic
objects_parts_structured · Qwen3.6-35B-A3B vs GPT-5.4

DataComp

5 matched pairs
S2-DATACOMP · 1001108645
Qwen3.6-35B-A3B360×240px · 7 boxes
s2-datacomp-1-qwen
1
2
3
4
5
6
7
1bridge0.90fully visible

A large, grey metal arch bridge spanning the river.

structureinfrastructurebridgearch bridge
Partsarchdecksupporting_trussespillars
greysilvermetalspanning the riverlargeappears well-maintained
confusable withviaducttrestle bridge
2building0.70fully visible

A large, modern building with a prominent white chimney on the left bank.

structurearchitecturebuildingindustrial building
Partsmain_bodychimneywindows
whitegreygreenconcreteglassstandinglargeappears modern
confusable withfactoryoffice building
3boat0.60fully visible

A large, reddish-brown boat moored on the left side of the river.

vesselwatercraftboathouseboat
Partshulldeckcabin
reddish-brownwhitemetalwoodmooredlargeappears well-maintained
confusable withbargeferry
4boat0.50fully visible

A smaller, white boat moored next to the larger reddish-brown boat.

vesselwatercraftboat
Partshullcabin
whitemetalfiberglassmooredsmallappears well-maintained
confusable withsmall yachttugboat
5boat0.40fully visible

A small, white boat further down the river.

vesselwatercraftboat
Partshullcabin
whitemetalfiberglassmooredsmallappears well-maintained
confusable withsmall yacht
6river0.30fully visible

The river water in the foreground and middle ground.

body of waterwaterwayriver
bluegreenwaterflowinglargecalm
7sky0.20fully visible

The clear blue sky above the scene.

atmospheresky
blueclearlargeclear
GPT-5.4360×240px · 10 boxes
s2-datacomp-1-gpt
1
2
3
4
5
6
7
8
9
10
1bridge0.96fully visible

the large arched bridge spanning the water at center

structurebuilt environmentbridgearch bridge
Partsarch_spansupport_columnsdeckrailings
graybeigemetalconcretespanning the waterlargeappears intactopen truss-like side structure
confusable withrailway bridgepedestrian bridge
2river0.92fully visible

the broad waterway in the foreground

water bodynatural featurerivercanal
Partswater_surface
bluegraywatercalmlargeslight ripplesreflective surface
confusable withcanalharbor inlet
3boat0.46mostly visible

boat moored near the left bank in the foreground

whiteredmoored
4boat0.34mostly visible

second boat behind the first along the left bank

whitebrownmoored
5boat0.28small or distant

small boat farther back near the center-left

whitemoored or stationary
6building0.31mostly visible

row of buildings on the left waterfront

whitebeigegreenstanding
7building0.29partially visible

buildings on the right waterfront

beigegraystanding
8wall0.22partially visible

stone embankment or wall along the left edge

beigewhitefixed
9walkway0.18partially visible

walkway or embankment edge along the right side of the water

grayfixed
10sky0.14fully visible

clear sky above the waterfront

light blueclear
S2-DATACOMP · 2003107672
Qwen3.6-35B-A3B225×225px · 4 boxes
s2-datacomp-2-qwen
1
2
3
4
1wristwatch0.90fully visible

A gold-toned wristwatch with a cream-colored dial, black numerals, and a decorative charm bracelet attached to its band.

timepiecejewelrywristwatchfashion watch
Partscasedialhour_handminute_handcrystalbandlugs
Associatedgold chain-link braceletattached_tocovers bandbeaded charm braceletattached_tocovers band
Text“BONNIE” — dial, below 12 o'clock marker
goldcreamblackmetalglassplasticdisplayedstandard wristwatch sizeblack Arabic numerals 1-12brand name 'BONNIE' at 12 o'clockgold chain-link braceletbeaded charm braceletappears newround casedecorative charms hanging from the dial
confusable withbraceletpendant
2bracelet0.70fully visible

A thick, gold-toned chain-link bracelet wrapped around the watch band.

jewelryaccessorybraceletchain-link bracelet
Partschain_linksclasp
goldmetalwrappedwideappears newthick chain links
confusable withnecklacewatch band
3bracelet0.60fully visible

A delicate bracelet made of beads and charms, attached to the watch band.

jewelryaccessorybraceletcharm bracelet
Partsbeadscharmsstring
goldwhitepinkgreenmetalglassplasticwrappeddelicateappears newvarious shaped beads and charms
confusable withnecklacependant
4display stand0.30partially visible

A light gray cylindrical display stand.

light grayplasticfoamhorizontalmediumclean
GPT-5.4225×225px · 4 boxes
s2-datacomp-2-gpt
1
2
3
4
1watch0.98fully visible

gold wristwatch wrapped around a white cylindrical display at center-left

accessorypersonal itemwatchwristwatchanalog watch
Partswatch_facebezelhour_handminute_handcrownstrap
Text“12” — dial top“10” — dial upper-left“8” — dial lower-left“6” — dial bottom“4” — dial lower-right“2” — dial upper-right
goldcreamwhitemetalglasswrapped around displaymediumArabic numerals on dialappears polished and intactdecorative vintage-style design
confusable withbraceletpocket watch
2bracelet0.88fully visible

thick gold chain bracelet hanging vertically on the right side of the display

jewelryaccessorybraceletchain braceletcurb-link bracelet
Partschain_linksclasp_area
goldmetalhanging verticallylarge relative to the watch faceappears polished and intactchunky link design
confusable withnecklacewatch band
3charm0.62mostly visible

small dangling charm cluster below the watch near the bottom center

jewelryaccessorycharmdangling charm
Partshanging_loopdecorative_dangles
goldwhitepinkmetalpearldanglingsmallappears intactclustered ornamental pieces
confusable withbeadpendant
4display stand0.46partially visible

white cylindrical display stand behind the jewelry

whitelight graystationary
S2-DATACOMP · 3001051114
Qwen3.6-35B-A3B300×300px · 7 boxes
s2-datacomp-3-qwen
1
2
3
4
5
6
7
1window0.95fully visible

A large, three-pane window with a dark frame, looking out onto a green garden.

building componentarchitectural elementwindow
Partsframeleft_panecenter_paneright_panesill
dark brownwhitewoodglassclosedlargecleanthree-pane design
confusable withglass doorskylight
2figurine0.70fully visible

A small, white figurine of a seated animal, possibly a dog or cat, on the window sill.

decorationobjectfigurineanimal figurine
Partsbodyheadlegs
whiteceramicporcelainseatedsmallclean
confusable withsmall statuetoy
3potted plant0.60fully visible

A small potted plant with white flowers on the window sill.

plantliving thingpotted plantflowering plant
Partsleavesstemflowerpot
greenwhiteplantceramicbloomingsmallhealthy
confusable withartificial plant
4sofa0.50partially visible

A red sofa with a patterned cushion, partially visible in the foreground.

furnitureobjectsofacouch
Partscushionbackrest
Associatedpatterned cushionattached_tocovers cushion
redfabricstationarylargegood
confusable witharmchair
5cushion0.40partially visible

A cushion with a light-colored, intricate pattern on the sofa.

beigebrownfabricrestingmediumintricate patterngood
6curtain0.30partially visible

A dark, patterned curtain hanging on the left side of the window.

dark brownblackfabrichanginglargefloral patterngood
7curtain0.30partially visible

A dark, patterned curtain hanging on the right side of the window.

dark brownblackfabrichanginglargefloral patterngood
GPT-5.4300×300px · 8 boxes
s2-datacomp-3-gpt
1
2
3
4
5
6
7
8
1window0.96mostly visible

large three-pane window at the center

architectural openingbuilding elementwindowpicture windowthree-pane window
Partsframeleft_panecenter_paneright_panesill
Associateddark patterned curtainsattached_tocovers framepotted white orchidmounted_oncovers silldecorative rabbit figurinemounted_oncovers sill
whitebrownbeigeglasswoodclosedlargegoodlets in daylightthree vertical glazed sections
confusable withsliding glass doorglass wall panel
2curtain×20.54partially visible

dark curtains on both sides of the window

window coveringhousehold furnishingcurtaindrapes
Partsfabric_panelfolds
dark brownblackgoldfabrichangingtallfloral or textured patterngoodonly portions are visible at the image edges
confusable withwall hanging
3garden0.33mostly visible

green foliage and lawn visible outside the window

greenlight greenoutdoors
4plant0.52fully visible

small white orchid in a pot on the left side of the sill

houseplantplantplantorchidmoth orchid
Partsleavesstemsflowerspot
whitegreenblackplant matterceramicpottedsmallhealthysingle decorative houseplant
confusable withlilyartificial flower arrangement
5figurine0.51fully visible

small decorative rabbit on the windowsill

decorationhousehold objectfigurineanimal figurinerabbit figurine
Partsheadearsbody
whitepinkceramicfabricresting on sillsmallgooddecorative animal shape
confusable withstuffed toyceramic ornament
6chair0.37partially visible

partial red upholstered chair at the lower right

redbrownstationary
7cushion0.28partially visible

patterned cushion on the chair at the far right

beigebrownresting on chair
8windowsill0.22mostly visible

windowsill beneath the window

brownfixed
S2-DATACOMP · 4003617536
Qwen3.6-35B-A3B500×500px · 2 boxes
s2-datacomp-4-qwen
1
2
1motor checker1.00fully visible

A handheld electronic device, specifically a motor checker, held by a hand.

electronic devicegadgetmotor checkermotor tester
Partstop_sectionbottom_sectiondigital_displaytest_buttonfunction_switchrange_switchpower_switch
Associatedhandheld_bycovers bottom_section
Text“INSULATION 300 V 1000 V” — top_section, left side“RESISTANCE INDUCTANCE” — top_section, right side“7.91” — digital_display“MOTOR CHECKER EMC - 38A” — top_section, below display“MCN” — top_section, right side logo“OSSURF” — bottom_section, near test button“RANGE” — bottom_section, right side“FUNCTION” — bottom_section, right side“INDUCTANCE” — bottom_section, right side“RESISTANCE” — bottom_section, right side“INSULATION” — bottom_section, right side“BATTERY” — bottom_section, right side
whiteblackplasticheld uprighthandheldMOTOR CHECKER EMC - 38AMCN logoINSULATION 300 V 1000 VRESISTANCE INDUCTANCEOSSURFRANGEFUNCTIONINDUCTANCERESISTANCEINSULATIONBATTERYgooddigital display shows '7.91'
confusable withmultimeterinsulation tester
2hand0.60partially visible

A human hand holding the motor checker.

body partlimbhand
Partsthumbfingerspalm
skin toneskingrippingaveragenormal
GPT-5.4500×500px · 3 boxes
s2-datacomp-4-gpt
1
2
3
1meter0.98fully visible

handheld electronic motor checker meter in the center

electronic devicetoolmeterhandheld test metermotor checker
Partsdisplayfront_panelbodytop_terminalsside_switchesbutton
Associatedhuman handheld_by
Text“7.91” — display“MOTOR CHECKER EMC - 38A” — upper front panel“MCM” — logo area on upper right“measure” — center front panel“RANGE” — right side of front panel“FUNCTION” — lower front panel“INSULATION” — top label area“RESISTANCE” — top label area“INDUCTANCE” — top label area
whiteblackredgrayplasticglassmetalbeing held uprightmedium handheld sizeprinted labelsmeasurement scalebrand logoappears intactrectangular bodydigital numeric readout
confusable withmultimeterinsulation tester
2hand0.72partially visible

left hand gripping the meter from the lower left

body parthuman bodyhandleft hand
Partsthumbfingerspalm
light pinktanskingrippingnormal human hand sizepartially cropped by framebare hand
confusable withgloved hand
3background0.08fully visible

plain background surrounding the subjects

light graywhitestatic
S2-DATACOMP · 5002025030
Qwen3.6-35B-A3B340×270px · 3 boxes
s2-datacomp-5-qwen
1
2
3
1plate×40.95fully visible

A stack of four ceramic plates with a pink interior and black silhouette designs.

dishwareceramicvesselplatedecorative plate
Partsriminteriorbase
beigepinkblackceramicglazestackedstandard dinner plate sizeblack silhouette patterns of animals and plants on a pink backgroundgood, with some minor wear on the rim of the top platea small metal loop or hook is attached to the inside of the top plate
confusable withbowlplatter
2wooden surface0.10partially visible

A light-colored wooden surface.

light brownbeigewoodflatwood grain
3wall0.10partially visible

A neutral, textured background wall.

greyoff-whiteconcreteplasterverticalvertical seam
GPT-5.4340×270px · 3 boxes
s2-datacomp-5-gpt
1
2
3
1plate0.95mostly visible

the top decorative ceramic plate in the stack

dishwaretablewareplateceramic platedecorative plate
Partsriminteriorbase
beigecreampinkblackceramicglazestacked horizontallymediumblack abstract decorative pattern insidesmall loop-like dark motif near rimappears intactshallow formglossy surface
confusable withbowlsaucer
2plate×30.72partially visible

the lower stacked ceramic plates beneath the top plate

dishwaretablewareplateceramic plate
Partsrim
beigecreamceramicglazestackedmediumappear intactonly edges are visible
confusable withbowlsaucer
3wall0.18partially visible

plain wall tiles in the background

grayoff-whitestatic