Question 18:
Using Computer Vision, you can analyze the contents of an image. The analysis of the image returns the cropping coordinates of the area of interest.A high-quality thumbnail can be generated using the area of interest and adjusting the aspect ratio that is different from the original image`s aspect ratio. The requirement is to generate a thumbnail image with the user-specified width and height. You also need to adjust the aspect ratio. Review the statement given below and state if it is correct or incorrect: <pre>curl -v -X POST "https://<region>.api.cognitive.microsoft.com/vision/v3.2/generateThumbnail?width={number}&height={number}&smartCropping=false&model-version=latest" -H "Content-Type: application/json" -H "Ocp-Apim-Subscription-Key: {subscription key}" </pre>
Answer options:
A.Yes B.No