1

I am trying to deploy a realtime image recognition system in python flask api then call it in a winform desktop application, what's the best way to send the video feed throug a json format.

1 Answers1

1

You can send via base64 format inside json. But best way is designing flask api to expect multipart form data.Even json data + multipart is possible.

Md. Mehedi Hasan
  • 196
  • 2
  • 14