0

我正在尝试oni使用 OpenNI 在我的应用程序中使用录音。这是我的xml文件:

<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>

一切看起来都不错,但是当我尝试运行我的程序时,我得到:

Open failed: Function was not implemented!

可能是什么问题呢?

4

1 回答 1

1

问题是以下两行:

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

删除它们后,我的程序运行良好。

于 2012-07-16T21:41:07.050 回答