File tree Expand file tree Collapse file tree
apps/computer-vision/app/object_detection Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ import {
88 RF_DETR_NANO ,
99 SSDLITE_320_MOBILENET_V3_LARGE ,
1010 YOLO26N ,
11+ YOLO26S ,
12+ YOLO26M ,
13+ YOLO26L ,
14+ YOLO26X ,
1115 ObjectDetectionModelSources ,
1216} from 'react-native-executorch' ;
1317import { View , StyleSheet , Image } from 'react-native' ;
@@ -20,6 +24,10 @@ const MODELS: ModelOption<ObjectDetectionModelSources>[] = [
2024 { label : 'RF-DeTR Nano' , value : RF_DETR_NANO } ,
2125 { label : 'SSDLite MobileNet' , value : SSDLITE_320_MOBILENET_V3_LARGE } ,
2226 { label : 'YOLO26N' , value : YOLO26N } ,
27+ { label : 'YOLO26S' , value : YOLO26S } ,
28+ { label : 'YOLO26M' , value : YOLO26M } ,
29+ { label : 'YOLO26L' , value : YOLO26L } ,
30+ { label : 'YOLO26X' , value : YOLO26X } ,
2331] ;
2432
2533export default function ObjectDetectionScreen ( ) {
You can’t perform that action at this time.
0 commit comments