I have an application implemented in Qt with some c++ and python integrated modules (machine learning, signal processing, etc.) with the following basic characteristics:
- Internal multi-threading modules that may run parallel (
QThread) - Provide visualization characteristics like 2D plots (not send images) via Qt widgets, e.g.,
QwtPlotZoomer,QwtPlotMarker,QGraphicsRectItem,QwtPlotCurve.
My goal is to provide the already implemented application characteristics of the server running application via a web browser application with multiple users-observers. I have made some research and spotted some possible solutions (Qt WebGL, Qt for Assembly, Wt) on the following links (link, link, link, and link) but as an unexperienced web application developer I am not entirely sure which of these or alternative and preferable C++ modules to use.
Please provide suggestions on which web development library to use based on characteristics like the maturity, capabilities, easy of use, and the maturity (flexibility with Qt widgets) but also take into account my application
PS: I am experienced in C++ and python not Java and Javascript.