mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-06 05:27:44 +03:00
Clarify docs
This commit is contained in:
parent
2f44447a5f
commit
483584465c
@ -40,7 +40,7 @@ Fine-tune face recognition with these optional parameters:
|
|||||||
|
|
||||||
- `detection_threshold`: Face detection confidence score required before recognition runs:
|
- `detection_threshold`: Face detection confidence score required before recognition runs:
|
||||||
- Default: `0.7`
|
- Default: `0.7`
|
||||||
- Note: If you are using a Frigate+ model and you set the `min_score` in your objects config for `face` higher than this value, recognition will never run. It's best to ensure these values match, or this `detection_threshold` is lower than your object config `min_score`.
|
- Note: This is field only applies to the standalone face detection model, `min_score` should be used to filter for models that have face detection built in.
|
||||||
- `min_area`: Defines the minimum size (in pixels) a face must be before recognition runs.
|
- `min_area`: Defines the minimum size (in pixels) a face must be before recognition runs.
|
||||||
- Default: `500` pixels.
|
- Default: `500` pixels.
|
||||||
- Depending on the resolution of your camera's `detect` stream, you can increase this value to ignore small or distant faces.
|
- Depending on the resolution of your camera's `detect` stream, you can increase this value to ignore small or distant faces.
|
||||||
|
|||||||
@ -51,7 +51,7 @@ Fine-tune the LPR feature using these optional parameters:
|
|||||||
|
|
||||||
- **`detection_threshold`**: License plate object detection confidence score required before recognition runs.
|
- **`detection_threshold`**: License plate object detection confidence score required before recognition runs.
|
||||||
- Default: `0.7`
|
- Default: `0.7`
|
||||||
- Note: If you are using a Frigate+ model and you set the `min_score` in your objects config for `license_plate` higher than this value, recognition will never run. It's best to ensure these values match, or this `detection_threshold` is lower than your object config `min_score`.
|
- Note: This is field only applies to the standalone license plate detection model, `min_score` should be used to filter for models that have license plate detection built in.
|
||||||
- **`min_area`**: Defines the minimum size (in pixels) a license plate must be before recognition runs.
|
- **`min_area`**: Defines the minimum size (in pixels) a license plate must be before recognition runs.
|
||||||
- Default: `1000` pixels.
|
- Default: `1000` pixels.
|
||||||
- Depending on the resolution of your camera's `detect` stream, you can increase this value to ignore small or distant plates.
|
- Depending on the resolution of your camera's `detect` stream, you can increase this value to ignore small or distant plates.
|
||||||
|
|||||||
@ -937,12 +937,6 @@ class LicensePlateProcessingMixin:
|
|||||||
if not license_plate:
|
if not license_plate:
|
||||||
return
|
return
|
||||||
|
|
||||||
if license_plate.get("score") < self.lpr_config.detection_threshold:
|
|
||||||
logger.debug(
|
|
||||||
f"Plate detection score is less than the threshold ({license_plate['score']:0.2f} < {self.lpr_config.detection_threshold})"
|
|
||||||
)
|
|
||||||
return
|
|
||||||
|
|
||||||
license_plate_box = license_plate.get("box")
|
license_plate_box = license_plate.get("box")
|
||||||
|
|
||||||
# check that license plate is valid
|
# check that license plate is valid
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user