Allow custom confidence threshold

Clarify print statements
This commit is contained in:
slashtechno 2023-10-05 20:33:52 -05:00
parent 0a28b756ae
commit ccf560ab2a
Signed by: slashtechno
GPG Key ID: 8EC1D9D9286C2B17
3 changed files with 19 additions and 8 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
.env
config/
using_yolov8.ipynb
yolov8n.pt
__pycache__/

View File

@ -12,7 +12,7 @@ from ultralytics import YOLO
import argparse
from .utils import notify, config_utils
from .utils import notify
DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S"
args = None
@ -56,6 +56,16 @@ def main():
# help="The scale to view the detection at, default is 0.75",
# )
argparser.add_argument(
"--confidence-threshold",
default=os.environ["CONFIDENCE_THRESHOLD"]
if "CONFIDENCE_THRESHOLD" in os.environ
and os.environ["CONFIDENCE_THRESHOLD"] != ""
else 0.6,
type=float,
help="The confidence threshold to use",
)
stream_source = argparser.add_mutually_exclusive_group()
stream_source.add_argument(
"--url",
@ -178,7 +188,7 @@ def main():
# print("---")
# Now do stuff (if conf > 0.5)
if conf < 0.5:
if conf < args.confidence_threshold:
# If the confidence is less than 0.5, then SKIP!!!!
continue
@ -197,9 +207,12 @@ def main():
object_names[class_id]["last_detection_time"] = time.time()
print(f"First detection of {class_id} in this detection window")
# This line is important. It resets the detection duration when the object hasn't been detected for a while
print(
f"Resetting detection duration for {class_id} since it hasn't been detected for {args.detection_window} seconds"
) # noqa: E501
# If detection duration is None, don't print anything.
# Otherwise, print that the detection duration is being reset due to inactivity
if object_names[class_id]["detection_duration"] is not None:
print(
f"Resetting detection duration for {class_id} since it hasn't been detected for {args.detection_window} seconds" # noqa: E501
)
object_names[class_id]["detection_duration"] = 0
else:
# Check if the last notification was less than 15 seconds ago

View File

@ -1,3 +0,0 @@
# def write_config():
# with open(config_path, "w") as config_file:
# json.dump(config, config_file, indent=4)