2012-07-16 28 views
0

我試圖在使用OpenNI的應用程序中使用oni錄製。這裏是我的xml文件:嘗試使用ONI錄製時「功能未實現」

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

可能是什麼問題呢?

回答

1

的問題是兩個以下行:

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

刪除它們之後,我的程序工作正常。