“Function was not implemented” when trying to use ONI recording

烂漫一生 提交于 2019-12-08 10:43:50

问题


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!

What could be the problem?


回答1:


The problem were the two following lines:

    <!-- Set global mirror -->
    <GlobalMirror on="true"/>

After removing them, my program works fine.



来源:https://stackoverflow.com/questions/11512990/function-was-not-implemented-when-trying-to-use-oni-recording

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!