Spaces:
Sleeping
Sleeping
File size: 257 Bytes
ffdfdcd |
1 2 3 4 5 6 |
from transformers import pipeline
detector = pipeline(model="facebook/detr-resnet-50", revision="no_timm")
result = detector("http://images.cocodataset.org/val2017/000000039769.jpg")
print(result)
# x, y are expressed relative to the top left hand corner. |