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.
Create a project
To create a project:
- In the Projects tab, click New Project.
- Choose the project type: Image, Image (Legacy), Video or Audio, Text, LLMs and GenAI, Tiled Imagery (Beta), Point Cloud (Beta), or Other (Beta).
- 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. - Click Create.
Project limit
Each team can only have up to 2000 projects created at a time.
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.
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.
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.
LLMs and GenAI
With LLMs and GenAI Projects, you can train your LLM model using a form that you can customize to suit your needs. Using our UI builder, you can select components to build your form out of and design the layout. Afterward, you can edit their functionality in the Code Editor and test it out in a preview. Once it’s done, you can generate them into a number of items that can then be used to train your model.
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.
Updated 14 days ago