OpenCV with OpenNI on Android Device
问题 TL;DR In Android Studio using the Java version of OpenNI, the following line of code deletes OpenNI frame data and I don't know how to put processed data back into the same VideoFrameRef or how to process it with OpenCV: byte[] fb = frameBuffer.array(); where frameBuffer is of type ByteBuffer. Can somebody show me how to do so, or how to simply compile OpenCV with OpenNI support so I can do all the initialization etc in C++ before sending processed data back to Java to be displayed? Edit The