mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-17 16:44:29 +03:00
Reimplement downloading of face detection model (#15472)
This commit is contained in:
parent
5db16c3272
commit
2e51ae2eb7
@ -123,6 +123,17 @@ class Embeddings:
|
|||||||
device="GPU" if config.semantic_search.model_size == "large" else "CPU",
|
device="GPU" if config.semantic_search.model_size == "large" else "CPU",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if self.config.face_recognition.enabled:
|
||||||
|
self.face_embedding = GenericONNXEmbedding(
|
||||||
|
model_name="facedet",
|
||||||
|
model_file="facedet.onnx",
|
||||||
|
download_urls={
|
||||||
|
"facedet.onnx": "https://github.com/opencv/opencv_zoo/raw/refs/heads/main/models/face_detection_yunet/face_detection_yunet_2023mar_int8.onnx",
|
||||||
|
},
|
||||||
|
model_type=ModelTypeEnum.face,
|
||||||
|
requestor=self.requestor,
|
||||||
|
)
|
||||||
|
|
||||||
self.lpr_detection_model = None
|
self.lpr_detection_model = None
|
||||||
self.lpr_classification_model = None
|
self.lpr_classification_model = None
|
||||||
self.lpr_recognition_model = None
|
self.lpr_recognition_model = None
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user