Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. What's the fastest way to show JPG/JPEG images
Forum Updated to NodeBB v4.3 + New Features

What's the fastest way to show JPG/JPEG images

Scheduled Pinned Locked Moved Unsolved General and Desktop
qlabelqtimerstreaming
18 Posts 7 Posters 7.0k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R R_Irudezu
    17 Oct 2018, 11:18

    @sierdzio I will post my code here:

    void MainWindow::showFrames()
    {
        QDirIterator it("/framesPath", QDirIterator::Subdirectories);
    
        it.next();  // Pass first..
        it.next();  // .. two dots
    
        QString nextFirstFile = it.next();
        QImage Img;
    
        Img.load(nextFirstFile);
        Img = Img.scaledToWidth(ui->QLabel1->width(), Qt::SmoothTransformation);
        ui->QLabel1->setPixmap(QPixmap::fromImage(Img));
    
        QFile imgFile(nextFirstFile );
        imgFile.remove();
    }
    

    The timer in constructor:

        frameTimer = new QTimer(this);
        connect(frameTimer, SIGNAL(timeout()), this, SLOT(showFrames()));
        frameTimer->start(35);
        frameTimer->setInterval(45);
    

    I don't know my approach is good or not, i need your help.

    @sierdzio as you say:
    "Lastly, if you can, try steaming the frames from your video source directly to your app."

    I said "I have to do it in this way. Because i'm manipulating frames with another program."

    @J-Hilk
    Dear J.Hilk, i've posted code how i'm trying to do. Maybe you can show me a little code example.

    S Offline
    S Offline
    sierdzio
    Moderators
    wrote on 17 Oct 2018, 11:49 last edited by
    #9

    @R_Irudezu said in What's the most efficient way to use QLabel as video player:

    I said "I have to do it in this way. Because i'm manipulating frames with another program."

    Yes, but perhaps that other program supports sending the data through a pipe. Or you have some influence on that program and can request streaming support to be added. Et cetera

    (Z(:^

    1 Reply Last reply
    2
    • J J.Hilk
      17 Oct 2018, 10:51

      Also reading the additonal information you profided,

      Creating a new QImage/QPixmap via QImage("filepath") is horribly expensive. Holding a Image/Pixmap in memory and changing the bytes, read via QFile; Should be a good bit faster.

      R Offline
      R Offline
      R_Irudezu
      wrote on 18 Oct 2018, 05:02 last edited by
      #10

      @J.Hilk Can you make simple example. I don't know how to do it with QFile.

      Keizoku wa chikaranari.

      J 1 Reply Last reply 18 Oct 2018, 05:26
      0
      • R R_Irudezu
        18 Oct 2018, 05:02

        @J.Hilk Can you make simple example. I don't know how to do it with QFile.

        J Online
        J Online
        J.Hilk
        Moderators
        wrote on 18 Oct 2018, 05:26 last edited by J.Hilk
        #11

        @R_Irudezu

        this is of course untested. And as the comment says, you have to modfy the QbyteArray to actually get the rgb(a) values you want. You'll have too look that one up. Also the memberImage needs to have the same size as the images you want to load.

        void myWidget::showFrames()
        {
            QDirIterator it("/framesPath", QDir::NoDotAndDotDot, QDirIterator::Subdirectories);
        
            memberQFile.setFileName(it.next());
            
            if(memberQFile.exists() && memberQFile.open(QIODevice::ReadOnly)){
                QByteArray data = memberQFile.readAll();
                
                //This will fail, the QByteArray has to be trimmed/changed according to img file/header
                memcpy(memberImage.bits(),data.data(), data.size());
        
                memberQFile.remove();//Also automatically closes the file
                
                update();//request repaint
            }
        }
        
        void myWidget::paintEvent(QPaintEvent *event)
        {
            QWidget::paintEvent(event);
            
            QPainter p(this);
            
            p.drawImage(rect(),memberImage, memberImage.rect());
        }
        

        Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


        Q: What's that?
        A: It's blue light.
        Q: What does it do?
        A: It turns blue.

        1 Reply Last reply
        2
        • K Offline
          K Offline
          kuzulis
          Qt Champions 2020
          wrote on 18 Oct 2018, 06:01 last edited by
          #12

          There are no efficient way with QLabel.

          1 Reply Last reply
          0
          • R Offline
            R Offline
            R_Irudezu
            wrote on 19 Oct 2018, 19:22 last edited by
            #13

            i've just edited the question, seperated with (____)

            Keizoku wa chikaranari.

            1 Reply Last reply
            0
            • S Offline
              S Offline
              SGaist
              Lifetime Qt Champion
              wrote on 19 Oct 2018, 20:57 last edited by
              #14

              Hi,

              Jpeg decompression is expensive. What size are you images ? What quality ? And to what application are you going to send them ?

              You might want to consider using turbo-jpeg to handle the decompression.

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              R 1 Reply Last reply 19 Oct 2018, 22:26
              1
              • S SGaist
                19 Oct 2018, 20:57

                Hi,

                Jpeg decompression is expensive. What size are you images ? What quality ? And to what application are you going to send them ?

                You might want to consider using turbo-jpeg to handle the decompression.

                R Offline
                R Offline
                R_Irudezu
                wrote on 19 Oct 2018, 22:26 last edited by R_Irudezu
                #15

                @SGaist I'm receiving jpeg data and decoding it with GDI+ in quality of between 30-50 (with a native c++ compiled .exe file)

                long  quality = 50;
                encoderParameters.Parameter[0].Value = &quality;
                

                All images save under a directory. I don't want to use any other decompress handling. Images are about 30-50 Kb and i just want to show them in a Qt item. (QLabel is very useless for this). All images will be shown with a QTimer (40 ms) and will be deleted.

                Keizoku wa chikaranari.

                1 Reply Last reply
                0
                • S Offline
                  S Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on 20 Oct 2018, 21:35 last edited by
                  #16

                  Where are you getting these images from in the first place ?

                  Interested in AI ? www.idiap.ch
                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                  R 1 Reply Last reply 21 Oct 2018, 09:55
                  0
                  • S SGaist
                    20 Oct 2018, 21:35

                    Where are you getting these images from in the first place ?

                    R Offline
                    R Offline
                    R_Irudezu
                    wrote on 21 Oct 2018, 09:55 last edited by R_Irudezu
                    #17

                    @SGaist I'm getting images from a .exe program written in C. The C program connects a camera, getting images, manipulate them with GDI+ and save them under a specific directory. The program uses some libraries, these libraries are not compatible with any of Qt versions.

                    Keizoku wa chikaranari.

                    1 Reply Last reply
                    0
                    • S Offline
                      S Offline
                      SGaist
                      Lifetime Qt Champion
                      wrote on 21 Oct 2018, 20:12 last edited by
                      #18

                      Why are they not ?

                      Interested in AI ? www.idiap.ch
                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      0

                      18/18

                      21 Oct 2018, 20:12

                      • Login

                      • Login or register to search.
                      18 out of 18
                      • First post
                        18/18
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Users
                      • Groups
                      • Search
                      • Get Qt Extensions
                      • Unsolved