detector_painters.dart 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. import 'dart:ui' as ui;
  5. import 'package:firebase_ml_vision/firebase_ml_vision.dart';
  6. import 'package:flutter/foundation.dart';
  7. import 'package:flutter/material.dart';
  8. enum Detector { barcode, face, label, cloudLabel, text }
  9. class BarcodeDetectorPainter extends CustomPainter {
  10. BarcodeDetectorPainter(this.imageSize, this.barcodes);
  11. final Size imageSize;
  12. final List<Barcode> barcodes;
  13. @override
  14. void paint(Canvas canvas, Size size) {
  15. final Paint paint = Paint()
  16. ..style = PaintingStyle.stroke
  17. ..strokeWidth = 2.0;
  18. for (Barcode barcode in barcodes) {
  19. paint.color = Colors.green;
  20. canvas.drawRect(
  21. _scaleRect(
  22. rect: barcode.boundingBox,
  23. imageSize: imageSize,
  24. widgetSize: size,
  25. ),
  26. paint,
  27. );
  28. }
  29. }
  30. @override
  31. bool shouldRepaint(BarcodeDetectorPainter oldDelegate) {
  32. return oldDelegate.imageSize != imageSize ||
  33. oldDelegate.barcodes != barcodes;
  34. }
  35. }
  36. class FaceDetectorPainter extends CustomPainter {
  37. FaceDetectorPainter(this.imageSize, this.faces);
  38. final Size imageSize;
  39. final List<Face> faces;
  40. @override
  41. void paint(Canvas canvas, Size size) {
  42. final Paint paint = Paint()
  43. ..style = PaintingStyle.stroke
  44. ..strokeWidth = 2.0
  45. ..color = Colors.red;
  46. for (Face face in faces) {
  47. canvas.drawRect(
  48. _scaleRect(
  49. rect: face.boundingBox,
  50. imageSize: imageSize,
  51. widgetSize: size,
  52. ),
  53. paint,
  54. );
  55. }
  56. }
  57. @override
  58. bool shouldRepaint(FaceDetectorPainter oldDelegate) {
  59. return oldDelegate.imageSize != imageSize || oldDelegate.faces != faces;
  60. }
  61. }
  62. class LabelDetectorPainter extends CustomPainter {
  63. LabelDetectorPainter(this.imageSize, this.labels);
  64. final Size imageSize;
  65. final List<dynamic> labels;
  66. @override
  67. void paint(Canvas canvas, Size size) {
  68. final ui.ParagraphBuilder builder = ui.ParagraphBuilder(
  69. ui.ParagraphStyle(
  70. textAlign: TextAlign.left,
  71. fontSize: 23.0,
  72. textDirection: TextDirection.ltr),
  73. );
  74. builder.pushStyle(ui.TextStyle(color: Colors.green));
  75. // for (Label label in labels) {
  76. // builder.addText('Label: ${label.label}, '
  77. // 'Confidence: ${label.confidence.toStringAsFixed(2)}\n');
  78. // }
  79. builder.pop();
  80. canvas.drawParagraph(
  81. builder.build()
  82. ..layout(ui.ParagraphConstraints(
  83. width: size.width,
  84. )),
  85. const Offset(0.0, 0.0),
  86. );
  87. }
  88. @override
  89. bool shouldRepaint(LabelDetectorPainter oldDelegate) {
  90. return oldDelegate.imageSize != imageSize || oldDelegate.labels != labels;
  91. }
  92. }
  93. // Paints rectangles around all the text in the image.
  94. class TextDetectorPainter extends CustomPainter {
  95. TextDetectorPainter(this.imageSize, this.visionText);
  96. final Size imageSize;
  97. final VisionText visionText;
  98. @override
  99. void paint(Canvas canvas, Size size) {
  100. final Paint paint = Paint()
  101. ..style = PaintingStyle.stroke
  102. ..strokeWidth = 2.0;
  103. Rect _getRect(TextContainer container) {
  104. return _scaleRect(
  105. rect: container.boundingBox,
  106. imageSize: imageSize,
  107. widgetSize: size,
  108. );
  109. }
  110. for (TextBlock block in visionText.blocks) {
  111. for (TextLine line in block.lines) {
  112. for (TextElement element in line.elements) {
  113. paint.color = Colors.green;
  114. canvas.drawRect(_getRect(element), paint);
  115. }
  116. paint.color = Colors.yellow;
  117. canvas.drawRect(_getRect(line), paint);
  118. }
  119. paint.color = Colors.red;
  120. canvas.drawRect(_getRect(block), paint);
  121. }
  122. }
  123. @override
  124. bool shouldRepaint(TextDetectorPainter oldDelegate) {
  125. return oldDelegate.imageSize != imageSize ||
  126. oldDelegate.visionText != visionText;
  127. }
  128. }
  129. Rect _scaleRect({
  130. @required Rect rect,
  131. @required Size imageSize,
  132. @required Size widgetSize,
  133. }) {
  134. final double scaleX = widgetSize.width / imageSize.width;
  135. final double scaleY = widgetSize.height / imageSize.height;
  136. return Rect.fromLTRB(
  137. rect.left.toDouble() * scaleX,
  138. rect.top.toDouble() * scaleY,
  139. rect.right.toDouble() * scaleX,
  140. rect.bottom.toDouble() * scaleY,
  141. );
  142. }