create_project

imerit_ango.sdk.SDK.

create_project(name, description, project_type, pct_config)

Create a new project with the specified name and description.

Parameters

  • name: string

    • The 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

  • pct_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.

Returns:

  • output: dict

    • A dictionary containing the result of the operation.

Example

Create a standard Ango project:

Returns

Create a PCT project:

Last updated