We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs at https://python-sdk-docs.kili-technology.com/latest/sdk/tutorials/geojson/#geojson-to-kili-labels are missing the from kili.utils.labels.geojson import geojson_polygon_feature_to_kili_bbox_annotation import and example, i.e.
from kili.utils.labels.geojson import geojson_polygon_feature_to_kili_bbox_annotation
json_response = {} for feature in geojson_label["features"]: geometry_type = feature["geometry"]["type"] .... elif geometry_type == "Polygon": job_name = "OBJECT_DETECTION_JOB" category = "B_BOX_A" converter = geojson_polygon_feature_to_kili_bbox_annotation else: raise ValueError(f"Geometry type {geometry_type} not supported")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Docs at https://python-sdk-docs.kili-technology.com/latest/sdk/tutorials/geojson/#geojson-to-kili-labels are missing the
from kili.utils.labels.geojson import geojson_polygon_feature_to_kili_bbox_annotation
import and example, i.e.The text was updated successfully, but these errors were encountered: