Hi
I am a beginner in leap motion interfacing. I am facing an issue with detecting tools using the example code from the leap motion web page (see the below code section). However, the program is able to detect hand gestures and position with out any issues. When I show some tools to the sensor, eg: a pen, I cant see any values displayed on the terminals.
Could anyone please help?
# Get tools
for tool in frame.tools:
print " Tool id: %d, position: %s, direction: %s" % (
tool.id, tool.tip_position, tool.direction)