Get started with SCALE
This guide will help you discover Ikomia SCALE. You will learn how to deploy your first computer vision workflow to the cloud.
If you haven't already, create an Ikomia account or log in.
Deploy your first workflow
Step-by-step instructions
-
On your dashboard, open the
Getting_started
project we automatically created for you. -
Pick one of the pre-configured workflows to get started:
-
Smart Object Detection
Leverage an object detection model to identify and filter objects based on their category. -
Artistic Image Transformation
Apply artistic filters inspired by famous art styles to any image.
-
On the workflow page, configure your deployment and click on the Add deployment button.
-
Once your deployment is ready, you can test it via our online interface.
Integrate your deployment into a Node.js application
We also provide a REST API for integration with any language/platform.
Install our JavaScript client library:
npm install @ikomia/ikclient
To authorize your code to access your deployment, create an API token.
Now, you can call your deployment from your Node.js application:
import fs from "fs";
import {Client} from "@ikomia/ikclient";
// Initialize the client with your deployment URL and token
const client = new Client({
url: "https://your.deployment.url",
token: "PASTE_YOUR_TOKEN_HERE",
});
// Run the deployment with an input image
const results = await client.run({
image: "https://raw.githubusercontent.com/Ikomia-dev/notebooks/main/examples/img/img_work.jpg",
// parameters: {
// categories: "laptop",
// },
});
For more advanced usage of the Ikomia SCALE JavaScript client library, like integration with fullstack frameworks (Next.js, Nuxt, etc...), check out the client documentation.
What's next?
Ikomia provides a full suite of tools to streamline prototyping, development and deployment of your next computer vision project.
To dive deeper, you can:
- Find algorithms relevant to your use case on Ikomia HUB.
- Learn how to create your own workflows using Ikomia API or Ikomia STUDIO, our visual workflow editor.
- Find inspiration in our notebooks collection.
- Join our community on Discord to get support and discuss your ideas.