Image Retrieval - Vectorize Image
從影像傳回向量。
POST /retrieval:vectorizeImage?api-version=2023-04-01-preview
POST /retrieval:vectorizeImage?model-version={model-version}&api-version=2023-04-01-preview
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
api-version
|
query | True |
string |
要求的 API 版本。 |
model-version
|
query |
string |
模型版本。 |
要求本文
名稱 | 必要 | 類型 | Description |
---|---|---|---|
url | True |
string |
影像的可公開連線 URL。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
成功 |
|
Other Status Codes |
[錯誤] 標題 x-ms-error-code: string |
範例
ImageRetrieval_VectorizeImage
範例要求
POST /retrieval:vectorizeImage?model-version=2023-04-01-preview&api-version=2023-04-01-preview
{
"url": "https://example.com/image.jpg"
}
範例回覆
{
"vector": [
0,
1.1,
2.2
],
"modelVersion": "2023-04-01-preview"
}
定義
名稱 | Description |
---|---|
Error |
發生錯誤時傳回的回應。 |
Error |
錯誤資訊。 |
Error |
詳細的錯誤。 |
Image |
具有 URL 的 JSON 檔,指向要分析的影像。 |
Single |
影像向量化的結果。 |
ErrorResponse
發生錯誤時傳回的回應。
名稱 | 類型 | Description |
---|---|---|
error |
錯誤資訊。 |
ErrorResponseDetails
錯誤資訊。
名稱 | 類型 | Description |
---|---|---|
code |
string |
錯誤碼。 |
details |
詳細錯誤清單。 |
|
innererror |
詳細的錯誤。 |
|
message |
string |
錯誤訊息。 |
target |
string |
錯誤的目標。 |
ErrorResponseInnerError
詳細的錯誤。
名稱 | 類型 | Description |
---|---|---|
code |
string |
錯誤碼。 |
innererror |
詳細的錯誤。 |
|
message |
string |
錯誤訊息。 |
ImageUrl
具有 URL 的 JSON 檔,指向要分析的影像。
名稱 | 類型 | Description |
---|---|---|
url |
string |
影像的可公開連線 URL。 |
SingleVectorResultApiModel
影像向量化的結果。
名稱 | 類型 | Description |
---|---|---|
modelVersion |
string |
模型版本。 |
vector |
number[] |
影像的向量。 |