Pedro
Pedro

Reputation: 1

It's possible to use Computer Vision API with VS2010?

I am newbie to the development of Cognitive service and I want to know if it is possible to use Computer Vision API with visual studio 2010 (NET 4.0)?

Thanks

Upvotes: 0

Views: 60

Answers (2)

Ronak
Ronak

Reputation: 736

You can use samples from here: https://learn.microsoft.com/en-us/azure/cognitive-services/computer-vision/quickstarts/csharp in VS with your .NET version.

Upvotes: 0

cthrash
cthrash

Reputation: 2973

These are REST APIs, so absolutely you can use older tools. You cannot, however, use the NuGet-hosted client SDK as these require new version of the framework. So you would need to find another compatible library, or handcraft your own web requests.

You might also consider getting a newer version of the IDE, some of which are even free of charge. See Visual Studio or Visual Studio Code.

Upvotes: 1

Related Questions