Ryuichi Yamamoto

Results 154 comments of Ryuichi Yamamoto

pylibfreenect2 is just a wrapper around https://github.com/OpenKinect/libfreenect2, so you can ask such a feature request to it: https://github.com/OpenKinect/libfreenect2/issues. As far as I know there's no interface for recording audio stream...

What’s unclear with you?

That's incorrect. Please do make sure that `${LIBFREENECT2_INSTALL_PREFIX}include/libfreenect2/config.h` exists. Replace `/` to `\` if you use windows.

There is no way to do that for now, but it should definitely be possible. Will try to implement if I get a chance.

@gargoyle3333 I implemented logging utilities of libfreenect2. You can change logger level by creating a new logger: ``` py from pylibfreenect2 import createConsoleLogger, setGlobalLogger from pylibfreenect2 import LoggerLevel logger =...

It's possible but for now you cannot change depth limit since the python API doesn't expose getDepthPacketProcessor method. https://openkinect.github.io/libfreenect2/classlibfreenect2_1_1PacketPipeline.html You can try exposing the API from the python binding if...

You could look at the cython doc: https://cython.readthedocs.io/en/latest/

I am not sure what you mean by you cannot access raw depth data. Raw depth data is surely available. See https://github.com/r9y9/pylibfreenect2/blob/12c405e187f19fa77887d4ba16eb1241e75bb2d5/examples/multiframe_listener.py#L77 for example. Measuring distance for objects requires object...

getPointXYZ(implemented in https://github.com/r9y9/pylibfreenect2/pull/23) should work. Please note that you need to initialize and start your kinect2 device before calling getPointXYZ, since registration requires to retrieve camera parameters from kinect2. Another...

I suspect MLPG causes over-smoothing. I tried disabling MLPG but it actually did cause quality degradation. In particular, generated F0 became too flat. Maybe it would be worth trying to...