feat: implement base architecture and core repositories for weapon tracking and target analysis functionality

This commit is contained in:
streaper2
2026-05-08 20:29:18 +02:00
parent 5dd58da51c
commit 774dbfcf40
37 changed files with 3687 additions and 2713 deletions

View File

@@ -1,4 +1,5 @@
import 'dart:math' as math;
import 'package:flutter/foundation.dart';
import '../data/models/target_type.dart';
import 'image_processing_service.dart';
import 'opencv_impact_detection_service.dart';
@@ -320,7 +321,7 @@ class TargetDetectionService {
);
}).toList();
} catch (e) {
print('Erreur détection OpenCV: $e');
debugPrint('Erreur détection OpenCV: $e');
return [];
}
}
@@ -369,7 +370,7 @@ class TargetDetectionService {
);
}).toList();
} catch (e) {
print('Erreur détection OpenCV depuis références: $e');
debugPrint('Erreur détection OpenCV depuis références: $e');
return [];
}
}