Re: [Interest] QVideoProbe video frames upside down

2018-07-17 Thread Jason H
  Well is it rotated or flipped?  Reordering the Y order is not the same as rotating 180.   Also see QImage::mirrored() and QVideoSurfaceFormat::scanLineDirection(). It'll vary depending on how the hardware driver is implemented.    It's getting kind of ridiculous supporting the popular

[Interest] QVideoProbe video frames upside down

2018-07-17 Thread Tomasz Wcislo
Hello everyone, I'm working on a video conferencing app, and I have trouble converting QVideoFrames to QImages. I get the frames from a QVideoProbe attached to a QCamera, and I display them in a QLabel using this code: QVideoFrame vf(frame); vf.map(QAbstractVideoBuffer::ReadOnly);

Re: [Interest] [External] [SVG] QML Image: Error decoding

2018-07-17 Thread Oleg Evseev
Run my project on android - it display svg as should. My current desktop is Win 10 Pro 64bit. But I don't understand how it can be relevant, because accelbubble example shows svg fine on this desktop. 2018-07-17 11:58 GMT+03:00 Oleg Evseev : > Yes, I tried add QTPLUGIN += qsvg it doesn't help. >

Re: [Interest] [External] [SVG] QML Image: Error decoding

2018-07-17 Thread Oleg Evseev
Yes, I tried add QTPLUGIN += qsvg it doesn't help. And by the way according to .pro file of accelbubble example this manual plugin loading needed with older Qt and commented there. 2018-07-17 11:30 GMT+03:00 Kristoffersen, Even (NO14) < even.kristoffer...@honeywell.com>: > Do you have QT_PLUGIN

Re: [Interest] [External] [SVG] QML Image: Error decoding

2018-07-17 Thread Kristoffersen, Even (NO14)
Do you have QT_PLUGIN += qsvg in your .pro file as well? -Even From: Interest [mailto:interest-bounces+even.kristoffersen=honeywell@qt-project.org] On Behalf Of Oleg Evseev Sent: 16. juli 2018 17:56 To: Qt Project Subject: [External] [Interest] [SVG] QML Image: Error decoding Hi! Got

[Interest] Concepts behind Route and navigation

2018-07-17 Thread Marek.Floriańczyk
Hi I'm working on car navigation application, I'm using mapboxgl for that. I have based my app on this example: https://github.com/tmpsantos/qmapboxglapp/tree/tmpsantos-cheapruler All is well when I calculate route from start point to end point at the beginning of the journey. Problem occurs

[Interest] Android service starting on boot

2018-07-17 Thread Filip Piechocki
Hi, I would like to create an Android service with Qt that will start at boot. The thing is that all the information I've found says how to create a service that is an addition to activity while I would like to have the service part only. Basing on this tutorial on KDAB page