- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I access the depth values of the raw stream in C++ as
if (sample->depth->AcquireAccess(PXCImage::ACCESS_READ, PXCImage::PIXEL_FORMAT_DEPTH, &depthData) >= PXC_STATUS_NO_ERROR){
//unsigned short depthValues[640 * 480];
memcpy(depthValues, depthData.planes[0], sizeof(unsigned short)* 640 * 480);
sample->depth->ReleaseAccess(&depthData);
}
Then I can use the 'depthValues' array to access individual depth value using
for(int i=0;i<LIMIT;i++)
DepthValues;
How do I access depth values in C#?
Please help. I am new to C#
コピーされたリンク
3 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
You can find C++/C#/java sample for this usage @https://software.intel.com/sites/landingpage/realsense/camera-sdk/2014gold/documentation/html/index.html?acquireaccess_pxcimage.html
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I am looking for this information too, your link is broken
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Link now goes to https://software.intel.com/sites/landingpage/realsense/camera-sdk/2014gold/documentation/html/index.html?acquireaccess_pxcimage.html pxcimage instead of audio.