All Questions
4 questions
3
votes
1
answer
1k
views
Is there a way to specify the file name in advance for the picture taken with the flutter camera plugin?
Hi I am using the flutter camera plugin and it works fine, the main issue I am having is that I can't find a way to tell the plugin the image file name when taking the picturee, in android using ...
4
votes
0
answers
276
views
Is it possible to record a video while using imageStream with camera plugin?
I am trying to use the camera plugin for two purposes in my app:
Allow the user to record a video
Process the video alongside recording with some AI models
I tried to use the camera plugin with two ...
1
vote
0
answers
133
views
How pass android.media.Image to other plugin on Flutter
I added the Camera plugin to my flutter project. I need to send the image got through ImageStream (CameraImage) to MlKit face detection, but the android API requires android.media.Image.
I tried,
...
22
votes
2
answers
18k
views
How to access camera frames in flutter quickly
I would like to implement near real-time OCR on the camera feed of my flutter app. To do this I would like to access the camera data in a speedy manner.
As far as I can tell I have two options, and ...