You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unable to retrieve Intrinsic information from the intrinsic class
Hello,
I am attempting to recreate the deproject method in the android wrapper. It appears that all the information necessary is available to me except the intrinsic information. While I am able to get the intrinsic class from the depth stream there is no way to extract that information as it is encapsulated in a way that makes it unreachable. It is inconsistent with its c++ equivalent because of this. What is in intention of this class and are getters able to be added to it so that we are able to make use of its data.
Thank you
Example:
// Getting the Frame
DepthFrame depth = orgSet.first(StreamType.DEPTH, StreamFormat.Z16).releaseWith(fr).as(Extension.DEPTH_FRAME);
...
Intrinsic intrinsic = depth.getProfile().getIntrinsic(); // I am able to get the intrinsic from the stream
intrisic.getPpx(); // This method does not exist, but would be helpful
The text was updated successfully, but these errors were encountered:
Unable to retrieve Intrinsic information from the intrinsic class
Hello,
I am attempting to recreate the deproject method in the android wrapper. It appears that all the information necessary is available to me except the intrinsic information. While I am able to get the intrinsic class from the depth stream there is no way to extract that information as it is encapsulated in a way that makes it unreachable. It is inconsistent with its c++ equivalent because of this. What is in intention of this class and are getters able to be added to it so that we are able to make use of its data.
Thank you
Example:
// Getting the Frame
DepthFrame depth = orgSet.first(StreamType.DEPTH, StreamFormat.Z16).releaseWith(fr).as(Extension.DEPTH_FRAME);
...
Intrinsic intrinsic = depth.getProfile().getIntrinsic(); // I am able to get the intrinsic from the stream
intrisic.getPpx(); // This method does not exist, but would be helpful
The text was updated successfully, but these errors were encountered: