Skip to content

Instantly share code, notes, and snippets.

@seancron
Created December 28, 2010 06:08
Show Gist options
  • Save seancron/756944 to your computer and use it in GitHub Desktop.
Save seancron/756944 to your computer and use it in GitHub Desktop.
kinect depth range filter
#My implementation:
for i in xrange(0, 480, 3):
for j in xrange(0, 640, 3):
if depth[i,j] > 900:
final[i,j] = depth[i,j]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment