kinect

We’ve been playing with Kinect for Windows since it launched over a year ago in Beta. There’s a few things we’d really like to see that we think would make it that much better. Here’s our top 10.

1. Make the Kinect device more mountable. 70

At the moment it’s really tough to do anything other than sit the Kinect on a table or bench. There’s no tripod mount thread or mountable plate template in the base of the Kinect. We’d really like to see the standard tripod screw thread added to the base. So far to work around this we’ve had to do is:

Buy the wall mount kit (around $25 AUS) 71kinect-wall-mount-xbox-360

...

Read More »

60

Technology Takes You Anywhere (TTYA) -  an event aimed at getting schoolgirls interested in IT was back again this year. This is the 4th year we’ve been involved with the event. This year the location moved to QUT Kelvin Grove and we wanted to show the girls how much fun the Kinect can be.

61

They loved seeing themselves just in the colour camera.

62

Had no shortage of volunteers to see their skeleton.

Had...

Read More »

50

Today was the exciting day for everyone. Finding out who will win the Imagine Cup for 2012. Just after lunch they took all the contestants out to get a group photo at Darling Harbour. Then one of my favourite parts of the week – the showcase. I get to walk around and see all the solutions and have a chat with the teams. It was packed in here this year with lots of media – which is awesome for the teams.

Then we’re all ushered into the big room for the finalists announcements.

55

The teams are all pumped ready to hear who the winners are.

54

There’s lots of dancing, cheering and waving of flags.

...

Read More »

44

Today was the big day for the top 6 teams. Their final presentation to the panel of judges. It was an interesting morning watching all the cool solutions:

Taiwan – had created a device + software to monitor activity levels and sleep patterns to assist wearers to lose weight. One of the team told his story growing up as a fat kid and how it had effected his life and his journey to change.

Ukraine – have created a glove + software that allows the deaf to use sign language and then the glove + software processes the signs and translates to spoken words using text to speech to allow them to communicate with ordinary people.

Japan – had a very energetic presentation showing off their smart led lighting solution which would dim lights in parts of rooms that are well lit to save extra power.

New Zealand – had created a phone app + online software to allow the blind to take photos of items and get information back about colour / text etc from OCR, family/friends, crowdsourcing or other services to help them with their daily activities.

Portugal – created a kinect-enabled shopping cart to follow shoppers around the supermarket to allow the disabled to more easily go shopping.

Greece – created a kinect software suite to assist Alzheimer patients fight the progression of the disease through exercise and activities design to help them retain memories.

45

...

Read More »

40

Today was another big day for the competitors and judges. Round 2 meant seeing 3 teams twice in the same day. First up was the normal presentation round where students pitched their solution to a  team of 6 judges. The afternoon was a new judging item added this year where the students spent 15 minutes presenting/demoing their solution at their showcase booth to the same set of judges and then had 15 mins of questions from the judges.

I really liked this addition as you get to see a lot more detail and spend more time with the students. I think the environment made them a bit more relaxed with us standing around asking questions rather than looking very authoritative behind a desk. All 3 projects I saw today were really awesome, but unfortunately none of them made it to the top 6.

Looking forward to seeing the top 6 present tomorrow: Taiwan, Ukraine, Japan, New Zealand, Portugal and Greece. Good luck guys!

 

Technorati Tags:

30

Today was fairly massive. Started at 8am and finished about 10:45 pm. Judged 6 teams today. There were lot of nerve but also lots of excitement and passion about their solutions.

Tonight they announced the 20 teams progressing to round 2:

Japan, Romania, Singapore, Greece, Ireland, China, Jordan, Qatar, Slovenia, Germany, Egypt, Australia, Kazakhstan, Ukraine (one of the teams I judged today), Taiwan, New Zealand, Uganda, Portugal, Korea and Oman.

In true spirit of imagine a world where technology solves the toughest problems, Uganda was unable to make it to Australia, so they competed “virtually” through video conferencing. It’s great to see that technology has allowed them to progress to the next round.

34

Congrats to all the teams and good luck for tomorrow.

31

...

Read More »

20

Today was the opening ceremony day for Imagine Cup Australia. Registration opened and we were issued with our name tags and event guide for the week. We had  bunch of briefings on our duties as judges for the week.

21

We were lucky to be in the room where “the cup” is on show – it’s like the ashes of student software development and most of us had never been up close to it.

22

We spotted the engraving for Team Soak – the Australian...

Read More »

1

Today I headed to Sydney ready for the Imagine Cup 2012 World Wide finals. I was fortunate enough to be selected as a judge again this year. As I wandered around the local area it was cool to see the Imagine Cup flags flying along walking bridges and the front of the exhibition centre.

2

I had some spare time today so I headed out to Taronga Zoo to see the animals. I’m always blown away by the views the animals get of the city. The giraffes have a great backdrop of the cbd.

3

I hadn’t been to the zoo for at least 7 years and was really impressed at the improvements...

Read More »

In my PhoneGap project I want to grab some data to display on Bing Maps.  Originally I created myself a really neat rest formatted WCF service that return JSON, but after I spent a day pulling my hair out trying to deploy it in IIS I gave up and went for something uber simple. Over on my server I’ve created myself an ashx handler and configured the urlmappings etc. so it looks quite neat and returns a nice JSON data packet.

This is the way I decided to access it from JavaScript – seemed the simplest.

function callASHX(latitude, longitude) { var request = new XMLHttpRequest; request.open('GET', 'http://mysite.com/Items.aspx?latitude=' + latitude + '&longitude=' + longitude + '&buffer=500', false); request.send(); if (request.status === 200) { var result = JSON.parse(request.responseText); if (result == null || result.Items == null || result.Items.length == 0) { alert('No Items here'); } else { addItems(result,latitude, longitude); } } } .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { background-color: #f4f4f4; width: 100%; margin: 0em; } .csharpcode .lnum { color: #606060; }...

Read More »

I’ve been progressing a bit with my little IPhone PhoneGap Bing Maps app today. I’m at the stage where I can show my custom pushpins on the map within a polygon and centre the map on the polygon.

pins

The next ting I want to do is show the user how to drive to the pin nearest them. In my spatial database I have the latitude and longitude values for the items and I can use STDistance to find how far each item is from the user’s position. The problem here is that it give me the distance “as the crow flies” which in most cases it’s fine but if the item is on a parallel street sometimes I think it’s the closet item but would then end up driving past another item on my way around the block to reach it.

I could return my dataset ordered by the closest (as the bird flies distance).  Then I’m going to assume if I grab the 5 nearest items I’ve got a pretty damn good chance that one of those is in fact the closest to drive to. I’m going to use the Bing Maps Directions Module to plot the route for each one. I take the trip from my location to an item, then back, then to the next time and back as waypoints so I can process the data.

For the purpose of this example, I’m just grabbing the first 5 points that come back from my service as it doesn’t calculate the individual distances yet. Done like so:

First we create and load the directions module.

var directionsManager; function loadDirectionsModule()...

Read More »

Copyright © 2002-2013 Soul Solutions Pty Ltd. | Login