File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
apps/computer-vision/app/object_detection Expand file tree Collapse file tree 1 file changed +8
-0
lines changed 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' ;
@@ -21,6 +25,10 @@ const MODELS: ModelOption<ObjectDetectionModelSources>[] = [
2125 { label : 'RF-DeTR Nano' , value : RF_DETR_NANO } ,
2226 { label : 'SSDLite MobileNet' , value : SSDLITE_320_MOBILENET_V3_LARGE } ,
2327 { label : 'YOLO26N' , value : YOLO26N } ,
28+ { label : 'YOLO26S' , value : YOLO26S } ,
29+ { label : 'YOLO26M' , value : YOLO26M } ,
30+ { label : 'YOLO26L' , value : YOLO26L } ,
31+ { label : 'YOLO26X' , value : YOLO26X } ,
2432] ;
2533import ErrorBanner from '../../components/ErrorBanner' ;
2634
You can’t perform that action at this time.
0 commit comments