Skip to content

Commit fac1581

Browse files
committed
from_inference now supports roboflow results without json()
1 parent 1e2bdee commit fac1581

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

supervision/detection/core.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from __future__ import annotations
22

3-
from contextlib import suppress
43
from dataclasses import dataclass, field
54
from typing import Any, Dict, Iterator, List, Optional, Tuple, Union
65

@@ -606,8 +605,10 @@ def from_inference(cls, roboflow_result: Union[dict, Any]) -> Detections:
606605
detections = sv.Detections.from_inference(result)
607606
```
608607
"""
609-
with suppress(AttributeError):
608+
if hasattr(roboflow_result, "dict"):
610609
roboflow_result = roboflow_result.dict(exclude_none=True, by_alias=True)
610+
elif hasattr(roboflow_result, "json"):
611+
roboflow_result = roboflow_result.json()
611612
xyxy, confidence, class_id, masks, trackers, data = process_roboflow_result(
612613
roboflow_result=roboflow_result
613614
)

supervision/keypoint/core.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from __future__ import annotations
22

3-
from contextlib import suppress
43
from dataclasses import dataclass, field
54
from typing import Any, Dict, Iterable, Iterator, List, Optional, Tuple, Union
65

@@ -204,9 +203,10 @@ def from_inference(cls, inference_result: Union[dict, Any]) -> KeyPoints:
204203
"You can retrieve it like so: inference_result = model.infer(image)[0]"
205204
)
206205

207-
with suppress(AttributeError):
206+
if hasattr(inference_result, "dict"):
208207
inference_result = inference_result.dict(exclude_none=True, by_alias=True)
209-
208+
elif hasattr(inference_result, "json"):
209+
inference_result = inference_result.json()
210210
if not inference_result.get("predictions"):
211211
return cls.empty()
212212

0 commit comments

Comments
 (0)