create_project
imerit_ango.sdk.SDK.
create_project(name, description, project_type, pct_config)
Create a new project in your organization.
Parameters
name: string
The display name of the project to be created. This field is required and cannot be left empty.
Example:
'Project One'
description: string, optional, default ""
A brief description of the project.
Example:
'Vehicle Classification Project'
project_type: ProjectType, optional, default None
Specifies the type of the project.
Options:
ProjectType.Ango
ProjectType.PCT
from imerit_ango.models.enums import ProjectTypepct_config: PctConfig, optional, default None
Configuration object for PCT projects.
PctConfig
allow_overlapping: bool, default False
Allows multiple annotations to overlap within the same frame.
tracking_multiple_sensors: bool, default False
Enables tracking across multiple sensors.
segmentation_mode: bool, default False
Activates segmentation mode.
from imerit_ango.models.pct_config import PctConfig
Returns:
output: dict
A dictionary containing the result of the operation.
Including a
statusfield indicating whether the request was successful and adatafield containing the response payload with updated resources produced by the operation.
How to verify in Ango Hub?
After successfully executing the create_project function, you can validate the changes directly in Ango Hub.
Navigate to: Projects
Confirm that the created project appears in the project list.
Changes made via the SDK are reflected in Ango Hub in near real-time. If updates are not immediately visible, please refresh the page.
Example
Create a standard Ango project:
Create a PCT project:
See also
Last updated