Create a project

A team member can have one of the following roles: Team Owner, Team Admin, or Contributor. Team Owners and Team Admins have access to all their team’s projects. When you want to add a contributor to your project, you should assign them to one of the following roles: Annotator, QA, and Project Admin. Learn more about project permissions.

1176

Create a project

To create a project:

  1. In the Projects tab, click New Project.
  2. Choose the project type: Image, Image (Legacy), Video or Audio, Text, Tiled Imagery (Beta), Point Cloud (Beta), or Other (Beta).
  3. Type your project’s name.
    There's an additional step for Video or Audio Projects only. You can choose to enable Frame mode to move through the video(s) or video(s) frame by frame. When you enable Frame mode, you need to enter an FPS.
  4. Click Create.

📘

Message

When you create the project successfully: You've successfully created the [project name] project.

❗️

Warnings and limitations for Video Projects

  • Make sure that the value of the FPS matches the FPS of the video(s) you want to upload.
  • If your video has a dynamic frame rate or is corrupted, then your annotations won’t be accurate.
  • Note that you won’t be able to change the mode once you’ve created the project.

SDK functions

To create a project:

sa.create_project(
    project_name = "Project Name",
    project_description = "Project Description",
    project_type = "Vector")

To create a Video or Audio Project and set the frame rate:

sa.create_project(
    project_name = "Project Name",
    project_description = "Project Description",
    project_type = "Video",
    settings = [{‘attribute”: “FrameRate”, “value”: 24}]
)

Project types

Image Projects

Choose Image if you want to complete object detection projects. The tools in Image Projects include Points, Polyline, Polygon, Bounding Box, Ellipse, Cuboid, and many more.

Image (Legacy) Projects

Choose Image (Legacy) if you want to complete semantic and panoptic segmentation projects using edge detection and image segmentation algorithms. The tools in Image (Legacy) Projects include Smart segmentation, Polygon, Brush, Box, and Ellipse.

Video or Audio Projects

With Video or Audio Projects, you can annotate videos with Bounding Boxes, track objects over the timeline, detect events, add tags, and more.

Text Projects

With Text Projects, you can annotate texts for named-entity recognition (NER), use simple and nested tags for text classification, and more.

Point Cloud (Beta)

You’ve read that right! SuperAnnotate now has a Point Cloud Editor (LiDar)! You can get a detailed view of your 3D point data and create accurate annotations for even the most challenging use cases.

Tiled Imagery (Beta)

With the Tiled Imagery Editor, you can upload and annotate multilayered images. You can also still do that in the Image Editor. A multilayered image is an image that consists of multiple layers. Think of it as several images combined into one image. You might need to work with multilayered images when you need several references of the same image to achieve higher annotation accuracy. This is applicable for annotating aerial and satellite imagery. For instance, you can upload an image consisting of 3 layers: SAR (synthetic aperture radar imagery), IR (infrared satellite imagery), and RGB.

Other (Beta)

With this editor, you can classify PDFs, HTML files, and websites.

🚧

Only Image Projects and Image (Legacy) Projects have the Workflow functionality.