ADN中国队参加微软Kinect他赢得了全国比赛三等奖,我们的创意项目与团队Kinect于Naviswork虚拟之旅

ADN中国队参加微软Kinect他赢得了全国比赛三等奖,我们的创意项目与团队Kinect于Naviswork虚拟之旅

大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。

以下是我的英语写了一个简短的总结,直接贴出来. 让我们知道我们在这参加Hackathon

That’s an exciting Hackathon for me and also China team, I think. We experienced the full process, and learned a lot about how to organize a nice Hackathon.   Meanwhile it is also a good team building activity.  Through this Hackathon, we worked closely, and more about each other. 

It took place in Microsoft’s office (Microsoft University floor). It has a big open area for coffee, break, and meal for 50-60 people,  and a huge training hall. 70 people registered the event, and eventually 40 showed up. 
This was a 24 hours Hackathon, the language for the Hackathon is English. ( Starting course, team presentations are all in English).

About 10 teams joined the competition. Our team name is Shen Xing Zhe(神行者), which means miracle walker, is the only team that doesn’t have the experience of Kinect programming. As Daniel said, one external developer joined our team.  Eventually 5 teams win prizes.  we are among it.  The reward for each member is an “Arch Touch wireless Mouse”.    
  

Our project is to develop a virtual roaming tool using the Kinect sensor within Naviswork. We thought Naviswork should have the good performance of updating its 3D viewer frequently. (The result shows it is. Naviswork’s view is very sensitive to the motion of captured by the Kinect sensor).  Xiaodong is a key contributor on the camera controlling in NW, he did a great job!

We designed the motions to control the Naviswork view’s camera (position, direction). Control the turn left or right by the two hands virtually holding a steering wheel, stretching two arms in right ahead means walking forward, collapsing arms means move backward. Marching on the spot means walking in the Naviswork model.  We even can control the walking speed by speed of the knee’s move frequency.  Finally didn’t show that in the presentation for it takes time to give an ideal factor to get an ideal walking speed in the model.   This motion judge function can be used for any of our 3D products, for example, Revit, Cloud Viewer.   (we will see how is the performance for Revit, Cloud Viewer)

One thought about the time: I think 24 hours is a good time.  During the 24 hours, I only slept for 3 hours.  1.5 hour before the presentation/judge, my head was kind of exhausted. If we will hold a 32 hours Hackathon, it is better to let the audience to have a longer sleep.

I was presenting my idea of my team project.

ADN中国队参加微软Kinect他赢得了全国比赛三等奖,我们的创意项目与团队Kinect于Naviswork虚拟之旅

 Working hard on the coding and researching.
ADN中国队参加微软Kinect他赢得了全国比赛三等奖,我们的创意项目与团队Kinect于Naviswork虚拟之旅

 Testing the connection of the Kinect with computer test program.
ADN中国队参加微软Kinect他赢得了全国比赛三等奖,我们的创意项目与团队Kinect于Naviswork虚拟之旅

Lunch Break and discussion on the solution. The right one is one of our team member from outside of Autodesk (where is Joe? I was taking the photo).
ADN中国队参加微软Kinect他赢得了全国比赛三等奖,我们的创意项目与团队Kinect于Naviswork虚拟之旅

We got some gifts like: nice glasses bottle(not the disposable bottle), snacks. In the purpose of letting more people know this Hackathon event. Additional watches for those who shared the event using Weibo or Weixin (similar cloud apps like  twitter)) and get good feedback from their friends/followers. ( Good idea of using the social media. For sure, We will also use the social media way  for our own Hackathon in Shanghai.)

Thank you Daniel, Zhong on the extensive research and programming for our Cloud viewer and motion builder. Your cloud, web programming expertise is very impressive, Good job!
Xianhua helped the miracle Walker team on the logistics, and also accommodated me and Xiaodong in this condo (very close to the Microsoft office), and also act as the Roaming Walkers for many times of test standing before the Kinect sensor!  
And Special thanks to Xiaodong for his excellent job on programming on the Naviswork side, and also his impressive suggestion, ideas for the team to make the virtual roaming in Naviswork true!

版权声明:本文博主原创文章。博客,未经同意不得转载。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/117067.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • JS数组定义及详解

    JS数组定义及详解JS数组定义及详解一、总结一句话总结:在js中,文本下标的数组元素,不计入数组长度,以文本下标形式添加到数组,实际是以属性形式添加到数组对象中的。二、JS数组定义及详解1、什么是数组数组就是

    2022年6月30日
    23
  • 微模块机房效果图制作|场景创建过程详细步骤[通俗易懂]

    微模块机房效果图制作|场景创建过程详细步骤[通俗易懂]三组机房效果图制作案例皆为原创,场景创建过程其实并不复杂。

    2022年6月2日
    43
  • sftp特定端口连接「建议收藏」

    sftp特定端口连接「建议收藏」默认走22端口如果需要修改端口号sftp-oPort=55288root@192.168.0.254使用-o选项来指定端口号.-oPort=远程端口号

    2022年9月14日
    3
  • SIMD and Avx2

    SIMD and Avx2SIMD一条指令可以执行多个数据group的计算和输出。对于SIMD相对应的SISD.intel SSE2 ,AVX2,AVX-512假设有一个任务是统计字符串中每一个字符出现的次数,我们可以用128bit的SISD指令进行统计。每8个bit代表一个字符,所以只需要两个SIMD指令(movemask、popcount)。详细测试:#include<stdio.h>#include<thread>#defineINC_TO1000000//o

    2022年5月7日
    31
  • ssm框架过时了吗_tomcat和maven的区别

    ssm框架过时了吗_tomcat和maven的区别日志如果一个数据库操作,出现了异常,我们需要排错,日志就是最好的助手曾经:sout,debug现在:日志工厂掌握STDOUT_LOGGINGLOG4Jlog4j什么是Log4j?我们可以控制日志信息输送的目的地是控制台我们也可以控制每一条日志的输出格式通过定义每一条日志信息的级别,我们能够更加细致地控制日志的生成过程通过一个配置文件来灵活地进行配置,而不需要修改应用的代码。分页减少数据量selsect * from user limit startIndex,pageS

    2022年8月8日
    11
  • 几种有难度的面试

    几种有难度的面试

    2022年3月4日
    29

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号