Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-115758

Tuio Fiducials always contain invalid UniqueIds

    XMLWordPrintable

Details

    • Windows
    • 17f61ddc6 (dev), e86a033e5 (6.5), 426740ba1 (6.6)

    Description

      It seems that the uniqueId of QTouchPoint that is supposed to contain the id of TUIO fiducials is always invalid / -1.

      This is the case in Qml:

              MultiPointTouchArea {
                  anchors.fill: parent
                  onTouchUpdated: function(touchPoints){
                      console.log(touchPoints)
                      for(var i=0; i<touchPoints.length; ++i){
                          var tp = touchPoints[i]
                          console.log(tp.uniqueId)
                      }
                  }
              }

      and in C++:

      bool YourClass::eventFilter(QObject *obj, QEvent *e)
      {    QTouchEvent *te = dynamic_cast<QTouchEvent*>(e);
          if(!te){
              return false;
          }    const QList<QEventPoint>& pnts = te->points();
          for(int i=0; i<pnts.size(); ++i)
          {
              const QEventPoint& tp = pnts[i];
              qDebug()<<"Dev:   "<<tp.device();
              qDebug()<<"State: "<<tp.state();
              qDebug()<<"Rot:   "<<tp.rotation();
              qDebug()<<"UID:   "<<tp.uniqueId().isValid()<<" "<<tp.uniqueId().numericId();
              qDebug()<<"ID:   "<<tp.id();
          }
          return false;
      } 

      The id was generated with the (old but reliable) Java Tuio Simulator. It is passed to QWindowSystemInterfacePrivate::fromNativeTouchPoints and valid there but is lost somewhere on its way through event handling.

      This breaks Fiducials / Tuio tokens completely.

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            srutledg Shawn Rutledge
            inikofdoom Inik Doom
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes