- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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#
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am looking for this information too, your link is broken
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page