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. Issue with threading and opencv
Forum Updated to NodeBB v4.3 + New Features

Issue with threading and opencv

Scheduled Pinned Locked Moved Solved General and Desktop
41 Posts 3 Posters 9.7k Views 1 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.
  • J J.Hilk
    13 Jun 2019, 06:34

    @Kira said in Issue with threading and opencv:

    QueuedConnection

    forces a copy of the arguments, The MetaSystem doesn't know the type cv::Mat -> can't be transmitted via QueuedConnection.

    Check your console output you should have warning of unknown metatyps (declare and/or register)

    K Offline
    K Offline
    Kira
    wrote on 13 Jun 2019, 07:03 last edited by
    #15

    @J.Hilk : I have registered it.
    #include "mainwindow.h"
    #include <QApplication>

    int main(int argc, char *argv[])
    {
    qRegisterMetaType< cv::Mat >("cv::Mat");
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
    

    }

    J 1 Reply Last reply 13 Jun 2019, 07:08
    0
    • K Kira
      13 Jun 2019, 07:03

      @J.Hilk : I have registered it.
      #include "mainwindow.h"
      #include <QApplication>

      int main(int argc, char *argv[])
      {
      qRegisterMetaType< cv::Mat >("cv::Mat");
      QApplication a(argc, argv);
      MainWindow w;
      w.show();

      return a.exec();
      

      }

      J Offline
      J Offline
      J.Hilk
      Moderators
      wrote on 13 Jun 2019, 07:08 last edited by
      #16

      @Kira

      the data goes most likely out of scope, as the copy constructor of cv::Mat does actually no coping

      0_1560409629873_2c331f8b-46e4-4408-8567-abe5ac4169e3-image.png

      I had the same issues in my time with opencv.

      ended up converting it to a Image before transferring it from the opencv thread to the normal one.


      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.

      K 1 Reply Last reply 13 Jun 2019, 08:01
      3
      • J J.Hilk
        13 Jun 2019, 07:08

        @Kira

        the data goes most likely out of scope, as the copy constructor of cv::Mat does actually no coping

        0_1560409629873_2c331f8b-46e4-4408-8567-abe5ac4169e3-image.png

        I had the same issues in my time with opencv.

        ended up converting it to a Image before transferring it from the opencv thread to the normal one.

        K Offline
        K Offline
        Kira
        wrote on 13 Jun 2019, 08:01 last edited by
        #17

        @J.Hilk : Just for clarification should i replace this part with cv::clone
        void saveImage(Mat finalImage,String row, String column);

        1 Reply Last reply
        0
        • K Offline
          K Offline
          Kira
          wrote on 13 Jun 2019, 09:50 last edited by
          #18

          @J-Hilk : will try and also i tried to run the program in debug mode and getting the following error.
          0_1560418863054_65dbf469-08ad-429c-bed7-3a5997fe0246-image.png

          Debugger redirects to following line of file of ostream:
          // MANIPULATORS
          template<class _Elem,
          class _Traits> inline
          basic_ostream<_Elem, _Traits>&
          __CLRCALL_OR_CDECL endl(basic_ostream<_Elem, _Traits>& _Ostr)
          { // insert newline and flush stream
          _Ostr.put(_Ostr.widen('\n'));
          _Ostr.flush();
          return (_Ostr);
          }

          0_1560419407453_ee0e3e1d-16a4-4a24-8b13-2cf3c1db7c66-image.png

          And the program quits.
          Can u please explain what may be the relevant reason for error

          J 1 Reply Last reply 13 Jun 2019, 10:54
          0
          • K Kira
            13 Jun 2019, 09:50

            @J-Hilk : will try and also i tried to run the program in debug mode and getting the following error.
            0_1560418863054_65dbf469-08ad-429c-bed7-3a5997fe0246-image.png

            Debugger redirects to following line of file of ostream:
            // MANIPULATORS
            template<class _Elem,
            class _Traits> inline
            basic_ostream<_Elem, _Traits>&
            __CLRCALL_OR_CDECL endl(basic_ostream<_Elem, _Traits>& _Ostr)
            { // insert newline and flush stream
            _Ostr.put(_Ostr.widen('\n'));
            _Ostr.flush();
            return (_Ostr);
            }

            0_1560419407453_ee0e3e1d-16a4-4a24-8b13-2cf3c1db7c66-image.png

            And the program quits.
            Can u please explain what may be the relevant reason for error

            J Offline
            J Offline
            jsulm
            Lifetime Qt Champion
            wrote on 13 Jun 2019, 10:54 last edited by
            #19

            @Kira Please post the stack trace after crash

            https://forum.qt.io/topic/113070/qt-code-of-conduct

            K 1 Reply Last reply 13 Jun 2019, 12:02
            0
            • J jsulm
              13 Jun 2019, 10:54

              @Kira Please post the stack trace after crash

              K Offline
              K Offline
              Kira
              wrote on 13 Jun 2019, 12:02 last edited by
              #20

              @jsulm : I thought this is the stack trace after crash

              J 1 Reply Last reply 13 Jun 2019, 12:03
              0
              • K Kira
                13 Jun 2019, 12:02

                @jsulm : I thought this is the stack trace after crash

                J Offline
                J Offline
                jsulm
                Lifetime Qt Champion
                wrote on 13 Jun 2019, 12:03 last edited by
                #21

                @Kira said in Issue with threading and opencv:

                this is the stack trace after crash

                no, it isn't

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                K 1 Reply Last reply 13 Jun 2019, 12:06
                0
                • J jsulm
                  13 Jun 2019, 12:03

                  @Kira said in Issue with threading and opencv:

                  this is the stack trace after crash

                  no, it isn't

                  K Offline
                  K Offline
                  Kira
                  wrote on 13 Jun 2019, 12:06 last edited by
                  #22

                  @jsulm : This is the only thing which i see after crash with exception triggered.
                  Is there any other way to do so

                  J 1 Reply Last reply 13 Jun 2019, 12:11
                  0
                  • K Kira
                    13 Jun 2019, 12:06

                    @jsulm : This is the only thing which i see after crash with exception triggered.
                    Is there any other way to do so

                    J Offline
                    J Offline
                    jsulm
                    Lifetime Qt Champion
                    wrote on 13 Jun 2019, 12:11 last edited by
                    #23

                    @Kira In QtCreator if you start with debugger you will have a stack trace

                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                    K 1 Reply Last reply 13 Jun 2019, 12:19
                    0
                    • J jsulm
                      13 Jun 2019, 12:11

                      @Kira In QtCreator if you start with debugger you will have a stack trace

                      K Offline
                      K Offline
                      Kira
                      wrote on 13 Jun 2019, 12:19 last edited by
                      #24

                      @jsulm : Are you referring to this:
                      0_1560428382736_ecc1a67e-9ef8-4aad-ab64-76c3ed8f112e-image.png
                      Please let me know in case of any issues

                      J 1 Reply Last reply 13 Jun 2019, 12:39
                      0
                      • K Kira
                        13 Jun 2019, 12:19

                        @jsulm : Are you referring to this:
                        0_1560428382736_ecc1a67e-9ef8-4aad-ab64-76c3ed8f112e-image.png
                        Please let me know in case of any issues

                        J Offline
                        J Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on 13 Jun 2019, 12:39 last edited by
                        #25

                        @Kira Yes. Now you need to go from top to bottom until you hit first source code file from your project and check it at the line mentioned in the stack trace.

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        K 1 Reply Last reply 14 Jun 2019, 10:03
                        1
                        • J jsulm
                          13 Jun 2019, 12:39

                          @Kira Yes. Now you need to go from top to bottom until you hit first source code file from your project and check it at the line mentioned in the stack trace.

                          K Offline
                          K Offline
                          Kira
                          wrote on 14 Jun 2019, 10:03 last edited by
                          #26

                          @jsulm : I tried doing it but the error is expected to come after thread running >150 times which is making the debugging process very difficult.
                          I have also sample test case on github can you please go through it for any possible issues.
                          https://github.com/HackersSpirit/ImageProcessor

                          J J 2 Replies Last reply 14 Jun 2019, 10:04
                          0
                          • K Kira
                            14 Jun 2019, 10:03

                            @jsulm : I tried doing it but the error is expected to come after thread running >150 times which is making the debugging process very difficult.
                            I have also sample test case on github can you please go through it for any possible issues.
                            https://github.com/HackersSpirit/ImageProcessor

                            J Offline
                            J Offline
                            J.Hilk
                            Moderators
                            wrote on 14 Jun 2019, 10:04 last edited by
                            #27

                            @Kira said in Issue with threading and opencv:

                            150 times

                            you can tell a breakpoint to be ignored for a certain amount of time

                            0_1560506679424_0eaace31-88f0-4376-8417-f745494c6433-image.png


                            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 Kira
                              14 Jun 2019, 10:03

                              @jsulm : I tried doing it but the error is expected to come after thread running >150 times which is making the debugging process very difficult.
                              I have also sample test case on github can you please go through it for any possible issues.
                              https://github.com/HackersSpirit/ImageProcessor

                              J Offline
                              J Offline
                              jsulm
                              Lifetime Qt Champion
                              wrote on 14 Jun 2019, 10:07 last edited by
                              #28

                              @Kira I actually suggested to go through the stack trace after crash from top to bottom. No break points needed for that.

                              https://forum.qt.io/topic/113070/qt-code-of-conduct

                              K 1 Reply Last reply 14 Jun 2019, 10:14
                              2
                              • J jsulm
                                14 Jun 2019, 10:07

                                @Kira I actually suggested to go through the stack trace after crash from top to bottom. No break points needed for that.

                                K Offline
                                K Offline
                                Kira
                                wrote on 14 Jun 2019, 10:14 last edited by Kira
                                #29

                                @jsulm :
                                @Kira said in Issue with threading and opencv:

                                @jsulm : Are you referring to this:
                                0_1560428382736_ecc1a67e-9ef8-4aad-ab64-76c3ed8f112e-image.png
                                Please let me know in case of any issues

                                This is the stack trace which i get posted earlier referring from line no 1. It does not point to line of code where program has a break.
                                But line 16 and 17 point to the line of the code.
                                Should i refer those line for particular cause of the program to break
                                Please do let me know if i getting something wrong

                                J 1 Reply Last reply 14 Jun 2019, 10:18
                                0
                                • K Kira
                                  14 Jun 2019, 10:14

                                  @jsulm :
                                  @Kira said in Issue with threading and opencv:

                                  @jsulm : Are you referring to this:
                                  0_1560428382736_ecc1a67e-9ef8-4aad-ab64-76c3ed8f112e-image.png
                                  Please let me know in case of any issues

                                  This is the stack trace which i get posted earlier referring from line no 1. It does not point to line of code where program has a break.
                                  But line 16 and 17 point to the line of the code.
                                  Should i refer those line for particular cause of the program to break
                                  Please do let me know if i getting something wrong

                                  J Offline
                                  J Offline
                                  jsulm
                                  Lifetime Qt Champion
                                  wrote on 14 Jun 2019, 10:18 last edited by
                                  #30

                                  @Kira Check your code in that source code at line 16 and 17.

                                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  K 1 Reply Last reply 14 Jun 2019, 10:34
                                  1
                                  • J jsulm
                                    14 Jun 2019, 10:18

                                    @Kira Check your code in that source code at line 16 and 17.

                                    K Offline
                                    K Offline
                                    Kira
                                    wrote on 14 Jun 2019, 10:34 last edited by
                                    #31

                                    @jsulm :
                                    Line 16 is pointing to following line in bold:
                                    void ImageMapping::requestReWorkNew()
                                    {
                                    cout<<"Inside requestRework Newwwwwwwwww"<<endl;
                                    const int sleep = 50;
                                    int queueSize = queueImageName.size();
                                    cout<<"Queue size Request Rework New: "<<queueSize<<endl;
                                    if(queueImageName.size()!=0){
                                    //Get the current image number from the list of images
                                    mutex.lock();
                                    _working = true;
                                    _abort = false;
                                    mutex.unlock();
                                    cout<<"Emiting resume work"<<endl;
                                    emit resumeWork();
                                    }else{
                                    cout<<"Signalling retrying"<<endl;

                                        emit retrying();
                                    }
                                    

                                    }

                                    This function is basically a slot triggered by following signal:
                                    connect(imageMapping, SIGNAL(finished()), imageMapping, SLOT(requestReWorkNew()));
                                    connect(imageMapping, SIGNAL(retrying()),imageMapping,SLOT(requestReWorkNew()));

                                    J J 2 Replies Last reply 14 Jun 2019, 10:37
                                    0
                                    • K Kira
                                      14 Jun 2019, 10:34

                                      @jsulm :
                                      Line 16 is pointing to following line in bold:
                                      void ImageMapping::requestReWorkNew()
                                      {
                                      cout<<"Inside requestRework Newwwwwwwwww"<<endl;
                                      const int sleep = 50;
                                      int queueSize = queueImageName.size();
                                      cout<<"Queue size Request Rework New: "<<queueSize<<endl;
                                      if(queueImageName.size()!=0){
                                      //Get the current image number from the list of images
                                      mutex.lock();
                                      _working = true;
                                      _abort = false;
                                      mutex.unlock();
                                      cout<<"Emiting resume work"<<endl;
                                      emit resumeWork();
                                      }else{
                                      cout<<"Signalling retrying"<<endl;

                                          emit retrying();
                                      }
                                      

                                      }

                                      This function is basically a slot triggered by following signal:
                                      connect(imageMapping, SIGNAL(finished()), imageMapping, SLOT(requestReWorkNew()));
                                      connect(imageMapping, SIGNAL(retrying()),imageMapping,SLOT(requestReWorkNew()));

                                      J Offline
                                      J Offline
                                      jsulm
                                      Lifetime Qt Champion
                                      wrote on 14 Jun 2019, 10:37 last edited by
                                      #32

                                      @Kira Are you sure this is the line? The actual line is mentioned in the "Line" column in the stack trace. So, it would be 2129.

                                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      K 1 Reply Last reply 14 Jun 2019, 10:49
                                      0
                                      • K Kira
                                        14 Jun 2019, 10:34

                                        @jsulm :
                                        Line 16 is pointing to following line in bold:
                                        void ImageMapping::requestReWorkNew()
                                        {
                                        cout<<"Inside requestRework Newwwwwwwwww"<<endl;
                                        const int sleep = 50;
                                        int queueSize = queueImageName.size();
                                        cout<<"Queue size Request Rework New: "<<queueSize<<endl;
                                        if(queueImageName.size()!=0){
                                        //Get the current image number from the list of images
                                        mutex.lock();
                                        _working = true;
                                        _abort = false;
                                        mutex.unlock();
                                        cout<<"Emiting resume work"<<endl;
                                        emit resumeWork();
                                        }else{
                                        cout<<"Signalling retrying"<<endl;

                                            emit retrying();
                                        }
                                        

                                        }

                                        This function is basically a slot triggered by following signal:
                                        connect(imageMapping, SIGNAL(finished()), imageMapping, SLOT(requestReWorkNew()));
                                        connect(imageMapping, SIGNAL(retrying()),imageMapping,SLOT(requestReWorkNew()));

                                        J Offline
                                        J Offline
                                        J.Hilk
                                        Moderators
                                        wrote on 14 Jun 2019, 10:45 last edited by
                                        #33

                                        @Kira you can double click on the line (in QtCreator) of the stack trace and it will open the file at the correct line


                                        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
                                        0
                                        • J jsulm
                                          14 Jun 2019, 10:37

                                          @Kira Are you sure this is the line? The actual line is mentioned in the "Line" column in the stack trace. So, it would be 2129.

                                          K Offline
                                          K Offline
                                          Kira
                                          wrote on 14 Jun 2019, 10:49 last edited by Kira
                                          #34

                                          @jsulm : Actually i have recreated the issue.the program i am referring now is from github. I have cross checked the line which I highlighted is the same. If u want i can repost the image

                                          K 1 Reply Last reply 14 Jun 2019, 11:40
                                          0

                                          24/41

                                          13 Jun 2019, 12:19

                                          • Login

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