Skip to content

Commit 838ee16

Browse files
ovalle15ovalle15
authored andcommitted
Replace data rows with global keys
1 parent 30f5823 commit 838ee16

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/annotation_import/image.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@
252252
"bbox_annotation = lb_types.ObjectAnnotation(\n",
253253
" name = \"bounding_box\", # must match your ontology feature's name\n",
254254
" value = lb_types.Rectangle(\n",
255-
" start=lb_types.Point(x=977, y=1690), # Top left\n",
256-
" end=lb_types.Point(x=330, y=225), # Bottom right\n",
255+
" start=lb_types.Point(x=20, y=15), # Top left\n",
256+
" end=lb_types.Point(x=25, y=30), # Bottom right\n",
257257
" )\n",
258258
")\n",
259259
"\n",
@@ -280,8 +280,8 @@
280280
"bbox_with_radio_subclass_annotation = lb_types.ObjectAnnotation(\n",
281281
" name=\"bbox_with_radio_subclass\",\n",
282282
" value=lb_types.Rectangle(\n",
283-
" start=lb_types.Point(x=933, y=541), # Top left\n",
284-
" end=lb_types.Point(x=191, y=330), # Bottom right\n",
283+
" start=lb_types.Point(x=10, y=20), # Top left\n",
284+
" end=lb_types.Point(x=25, y=30), # Bottom right\n",
285285
" ),\n",
286286
" classifications=[\n",
287287
" \tlb_types.ClassificationAnnotation(\n",

0 commit comments

Comments
 (0)