Skip to content
Draft
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions .cspell-wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -298,3 +298,19 @@ deis
Coeff
Multistep
multistep
dbnet
softmaxed
unclip
EasyOCR
ppocrv
dewarp
onehot
letterboxed
redetections
doclayout
rowspan
slanet
dewarped
nums
ocrv
unclips
7 changes: 7 additions & 0 deletions apps/computer-vision/app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ export default function Layout() {
title: 'Instance Segmentation',
}}
/>
<Drawer.Screen
name="ocr/index"
options={{
drawerLabel: 'OCR',
title: 'OCR',
}}
/>
<Drawer.Screen
name="inspect/index"
options={{
Expand Down
3 changes: 3 additions & 0 deletions apps/computer-vision/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ export default function Home() {
<TouchableOpacity style={styles.button} onPress={() => router.navigate('keypoint/')}>
<Text style={styles.buttonText}>Keypoint Detection</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button} onPress={() => router.navigate('ocr/')}>
<Text style={styles.buttonText}>OCR</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button} onPress={() => router.navigate('inspect/')}>
<Text style={styles.buttonText}>Model Inspector</Text>
</TouchableOpacity>
Expand Down
Loading
Loading