An Azure artificial intelligence service and end-to-end platform for applying computer vision to specific domains.
Hello @justin vermeulen
Thank you for reaching out to Microsoft Q&A.
I understand that you have created an Azure AI Vision (Computer Vision/Image Analysis) resource and are expecting to see Image Tagging and Object Detection options directly within Vision Studio. This can sometimes be confusing because Azure provides both prebuilt vision capabilities and custom model training capabilities through different services.
Understanding the Available Options
Azure AI Vision (Image Analysis) provides prebuilt capabilities such as:
- Image tagging
- Object detection
- Caption generation
- OCR (text extraction)
- Dense captions and visual feature extraction
These capabilities do not require you to manually tag images or train a model. Instead, you typically analyze images using the Azure AI Vision/Image Analysis APIs or the available Vision Studio experiences.
If Your Goal Is Prebuilt Object Detection
You can use Azure AI Vision's object detection capabilities to identify common objects within images using the Image Analysis service. A few important considerations:
- Supported image formats, file sizes, and dimension limits apply.
- Detection accuracy may vary for very small, partially visible, or densely packed objects.
- Some features or models may not be available in all regions.
- If a particular model is not supported, the service may return a "NotSupportedModel" error.
If Your Goal Is to Train Your Own Model
If you are looking for a workflow where you:
- Upload images
- Draw bounding boxes around objects
- Create custom tags/labels
- Train a custom object detection model
then you are likely looking for Custom Vision rather than the standard Azure AI Vision/Image Analysis service.
Custom Vision provides the classic:
Upload Images → Tag Objects → Train Model → Publish Model
workflow for custom image classification and object detection scenarios.
Why You May Not See Tagging or Training Options
In many cases, users create a Computer Vision/Azure AI Vision resource and expect to find an interface for manually tagging images and training models. However, the tagging and training experience is associated with Custom Vision, while Azure AI Vision focuses primarily on prebuilt image analysis capabilities.
Quick Check
Could you confirm which scenario matches your requirement?
A. Detect common objects using Microsoft's prebuilt models (no training required)
→ Use Azure AI Vision (Image Analysis) object detection.
B. Train your own object detection model by tagging objects in your images
→ Use Custom Vision (upload, tag, train, and publish workflow).
Please refer this
Computer Vision - Object Detection: https://docs.microsoft.com/azure/ai-services/computer-vision/concept-object-detection
What is Image Analysis?: https://docs.microsoft.com/azure/cognitive-services/computer-vision/overview-image-analysis
Call the Image Analysis API: https://docs.microsoft.com/azure/cognitive-services/computer-vision/vision-api-how-to-topics/howtocallvisionapi
Custom Vision overview (“what is Custom Vision”): https://learn.microsoft.com/azure/ai-services/custom-vision-service/overview
Custom Vision quickstart (Build an object detector): https://learn.microsoft.com/azure/ai-services/custom-vision-service/get-started-build-detector
Custom Vision example tagging steps (object detector training): https://learn.microsoft.com/windows/mixed-reality/develop/unity/tutorials/mr-azure-310?wt.mc_id=knowledgesearch_inproduct_azure-cxp-community-insider#chapter-2---training-your-custom-vision-project
I Hope this helps. Do let me know if you have any further queries.
Thank you!