本文介绍了“功能未实现".尝试使用ONI录音时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用OpenNI在我的应用程序中使用oni
记录.这是我的xml
文件:
I'm trying to use an oni
recording in my application using OpenNI. Here is my xml
file:
<OpenNI>
<Licenses>
<!-- Add application-specific licenses here
<License vendor="vendor" key="key"/>
-->
</Licenses>
<Log writeToConsole="false" writeToFile="false">
<!-- 0 - Verbose, 1 - Info, 2 - Warning, 3 - Error (default) -->
<LogLevel value="3"/>
<Masks>
<Mask name="ALL" on="true"/>
</Masks>
<Dumps>
</Dumps>
</Log>
<ProductionNodes>
<Recording file="Recording.oni" />
<!-- Set global mirror -->
<GlobalMirror on="true"/>
</ProductionNodes>
</OpenNI>
一切看起来都不错,但是当我尝试运行程序时,我得到了:
Everything looks ok, but when I try to run my program, I get:
Open failed: Function was not implemented!
可能是什么问题?
推荐答案
问题是以下两行:
<!-- Set global mirror -->
<GlobalMirror on="true"/>
删除它们后,我的程序运行正常.
After removing them, my program works fine.
这篇关于“功能未实现".尝试使用ONI录音时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!