mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-05 02:35:22 +03:00
Black format
This commit is contained in:
parent
1a2f8c568e
commit
aa6d99a67e
@ -17,10 +17,13 @@ DETECTOR_KEY = "deepstack"
|
|||||||
|
|
||||||
class DeepstackDetectorConfig(BaseDetectorConfig):
|
class DeepstackDetectorConfig(BaseDetectorConfig):
|
||||||
type: Literal[DETECTOR_KEY]
|
type: Literal[DETECTOR_KEY]
|
||||||
api_url: str = Field(default="http://localhost:80/v1/vision/detection", title="DeepStack API URL")
|
api_url: str = Field(
|
||||||
|
default="http://localhost:80/v1/vision/detection", title="DeepStack API URL"
|
||||||
|
)
|
||||||
api_timeout: float = Field(default=0.1, title="DeepStack API timeout (in seconds)")
|
api_timeout: float = Field(default=0.1, title="DeepStack API timeout (in seconds)")
|
||||||
api_key: str = Field(default="", title="DeepStack API key (if required)")
|
api_key: str = Field(default="", title="DeepStack API key (if required)")
|
||||||
|
|
||||||
|
|
||||||
class DeepStack(DetectionApi):
|
class DeepStack(DetectionApi):
|
||||||
type_key = DETECTOR_KEY
|
type_key = DETECTOR_KEY
|
||||||
|
|
||||||
@ -34,8 +37,8 @@ class DeepStack(DetectionApi):
|
|||||||
self.w = detector_config.model.width
|
self.w = detector_config.model.width
|
||||||
|
|
||||||
def get_label_index(self, label_value):
|
def get_label_index(self, label_value):
|
||||||
if label_value.lower() == 'truck':
|
if label_value.lower() == "truck":
|
||||||
label_value = 'car'
|
label_value = "car"
|
||||||
for index, value in self.labels.items():
|
for index, value in self.labels.items():
|
||||||
if value == label_value.lower():
|
if value == label_value.lower():
|
||||||
return index
|
return index
|
||||||
@ -48,7 +51,9 @@ class DeepStack(DetectionApi):
|
|||||||
image.save(output, format="JPEG")
|
image.save(output, format="JPEG")
|
||||||
image_bytes = output.getvalue()
|
image_bytes = output.getvalue()
|
||||||
data = {"api_key": self.api_key}
|
data = {"api_key": self.api_key}
|
||||||
response = requests.post(self.api_url, files={"image": image_bytes}, timeout=self.api_timeout)
|
response = requests.post(
|
||||||
|
self.api_url, files={"image": image_bytes}, timeout=self.api_timeout
|
||||||
|
)
|
||||||
response_json = response.json()
|
response_json = response.json()
|
||||||
detections = np.zeros((20, 6), np.float32)
|
detections = np.zeros((20, 6), np.float32)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user