Skip to content

Commit

Permalink
fix some parameter passing errors in EfficientSAM (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZJLauu authored Mar 16, 2024
1 parent 16614c5 commit 3dd1a30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion EfficientSAM/grounded_efficient_sam.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
image=image,
classes=CLASSES,
box_threshold=BOX_THRESHOLD,
text_threshold=BOX_THRESHOLD
text_threshold=TEXT_THRESHOLD
)

# annotate image with detections
Expand Down
2 changes: 1 addition & 1 deletion EfficientSAM/grounded_light_hqsam.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
image=image,
classes=CLASSES,
box_threshold=BOX_THRESHOLD,
text_threshold=BOX_THRESHOLD
text_threshold=TEXT_THRESHOLD
)

# annotate image with detections
Expand Down
2 changes: 1 addition & 1 deletion EfficientSAM/grounded_repvit_sam.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
image=image,
classes=CLASSES,
box_threshold=BOX_THRESHOLD,
text_threshold=BOX_THRESHOLD
text_threshold=TEXT_THRESHOLD
)

# annotate image with detections
Expand Down

0 comments on commit 3dd1a30

Please sign in to comment.