アノテーションのダウンロード
3 分
アノテーションのダウンロード シーンに対してアノテーションが発注されると、kognicプラットフォーム内で作成、レビュー、および品質管理が行われます。 アノテーションが納品準備完了となりエクスポートされると、 https //docs kognic com/api guide/openlabel format 形式でダウンロードできます。 シーンのアノテーション from kognic io client import kognicioclient client = kognicioclient() for annotation in client annotation get annotations for scene(scene uuid=scene uuid) openlabel dict = annotation content \# このメソッドは、シーンのuuidを使用して、openlabel jsonを含む annotation オブジェクトの形式で、納品済みのすべてのアノテーションを返します。 プロジェクトまたはバッチのアノテーション from kognic io client import kognicioclient client = kognicioclient() \# get generator with annotations annotations = client annotation get project annotations(project="project identifier", batch="batch identifier", annotation type="annotation type") for annotation in annotations openlabel dict = annotation content \# この例では、プロジェクト全体またはバッチのアノテーションを取得します。指定されたプロジェクト、バッチ、およびannotation typeに対して、納品済みのすべてのアノテーションのannotationオブジェクトを取得します。
