我正在使一个应用程序可以使用firebase-ml-vision包检测扑扑中的人脸,但它可以以中等分辨率检测所有分辨率。这是我的应用程序的最佳解决方案,因为它具有中等分辨率,图像质量不是太低,但是仍然可以保持平稳的性能。
这是一个错误吗?这是我的代码:
Center(
child: Container(
child: RotatedBox(
quarterTurns:
(MediaQuery
.of(context)
.orientation == Orientation.landscape)
? 3
: 0,
child: CustomPaint(
foregroundPainter:
(faces.isEmpty) ? null : MyPainter(faces, imageSize),
child: AspectRatio(
aspectRatio: controller.value.aspectRatio,
child: CameraPreview(controller),
),
),
),
),
),
我有一个想法,我可以使用低分辨率的摄像机控制器进行检测,而可以使用其他高分辨率的摄像机进行显示。可以在同一页面中有两个摄像头控制器吗?