mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Fix region when no data in grid (#8415)
* Fix region when no data in grid * Make comment more clear
This commit is contained in:
parent
8a9b26df4e
commit
8b6e3a0d37
@ -174,9 +174,9 @@ def get_region_from_grid(
|
|||||||
|
|
||||||
cell = region_grid[grid_x][grid_y]
|
cell = region_grid[grid_x][grid_y]
|
||||||
|
|
||||||
# if there is no known data, get standard region for motion box
|
# if there is no known data, use original region calculation
|
||||||
if not cell or not cell["sizes"]:
|
if not cell or not cell["sizes"]:
|
||||||
return calculate_region(frame_shape, box[0], box[1], box[2], box[3], min_region)
|
return box
|
||||||
|
|
||||||
# convert the calculated region size to relative
|
# convert the calculated region size to relative
|
||||||
calc_size = (box[2] - box[0]) / frame_shape[1]
|
calc_size = (box[2] - box[0]) / frame_shape[1]
|
||||||
|
Loading…
Reference in New Issue
Block a user