我有一個oni文件,其中深度和rgb圖像未對齊。我讀過其他問題,在這種情況下,使用GetAlternativeViewPointCap()是有用的。但是這不起作用。對齊oni文件的深度和rgb圖像
我嘗試下面的代碼:
if (depth.IsCapabilitySupported(XN_CAPABILITY_ALTERNATIVE_VIEW_POINT)) { depth.GetAlternativeViewPointCap().SetViewPoint(image); }
在我試過的XML文件(幾次嘗試之一)
....
<Recording file="file.oni" /> <Node type="Depth" > <Query> <Capabilities> <Capability>Alternative View</Capability> </Capabilities> </Query> <Configuration> </Configuration> </Node>
....
是有可能使用GetAlternativeViewPointCap也用於已錄製的文件? 如何配置xml文件?
基於我添加的功能,我得到錯誤:打開失敗:節點被鎖定以進行更改!
有什麼想法? Tks!