你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ImageAnalysisResult Class

Represents the outcome of an Image Analysis operation.

All required parameters must be populated in order to send to server.

Inheritance
azure.ai.vision.imageanalysis._model_base.Model
ImageAnalysisResult

Constructor

ImageAnalysisResult(*args: Any, **kwargs: Any)

Variables

Name Description
caption

The generated phrase that describes the content of the analyzed image.

dense_captions

The up to 10 generated phrases, the first describing the content of the whole image, and the others describing the content of different regions of the image.

metadata

Metadata associated with the analyzed image. Required.

model_version
str

The cloud AI model used for the analysis. Required.

objects

A list of detected physical objects in the analyzed image, and their location.

people

A list of detected people in the analyzed image, and their location.

read

The extracted printed and hand-written text in the analyze image. Also knows as OCR.

smart_crops

A list of crop regions at the desired as aspect ratios (if provided) that can be used as image thumbnails. These regions preserve as much content as possible from the analyzed image, with priority given to detected faces.

tags

A list of content tags in the analyzed image.

Methods

as_dict

Return a dict that can be JSONify using json.dump.

clear
copy
get
items
keys
pop
popitem
setdefault
update
values

as_dict

Return a dict that can be JSONify using json.dump.

as_dict(*, exclude_readonly: bool = False) -> Dict[str, Any]

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

Returns

Type Description

A dict JSON compatible object

clear

clear() -> None

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

copy

copy() -> Model

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

get

get(key: str, default: Any = None) -> Any

Parameters

Name Description
key
Required
default
Default value: None

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

items

items() -> ItemsView[str, Any]

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

keys

keys() -> KeysView[str]

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

pop

pop(key: str, default: ~typing.Any = <object object>) -> Any

Parameters

Name Description
key
Required
default

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

popitem

popitem() -> Tuple[str, Any]

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

setdefault

setdefault(key: str, default: ~typing.Any = <object object>) -> Any

Parameters

Name Description
key
Required
default

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

update

update(*args: Any, **kwargs: Any) -> None

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

values

values() -> ValuesView[Any]

Keyword-Only Parameters

Name Description
exclude_readonly

Whether to remove the readonly properties.

Attributes

caption

The generated phrase that describes the content of the analyzed image.

caption: _models.CaptionResult | None

dense_captions

The up to 10 generated phrases, the first describing the content of the whole image, and the others describing the content of different regions of the image.

dense_captions: _models.DenseCaptionsResult | None

metadata

Metadata associated with the analyzed image. Required.

metadata: _models.ImageMetadata

model_version

The cloud AI model used for the analysis. Required.

model_version: str

objects

A list of detected physical objects in the analyzed image, and their location.

objects: _models.ObjectsResult | None

people

A list of detected people in the analyzed image, and their location.

people: _models.PeopleResult | None

read

The extracted printed and hand-written text in the analyze image. Also knows as OCR.

read: _models.ReadResult | None

smart_crops

A list of crop regions at the desired as aspect ratios (if provided) that can be used as image thumbnails. These regions preserve as much content as possible from the analyzed image, with priority given to detected faces.

smart_crops: _models.SmartCropsResult | None

tags

A list of content tags in the analyzed image.

tags: _models.TagsResult | None