Help me test Kinecursor, Please…

For More Details(on how to use it) of Kinecursor please click Here to see the original post.

This decides whether I will share the source code of Kinecurosr with you.. 🙂

I have sent Kinecursor to two guys and it’s weird that both of them said it didn’t work..
But it works perfectly on my PC(Maybe not that perfect.. Still need to be improved)..
Maybe just because they’re using Kinect for Windows and I’m using Kinect for Xbox 360..

So.. I do want to know more details..
You now can download the Demo of Kinect v1.0 (of course, for free..)
Please help me test it..

And simply leave a comment below to tell me:
1.Does it work on your PC?
2.Which Kinect sensor are you using, Kinect for Windows or Kinect for Xbox 360?
3.Which version of Kinect SDK are you using? 1.0, 1.5, 1.6 or what?

Download:
[download id=”14″]

About TangoChen

Interest driven for tech & music.
This entry was posted in Kinect, Tech and tagged . Bookmark the permalink.

18 Responses to Help me test Kinecursor, Please…

  1. Jason Hu says:

    It works. But the cursor is jitter and not smooth.

  2. colby says:

    The application runs for me and shows the depth data but nothing with the mouse works. It could be my fault but I tried all the different fist positions but nothing will turn my fist yellow and nothing will move the cursor. I’m running Kinect SDK 1.6 with a Kinect for Windows device.

  3. Pingback: Kinecursor = Kinect + Cursor ..- още един проект за командване на мишката « we kinecting history

  4. Aaron says:

    Works for me! Very jittery but the cursor moves. Using 1.5 SDK and Xbox Kinect

  5. IVan says:

    This do not work for sdk 1.6 but its fine for 1.5

  6. nithin rajan says:

    It didn’t worked for me, Iam using Kinect for Windows and SDK V1.5,
    Can You please share the code.
    Wanna Check your code fro depth data.

  7. Veljko says:

    can we get a link to download the source code ?

  8. Santiago says:

    It works for me, not very smooth but it works.
    I’m using kinect sdk 1.6 with an xbox kinect.
    I ‘ve tried using it only with kinect runtime but it did not detect the kinect.

  9. Ichal says:

    1. Yes, it works on my PC (with notes).
    2. I’m using Kinect for Xbox.
    3. SDK version: 1.6

    The cursor move is good, but the “True” and “False” condition is giving a little headache 🙂 The hand must be centered in front of the Kinect and at certain distance, otherwise it’s not recognizing the close and open palm.

  10. kman says:

    Using Kinect for Windows, 1.0.0.557 Dirver version. all i got was the app to start no visual tracking, just the note about how to contact you. Also could not close the app (had to end process from task manager), hope this helps.

    • TangoChen says:

      Thanks for your feedback, kman~
      Why don’t you use at least 1.5 version?
      The program was written with Kinect SDK 1.5.. So I think it won’t work for v1.0..

  11. IE says:

    The cursor is very jittery and not smooth. Depth is working but control is very unpredictable.
    Kinect for XBOX 360
    SDK – Version 1.6

  12. ricardo cervantes says:

    i will test the code with kinect 4 windows and kinect sdk 1.5

  13. Jo says:

    Hi,

    No, doesn’t work for me.

    – Its a Win7 Ultimate x86
    – I’m using “Kinect for Xbox 360″
    – SDK = 1.6

    Its doesn’t seem to recognise my Kinect Sensor. Telling me ” No Kinect found” or so…
    Means it commes right from the Window Init part of your app.

    private void WindowLoaded(object sender, RoutedEventArgs e)
    {
    bool bl;
    foreach (KinectSensor kinectSensor in KinectSensor.get_KinectSensors())
    {
    bl = kinectSensor.get_Status() != 2;
    if (!bl)
    {
    this.sensor = kinectSensor;
    break;
    }
    }
    bl = this.sensor == null;
    if (!bl)
    {
    this.sensor.get_DepthStream().Enable(2);
    this.sensor.get_SkeletonStream().Enable();
    this.depthPixels = new short[this.sensor.get_DepthStream().get_FramePixelDataLength()];
    this.colorPixels = new byte[this.sensor.get_DepthStream().get_FramePixelDataLength() * 4];
    this.colorBitmap = new WriteableBitmap(this.sensor.get_DepthStream().get_FrameWidth(), this.sensor.get_DepthStream().get_FrameHeight(), 96, 96, PixelFormats.Bgr32, null);
    this.imgDepth.Source = this.colorBitmap;
    this.sensor.add_DepthFrameReady(new EventHandler(this.SensorDepthFrameReady));
    try
    {
    this.sensor.Start();
    }
    catch
    {
    this.sensor = null;
    }
    try
    {
    this.sensor.get_DepthStream().set_Range(1);
    }
    catch (InvalidOperationException invalidOperationException)
    {
    InvalidOperationException invalidOperationException;
    invalidOperationException;
    this.sensor.get_DepthStream().set_Range(0);
    }
    this.sensor.add_SkeletonFrameReady(new EventHandler(this.SensorSkeletonFrameReady));
    this.sensor.get_SkeletonStream().set_TrackingMode(1);
    }
    bl = this.sensor != null;
    if (!bl)
    {
    MessageBox.Show(“No Kinect Founded.. :(“);
    }
    }

  14. Daniel says:

    Fine for me, only the tracking is not smooth and the select click and other stuff is weird.

  15. gerold says:

    please i wanna download

  16. Özgür Deniz says:

    i need

Leave a Reply to IE Cancel reply

Your email address will not be published. Required fields are marked *

Time limit is exhausted. Please reload CAPTCHA.