I am processing an image using opencv during runtime and want to display the updated version of this image in QML using imageView, i currently am creating a new image file at runtime and reassigning its path to the imageView in QML, is there any better method for this?
相关问题
- QML: Cannot read property 'xxx' of undefin
- How can set pop-up menu position in QML
- QML creating Text element takes long time
- Dead QML elements receiving signals?
- How can I listen to a C++ signal from QML?
相关文章
- Parsing JSON in QML [duplicate]
- How to reuse code at QML
- Are “var” and “variant” the same thing?
- QML Loader not shows changes on .qml file
- QML - Cannot assign to non-existent property “styl
- QML window resize/move flicker
- QML StackView: Item Destroyed on pop
- QML TreeView not updating at runtime after adding
If I understand the question correctly, I do this by connecting a changed signal emitted from the c++ code and connect it to a receiver that forces a reload on the qml side :