-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
研究Intel D455 3D深度攝影機 #6
Labels
enhancement
New feature or request
Comments
using Intel.RealSense;
var pipe = new Pipeline();
pipe.Start();
while (true)
{
using (var frames = pipe.WaitForFrames())
{
using (var depth = frames.DepthFrame.DisposeWith(frames))
{
Console.WriteLine("The camera is pointing at an object " +
depth.GetDistance(depth.Width / 2, depth.Height / 2) + " meters away\t");
Console.SetCursorPosition(0, 0);
}
}
} System.Exception: 'Frame didn't arrive within 5000' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
librealsense/wrappers/csharp at development · IntelRealSense/librealsense
The text was updated successfully, but these errors were encountered: