fffiloni commited on
Commit
6d8faa9
·
verified ·
1 Parent(s): e65f811

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -210,7 +210,7 @@ def sam_process(input_first_frame_image, checkpoint, tracking_points, trackings_
210
  ann_obj_id = 1 # give a unique id to each object we interact with (it can be any integers)
211
 
212
  # Let's add a positive click at (x, y) = (210, 350) to get started
213
- points = np.array(tracking_points.value), dtype=np.float32)
214
  # for labels, `1` means positive click and `0` means negative click
215
  labels = np.array(trackings_input_label.value, np.int32)
216
  _, out_obj_ids, out_mask_logits = predictor.add_new_points(
 
210
  ann_obj_id = 1 # give a unique id to each object we interact with (it can be any integers)
211
 
212
  # Let's add a positive click at (x, y) = (210, 350) to get started
213
+ points = np.array(tracking_points.value, dtype=np.float32)
214
  # for labels, `1` means positive click and `0` means negative click
215
  labels = np.array(trackings_input_label.value, np.int32)
216
  _, out_obj_ids, out_mask_logits = predictor.add_new_points(