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
It’s GroundedSAM free or not? If not How to get Api key to using this service?
import cv2 import supervision as sv from autodistill_grounded_sam import GroundedSAM from autodistill.detection import CaptionOntology
class GroundedSAMOperator:
def init(self, caption): self.caption = caption self.base_model = GroundedSAM(ontology=CaptionOntology(self.caption)) self.classes = base_model.ontology.classes()
def call(self, image): detections = self.base_model.predict(image) labels = [f"{self.classes[class_id]} {confidence:0.2f}" for _, _, confidence, class_id, _ in detections] print(labels) return detections
image = cv2.imread("/content/aluminum.jpg") caption = { "aluminum workpiece": "aluminum" } grounded_sam_operator = GroundedSAMOperator(caption) detections = grounded_sam_operator(image)
mask_annotator = sv.MaskAnnotator()
annotated_frame = mask_annotator.annotate( scene=image.copy(), detections=detections)
sv.plot_image(annotated_frame, size=(8, 8))
The text was updated successfully, but these errors were encountered:
Grounded SAM is free to use on your hardware.
Sorry, something went wrong.
No branches or pull requests
It’s GroundedSAM free or not? If not How to get Api key to using this service?
import cv2
import supervision as sv
from autodistill_grounded_sam import GroundedSAM
from autodistill.detection import CaptionOntology
class GroundedSAMOperator:
def init(self, caption):
self.caption = caption
self.base_model = GroundedSAM(ontology=CaptionOntology(self.caption))
self.classes = base_model.ontology.classes()
def call(self, image):
detections = self.base_model.predict(image)
labels = [f"{self.classes[class_id]} {confidence:0.2f}" for _, _, confidence, class_id, _ in detections]
print(labels)
return detections
image = cv2.imread("/content/aluminum.jpg")
caption = { "aluminum workpiece": "aluminum" }
grounded_sam_operator = GroundedSAMOperator(caption)
detections = grounded_sam_operator(image)
mask_annotator = sv.MaskAnnotator()
annotated_frame = mask_annotator.annotate(
scene=image.copy(),
detections=detections)
sv.plot_image(annotated_frame, size=(8, 8))
The text was updated successfully, but these errors were encountered: