I have a Flutter app that calls an object detector in CoreML via the iOS platform channel. I would like to ensure the model is getting the image in the correct format by viewing it in a Flutter widget.
I have access to the CVPixelBuffer
data. How do I send it back to Flutter and display it in a widget?
2
Answers
Platform channels allow for two way communication. You’re already done with half the task.
You must have already done this using something like
Native -> Flutter