Browse Source

Merge branch 'master' into feature/expand-stat-ocr-boxes

feature/expand-stat-ocr-boxes
Quildra 5 months ago
parent
commit
c349fd8a3f
  1. 3
      app/src/main/java/com/quillstudios/pokegoalshelper/ScreenCaptureService.kt

3
app/src/main/java/com/quillstudios/pokegoalshelper/ScreenCaptureService.kt

@ -1131,6 +1131,9 @@ class ScreenCaptureService : Service() {
// Show detection overlay with results
if (detections.isNotEmpty()) {
showYOLODetectionOverlay(detections)
// Extract Pokemon info using YOLO detections with OCR
extractPokemonInfoFromYOLOAsync(mat, detections)
}
mat.release()

Loading…
Cancel
Save