Simple REST API receive image and return json
-
Hi,
I need a rest server which is receive image + name and make AI recognition and send back jsons.
Cutelyst very complex I dont need such complexity and want to be in QtCreator environment.
Isnt there any simole solution for this ? Any example from Qt Universe ?
PS : App is running on the Edge Device (Rpi4)
-
Hi,
Cutelyst provides an easy to use starting point. If that does not suite you, you can check QHttpServer.
Depending on what you are going to use to do your AI stuff, you might want to consider other frameworks in the language matching the tools you are going to use.
-
Is there any simple way in Qt to receive form data with image and respond json or string without using 3rd party cumbersome library ? I will use it on the raspi4 and only one client will be communicate.
-
@RahibeMeryem
As @SGaist said, for something as specific as this there can't be something "out-of-the-box", if you don't like the Cutelyst code you need to write it yourself viaQHttpServer
. -
What are you going to use for your AI related activities ?