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 8163053
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T18:56:01+00:00 2026-06-06T18:56:01+00:00

I am making a program with the SDK, where when users are detected, The

  • 0

I am making a program with the SDK, where when users are detected, The program draws a skeleton for them to follow. I recently saw a game advertised on my Xbox, Nike+ Kinect and saw how it displays a copy of the character doing something else like:

http://www.swaggerseek.com/wp-content/uploads/2012/06/fcb69__xboxkinect1.jpg

Or

http://www.swaggerseek.com/wp-content/uploads/2012/06/fcb69__xboxkinect.jpg

Can I create a point-cloud representation of the only the person detected (not any of the background)? Thanks in advance!


EDIT

Using this site, I can create point clouds, but still can’t crop around the body of the person.

  • 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-06-06T18:56:03+00:00Added an answer on June 6, 2026 at 6:56 pm

    It doesn’t look like they are displaying a complete point cloud but rather a blue shaded intensity map. This could be done with the depth image from the Kinect for Windows sdk.
    What you are looking for is the player index. This is a provided bit in each pixel of the depth image. In order to get the player index bit you have to also enable the skeletal stream in your initialization code.

    So this is how I would do it. I am modifying one of the Kinect for Windows SDK quickstarts found here load it up and make the following changes:

    //Change image type to BGRA32
    image1.Source = 
                    BitmapSource.Create(depthFrame.Width, depthFrame.Height, 
                    96, 96, PixelFormats.Bgra32, null, pixels, stride); 
    
            //hardcoded locations to Blue, Green, Red, Alpha (BGRA) index positions       
            const int BlueIndex = 0;
            const int GreenIndex = 1;
            const int RedIndex = 2;
            const int AlphaIndex = 3;
    
    //get player and depth at pixel
    int player = rawDepthData[depthIndex] & DepthImageFrame.PlayerIndexBitmask;
    int depth = rawDepthData[depthIndex] >> DepthImageFrame.PlayerIndexBitmaskWidth;
    
    //check each pixel for player, if player is blue intensity.
    
                if (player > 0)
                {
                    pixels[colorIndex + BlueIndex] = 255;
                    pixels[colorIndex + GreenIndex] = intensity;
                    pixels[colorIndex + RedIndex] = intensity;
                    pixels[colorIndex + AlphaIndex] = 100;
    
                }
                else
                {
                    //if not player make black and transparent
                    pixels[colorIndex + BlueIndex] = 000;
                    pixels[colorIndex + GreenIndex] = 000;
                    pixels[colorIndex + RedIndex] = 000;
                    pixels[colorIndex + AlphaIndex] = 0;
                }
    

    I like using this example for testing the colors since it still provides you with the depth viewer on the right side. I have attached an image of this effect running below:

    enter image description here

    The image to the left is the intensity map with slightly colored pixel level intensity data.

    Hope that helps
    David Bates

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am making a program using the LRV(Least recently visited) Algorithm. Basically, I design
Im making a program about the game Go and im trying to write some
I am making a program similar to the famous game Tetris and I've run
I'm making a program for an Android tablet, and have been using the SDK
I am making a program to play a game of UNO. In the UNO
I'm making a program which sends invoices to registered users as PDF attachment. Each
I am using the cool map making program DIY map and i want to
I making a program and wanted to make an update function... So lets say
Im making a program for class that manages a Hotel. I have a function
I am making a program that automates the seperation of a csv file. We

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.