Image Moderation - Evaluate Url Input
きわどい内容や成人向けコンテンツを含む画像の確率を返します。
POST {Endpoint}/contentmoderator/moderate/v1.0/ProcessImage/Evaluate
POST {Endpoint}/contentmoderator/moderate/v1.0/ProcessImage/Evaluate?overload=url&CacheImage={CacheImage}
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
Endpoint
|
path | True |
string |
サポートされている Azure Cognitive Services エンドポイント (プロトコルとホスト名など https://westus.api.cognitive.microsoft.com)。 |
Cache
|
query |
boolean |
今後の使用のために送信されたイメージを保持するかどうか。 省略した場合、既定値は false です。 |
要求ヘッダー
名前 | 必須 | 型 | 説明 |
---|---|---|---|
Ocp-Apim-Subscription-Key | True |
string |
|
Content-Type | True |
string |
コンテンツ タイプ。 |
要求本文
名前 | 型 | 説明 |
---|---|---|
DataRepresentation |
string |
|
Value |
string |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK | ||
Other Status Codes |
エラー応答。 |
セキュリティ
Ocp-Apim-Subscription-Key
型:
apiKey
/:
header
例
Evaluate Image request
要求のサンプル
POST {Endpoint}/contentmoderator/moderate/v1.0/ProcessImage/Evaluate?overload=url
{
"DataRepresentation": "URL",
"Value": "https://moderatorsampleimages.blob.core.windows.net/samples/sample.jpg"
}
応答のサンプル
{
"AdultClassificationScore": 0.021854378283023834,
"IsImageAdultClassified": false,
"RacyClassificationScore": 0.045791395008563995,
"IsImageRacyClassified": false,
"AdvancedInfo": [
{
"Key": "ImageDownloadTimeInMs",
"Value": "2328"
}
],
"Result": false,
"Status": {
"Code": 3000,
"Description": "OK",
"Exception": ""
},
"TrackingId": "SEA_ad975eeae1f24f81bebb40be0c3ba4fd_ContentModerator.Preview_c6ca58fc-dc30-4961-9526-e8bdfb3b3bf5",
"CacheID": "c660dfa6-eba9-4950-aa58-a6967de57ea8_636422189473647994"
}
定義
名前 | 説明 |
---|---|
APIError |
API から返されるエラー情報。 |
Error |
エラー本文。 |
Evaluate |
評価応答オブジェクト。 |
Key |
キー/値ペア オブジェクトのプロパティ。 |
Status |
状態プロパティ。 |
APIError
API から返されるエラー情報。
名前 | 型 | 説明 |
---|---|---|
Error |
エラー本文。 |
Error
エラー本文。
名前 | 型 | 説明 |
---|---|---|
Code |
string |
|
Message |
string |
Evaluate
評価応答オブジェクト。
名前 | 型 | 説明 |
---|---|---|
AdultClassificationScore |
number |
成人分類スコア。 |
AdvancedInfo |
詳細な情報。 |
|
CacheID |
string |
キャッシュ ID。 |
IsImageAdultClassified |
boolean |
画像が成人として分類されているかどうかを示します。 |
IsImageRacyClassified |
boolean |
画像がわいせつとして分類されているかどうかを示します。 |
RacyClassificationScore |
number |
わいせつな分類スコア。 |
Result |
boolean |
評価結果。 |
Status |
評価の状態。 |
|
TrackingId |
string |
追跡 ID。 |
KeyValuePair
キー/値ペア オブジェクトのプロパティ。
名前 | 型 | 説明 |
---|---|---|
Key |
string |
Key パラメーター。 |
Value |
string |
Value パラメーター。 |
Status
状態プロパティ。
名前 | 型 | 説明 |
---|---|---|
Code |
integer |
状態コード。 |
Description |
string |
状態の説明。 |
Exception |
string |
例外の状態。 |