Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/video/sod_detection.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,10 @@ detection_model_t load_sod_model(const char *model_path, float threshold) {
arch = ":voc";
log_info("Detected VOC model by exact filename match, using :voc architecture: %s", filename);
}
else if (strcmp(filename, "tiny80.sod") == 0) {
arch = ":tiny80";
log_info("Detected COCO-80 model by exact filename match, using :tiny80 architecture: %s", filename);
}
else {
// If we couldn't determine the architecture, default to face for .sod files
// This is a fallback to ensure face detection works even if the filename doesn't contain "face"
Expand Down
Loading