Questions tagged [clarifai]

Image & Video Recognition API

The Clarifai API offers image and video recognition as a service. Whether you have one image or billions, you are only steps away from using artificial intelligence to recognize your visual content.

The API is built around a simple idea. You send inputs (an image or video) to the service and it returns predictions.

The type of prediction is based on what model you run the input through. For example, if you run your input through the 'food' model, the predictions it returns will contain concepts that the 'food' model knows about. If you run your input through the 'color' model, it will return predictions about the dominant colors in your image.

inputs outputs

Before you get started, if you haven't created an account and received your free API key, please do so before proceeding with this guide. You can begin making API calls for free, a credit card is not required.

Please note that your account will be limited to 100 API calls until you verify your email address. After verification, you will receive the full amount of API calls under your plan.

All API access is over HTTPS, and accessed via the https://api.clarifai.com domain. The relative path prefix /v2/ indicates that we are currently using version 2 of the API.

In the below examples, we use single brackets {variable} to indicate that this is a variable you should replace with a real value.

141 questions
-1
votes
1 answer

Installing clarifai (grpc) failed, exit status 1

What version of gRPC and what language are you using? lastest What operating system (Linux, Windows,...) and version? Windows 10 Server What runtime / compiler are you using (e.g. python version or version of gcc) python What did you do? Tried to…
-1
votes
1 answer

Clarifai REST Api

I am programming an application in .NET Core and after some browsing of their repos I don't think Clarifai has a .NET SDK. Is there a REST API I can use?
Dylan Czenski
  • 1,305
  • 4
  • 29
  • 49
-1
votes
1 answer

Using Clarifai's models locally

I wanted to ask if it is possible to use Clarifai's system offline, meaning accessing the trained models on the device so it can work without access to the internet. Thanks
m0j1
  • 4,067
  • 8
  • 31
  • 54
-1
votes
1 answer

How to use Clarifai crop?

I can recognize image and check for prediction like nsfw,sfw,etc with the following sample code in objective-c. // Initialize the Clarifai app with your app's ID and Secret. ClarifaiApp *app = [[ClarifaiApp alloc] initWithAppID:@"" …
Bikram Thapa
  • 1,329
  • 1
  • 16
  • 29
-2
votes
3 answers

Im getting this error trying to use the clarifai api, how can i fix it?

im using the clarifai face recognition Api and getting an error on my console saying: "TypeError: axios.post is not a function". anyone knows how do I solve it? i dont use Axios in my code, but i think the API uses it. thanks I tried installing…
1 2 3
9
10