
Explanation:
To configure the request to the Azure AI Vision API to identify whether an image is clipart or a line drawing, you need to set the visualFeatures parameter appropriately. The Azure AI Vision API includes a feature specifically for this purpose.
Based on the provided image, here's how to complete the request:
* HTTP Method: GET
* Visual Features: imageType
The imageType feature is used to analyze the type of an image, including whether it is clipart, a line drawing, etc.
So the complete request should look like this:
GET
"https://<your-cognitive-services-endpoint>/vision/v3.2/analyze?visualFeatures=imageType&details={string}&l Here are the selections:
* HTTP Method: GET
* Visual Features: imageType
These configurations ensure that the request to the Azure AI Vision API will analyze the image to determine if it is clipart or a line drawing.