Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7016767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:49:40+00:00 2026-05-27T22:49:40+00:00

I’m trying to make an app using Kinect (OpenNI), processing the image (OpenCV) with

  • 0

I’m trying to make an app using Kinect (OpenNI), processing the image (OpenCV) with a GUI.

I tested de OpenNI+OpenCV and OpenCV+Qt

Normally when we use OpenCV+Qt we can make a QWidget to show the content of the camera (VideoCapture) .. Capture a frame and update this querying for new frames to device.

With OpenNI and OpenCV i see examples using a for cycle to pull data from Kinect Sensors (image, depth) , but i don’t know how to make this pulling routing mora straightforward. I mean, similar to the OpenCV frame querying.

The idea is embed in a QWidget the images captured from Kinect. The QWidget will have (for now) 2 buttons “Start Kinect” and “Quit” ..and below the Painting section to show the data captured.

Any thoughs?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T22:49:41+00:00Added an answer on May 27, 2026 at 10:49 pm

    You can try the QTimer class to query the kinect at fixed time intervals. In my application I use the code below.

    void UpperBodyGestures::refreshUsingTimer()
    {
        QTimer *timer = new QTimer(this);
        connect(timer, SIGNAL(timeout()), this, SLOT(MainEventFunction()));
        timer->start(30);
    }
    
    void UpperBodyGestures::on_pushButton_Kinect_clicked()
    {
        InitKinect();
        ui.pushButton_Kinect->setEnabled(false);
    }
    
    
    // modify the main function to call refreshUsingTimer function
    
        UpperBodyGestures w;
        w.show();
        w.refreshUsingTimer();
        return a.exec();
    

    Then to query the frame you can use the label widget. I’m posting an example code below:

    // Query the depth data from Openni
    const XnDepthPixel* pDepth = depthMD.Data();
    // Convert it to opencv for manipulation etc
    cv::Mat DepthBuf(480,640,CV_16UC1,(unsigned char*)g_Depth);
    // Normalize Depth image to 0-255 range (cant remember max range number so assuming it as 10k)
    DepthBuf = DepthBuf / 10000 *255; 
    DepthBuf.convertTo(DepthBuf,CV_8UC1);
    // Convert opencv image to a Qimage object 
    QImage qimage((const unsigned char*)DepthBuf.data, DepthBuf.size().width, DepthBuf.size().height, DepthBuf.step, QImage::Format_RGB888);        
    // Display the Qimage in the defined mylabel object
    ui.myLabel->setPixmap(pixmap.fromImage(qimage,0).scaled(QSize(300,300), Qt::KeepAspectRatio, Qt::FastTransformation));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
We're building an app, our first using Rails 3, and we're having to build
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka
I am using Paperclip to handle profile photo uploads in my app. They upload
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a jquery bug and I've been looking for hours now, I can't
I want use html5's new tag to play a wav file (currently only supported

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.