Lance Legel

Results 11 comments of Lance Legel

@sgowroji thanks for identifying that. Overall this is a great project. I'm afraid, though, the origin of those world coordinates is only relative to the hand itself. This is interesting...

PS just to follow up with a helpful workaround, and also potentially a good pointer for implementing the requested global hand 3D coordinates (relative to camera and/or body), consider: -...

Greetings, we came across this [from here](https://github.com/overlap-ai/words2map/issues/3), and I just noticed that while a lot of the build looks stable, support for Python 3.3 seems not to be working? At...

I just quickly tested it on Python 3.4, by creating a conda virtual environment with python 3.4 (using `conda create -n python3 python=3.4 anaconda`) and running the following: ``` git...

To elaborate further on the desired functionality, while also potentially troubleshooting my current problem, the (x,y,z) points that I have were generated with the following code (slightly modified for clarity):...

[_There is no spoon_](https://www.youtube.com/watch?v=uAXtO5dMqEI), _only world coordinates_, seems simple enough.

Thanks @bottler for your reply on this. I've tried plotting like you suggest, but still was not able to figure out how to align the different coordinate systems, so far....

Just following up on this (very exciting to discover this project), with the K-70 what is currently not supported? By the way, I noticed there is no mention of the...

Really cool @eldog! Indeed, the perspective-n-point mapping from @koegl is the right way to solve this, and the approximation he provides (for a camera matrix) should be good enough for...

Following [here](https://github.com/reduxjs/redux-toolkit/issues/1466) I suppressed the warning by adding into the rollup.config.js ``` export default { // ... onwarn(warning, warn) { if (warning.code === 'THIS_IS_UNDEFINED') return; warn(warning); }, // ... }...