-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to display using Qt5.5 #1
Comments
@rbotta, could you please share your Qt5-related changes? |
Feel free to open a PR, during this week I'll take a look at this code and start the migration to Qt5 |
Btw, Qt 5.5 now has a VideoOutput QML object that can have custom filters. They are basically saying that we should write cvFilters. It's reasonable: VideoOutput can play from a media file too. |
But I think a downside of Qt's videofilterrunnable is, that the QVideoFrame images on android are GLTextureBuffers, so it's expensive to copy them to the user memory. Wouldn't it be faster to have opencv capture the camera image if you want to manipulate it since it is already in user space and draw it later? |
When can we expect a Qt 5 version of this library? |
Hi,
I am glad that you could display camera capture in qml using opencv. I tried to build your plugin using Qt 5.5. I made the necessary changes like QDeclarative to QQuickItem and replaced QStyleOptionGraphicsItem with QGraphicsItem. I am able to receive the iplData, qImage in the qml onNewFrame. However I am not able to view the image in qml. Could you please share the qmlTest solution.
The text was updated successfully, but these errors were encountered: