Skip to main content

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

  1. On your dashboard, open the Getting_started project we automatically created for you.

  2. 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.

  1. On the workflow page, configure your deployment and click on the Add deployment button.

  2. Once your deployment is ready, you can test it via our online interface.


Integrate your deployment into a Node.js application

Note

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.

Ikomia toolset spans the entire development process

To dive deeper, you can:

  1. Find algorithms relevant to your use case on Ikomia HUB.
  2. Learn how to create your own workflows using Ikomia API or Ikomia STUDIO, our visual workflow editor.
  3. Find inspiration in our notebooks collection.
  4. Join our community on Discord to get support and discuss your ideas.