https://github.com/UnaNancyOwen/Kinect2Sample
Kinect for Windows SDK v2 Sample Program
Sample Program of Kinect for Windows SDK v2
I will continue to add new sample program when published article in Build Insider.
Disclaimer
“This is preliminary software and/or hardware and APIs are preliminary and subject to change.”
Environment
- Kinect for Windows SDK v2.0
- OpenCV 2.4.10
- Visual Studio 2013 Express for Windows Desktop
- Speech Platform SDK 11
- Kinect for Windows SDK v2.0 Language Packs (en-US)
License
Copyright © 2014 Tsukasa SUGIURA
Distributed under the MIT License.
Contact
Build Insider
- Kinect for Windows v2 Introduction – for C++ Programmers Article Serieshttp://www.buildinsider.net/small/kinectv2cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
■About Sample Program This Sample Program is setting to be able to build in the following environments. Please rewrite the appropriate setting depending on the environment. Visual Studio Express 2013 for Windows Desktop Kinect for Windows SDK v2.0 OpenCV 2.4.10 Speech Platform SDK 11 Kinect for Windows SDK v2.0 Language Packs (en-US) ■Setting for OpenCV Please UnZip to the following Location. Location: C:\Program Files\opencv Please set the following Environment Variables. Variable Name: Variable Value: OPENCV_DIR C:\Program Files\opencv\ OPENCV_VER 2410 Path ;%OPENCV_DIR%\build\x64\vc12\bin For more information, see this page. Summary?Blog - How to build the Development Environment of OpenCV <a href="http://unanancyowen.com/?p=97">http://unanancyowen.com/?p=97</a> ■Build Insider Kinect for Windows v2 Introduction - for C++ Programmers Article Series <a href="http://www.buildinsider.net/small/kinectv2cpp">http://www.buildinsider.net/small/kinectv2cpp</a> 1. To Compare Kinect v1 and Kinect v2 <a href="http://www.buildinsider.net/small/kinectv2cpp/01">http://www.buildinsider.net/small/kinectv2cpp/01</a> 2. Kinect v2 Programming for C++ - Color part <a href="http://www.buildinsider.net/small/kinectv2cpp/02">http://www.buildinsider.net/small/kinectv2cpp/02</a> 3. Kinect v2 Programming for C++ - Depth part <a href="http://www.buildinsider.net/small/kinectv2cpp/03">http://www.buildinsider.net/small/kinectv2cpp/03</a> 4. Kinect v2 Programming for C++ - BodyIndex part <a href="http://www.buildinsider.net/small/kinectv2cpp/04">http://www.buildinsider.net/small/kinectv2cpp/04</a> 5. Kinect v2 Programming for C++ - Body part <a href="http://www.buildinsider.net/small/kinectv2cpp/05">http://www.buildinsider.net/small/kinectv2cpp/05</a> 6. Kinect Studio v2 <a href="http://www.buildinsider.net/small/kinectv2cpp/06">http://www.buildinsider.net/small/kinectv2cpp/06</a> 7. Kinect v2 Programming for C++ - AudioBeam part <a href="http://www.buildinsider.net/small/kinectv2cpp/07">http://www.buildinsider.net/small/kinectv2cpp/07</a> ■About License License of this Sample Program suppose MIT License. Please refer to License.txt. ■Disclaimer "This is preliminary software and/or hardware and APIs are preliminary and subject to change." THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIM ED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DI RECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEO RY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGL IGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN I F ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ■Change History 2014/02/01 Created Sample Program 2014/02/01 Add Color 2014/02/14 Add Depth 2014/02/28 Add BodyIndex 2014/03/07 Add Body 2014/03/14 Add Infrared 2014/04/18 Add Event 2014/06/25 Add AudioBeam 2014/07/24 Add Speech 2014/08/19 Add AudioBody 2014/08/20 Add Gesture 2014/08/20 Add Face 2014/08/21 Add LongExposureInfrared 2014/08/21 Add CoodinateMapper 2014/08/21 Add Fusion 2014/08/26 Add HDFace |