VirtualTryOnModelResultProto

Represents the output of a Virtual Try-On prediction.

Fields
images[] object (Image)

A list of generated images. The number of images returned is equal to the sampleCount parameter provided in the request.

JSON representation
{
  "images": [
    {
      object (Image)
    }
  ]
}

Image

Contains a generated image or information about why the image was filtered out.

Fields
mimeType string

The MIME type of the generated image.

Supported values are: * image/png * image/jpeg

data Union type
The generated image data or filtering reason. data can be only one of the following:
bytesBase64Encoded string

The generated image encoded as a base64 encoded bytes string.

gcsUri string

The Google Cloud Storage URI where the generated image is stored.

raiFilteredReason string

The reason why the generated image was filtered out by Responsible AI checks. If this field is present, no image is returned.

JSON representation
{
  "mimeType": string,

  // data
  "bytesBase64Encoded": string,
  "gcsUri": string,
  "raiFilteredReason": string
  // Union type
}