Add support for object detection on Rubik Pi 3 (#2005)

This commit is contained in:
Sam Freund
2025-08-09 10:02:55 -05:00
committed by GitHub
parent e23df8c9a4
commit 9277960018
26 changed files with 545 additions and 70 deletions

View File

@@ -20,7 +20,7 @@ export interface ObjectDetectionModelProperties {
labels: string[];
resolutionWidth: number;
resolutionHeight: number;
family: "RKNN";
family: "RKNN" | "RUBIK";
version: "YOLOV5" | "YOLOV8" | "YOLOV11";
}