Blog.

Install Microsoft Kinect on PC

MF

Marco Franssen /

2 min read236 words

Cover Image for Install Microsoft Kinect on PC

In this blogpost I explain how you can install Microsoft Kinect on your pc. For installing Microsoft Kinect on your pc you need to install some drivers. You can get the latest drivers from http://www.openni.org. Take all the drivers of the same version. When installing the drivers you need to do it in exact the following sequence.

  1. Do not plug in your Kinect.
  2. Install OpenNI
  3. Install the PrimeSense NITE installation package (see binary for step 3)

When the installation asks for a PrimeSense License Key enter: 0KOIk2JeIBYClPWVnMoRKn5cdY4=

  1. Install the PrimeSense Sensor driver (see binary for step 4) Windows will warn you for a unknown publisher, choose: Install this driver software anyway
  2. After installation. Plug-in the Kinect on a USB port Windows is trying to search for the driver and will find it eventually. This will take some minutes Or you can open the installing driver window and click on the link: "skip obtaining driver software from windows update" This will speed up the driver installation progress.
  3. After installation the led will be blinking green on the Kinect. This indicates a good installation.

On the following youtube channel of my colleague Jan Saris you can see what we have developed using Microsoft Kinect. https://youtube.com/user/jansaris

You can start with exploring the examples.

I hope you enjoy developing for Kinect yourself. Please let me know your own experiences with Microsoft Kinect.

You have disabled cookies. To leave me a comment please allow cookies at functionality level.

More Stories

Cover Image for Injecting dependencies in MVC3 with Windsor

Injecting dependencies in MVC3 with Windsor

MF

Marco Franssen /

In this blog post I will explain how to inject your dependencies into your controllers in a MVC 3 application with Castle Windsor. First of all you need to create a WindsorInstaller. This class is responsible for the configuration of your IoC container. In the above class the first line registers all your controllers with lifestyle configured to Transient. Depending on the lifestyle you choose Windsor will clean all resources. Other lifestyles are Singleton, Pooled, PerWebRequest, PerThread. T…

Cover Image for Some notes on the DDD/CQRS Course

Some notes on the DDD/CQRS Course

MF

Marco Franssen /

In this blog post I work out some of the notes I made in Greg Young’s DDD/CQRS course in Krakow Poland. In Domain Driven Design there are some important things to think about. In DDD we make a difference in the following components. Aggregate Roots Entities Value Objects An Aggregate root is a set of multiple things that belong to each other. The aggregate should have a name that describes the whole. To come to a domain driven design you should take the following steps: Denormalization T…