Skip to content

Commit f83b8ad

Browse files
authored
Apply suggestions from code review
Co-authored-by: Mateusz Sluszniak <56299341+msluszniak@users.noreply.github.com>
1 parent 03fcc83 commit f83b8ad

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

  • apps/computer-vision/app/object_detection

apps/computer-vision/app/object_detection/index.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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';
1317
import { 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

2533
export default function ObjectDetectionScreen() {

0 commit comments

Comments
 (0)