- YOLOv5 TFLite coin detection with NMS - Blur classifier for image quality gating - Circular contour refinement and cropping - Camera capture and gallery pick Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
269 B
Dart
11 lines
269 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:coin_dex_demo/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('app builds', (tester) async {
|
|
await tester.pumpWidget(const CoinScanDemoApp());
|
|
expect(find.text('硬币扫描'), findsOneWidget);
|
|
});
|
|
}
|