I have a SR300,The 3Dcamera program HW settings correspond to what parameters in the SDK? Please see the uploaded picture.
It seems as though the 3DCamera program - accessed from the Camera Explorer application - analyzes camera data raw-streams and applies filters to them depending on the setting selected in the menu (for example, the background is only included in the image if 'Room' is selected, whilst selectring 'Hand' excludes the face)..
Parameters that you can use to analyze camera data include:
ProjectCameratoColor - ssign real-world coordinates to a screen image.
https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/projectcameratocolor_pxcprojection.html ProjectCameraToColor
ProjectCameraToDepth - assign real-world coordinates to the depth (distance) of what the camera is seeing.
https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/projectcameratodepth_pxcprojection.html ProjectCameraToDepth
MapColortoDepth - map the color coordinates of the screen image to depth (distance).
https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/mapcolortodepth_pxcprojection.html MapColorToDepth
链接已复制
It seems as though the 3DCamera program - accessed from the Camera Explorer application - analyzes camera data raw-streams and applies filters to them depending on the setting selected in the menu (for example, the background is only included in the image if 'Room' is selected, whilst selectring 'Hand' excludes the face)..
Parameters that you can use to analyze camera data include:
ProjectCameratoColor - ssign real-world coordinates to a screen image.
https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/projectcameratocolor_pxcprojection.html ProjectCameraToColor
ProjectCameraToDepth - assign real-world coordinates to the depth (distance) of what the camera is seeing.
https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/projectcameratodepth_pxcprojection.html ProjectCameraToDepth
MapColortoDepth - map the color coordinates of the screen image to depth (distance).
https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/mapcolortodepth_pxcprojection.html MapColorToDepth
To set which scan type you want, fill in https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?configuration_pxc3dscan.html PXCM3DScan.Configuration with all the options you need then use https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?setconfiguration_pxcscan.html SetConfiguration to apply it to your PXCM3DScan object.
