从(视频)帧 Intel Realsense 获取 RGB 值时出现指针异常
Pointer Exception while getting RGB values from (video) frame Intel Realsense
我正在尝试使用 Realsense SDK 从帧中获取不同的 RGB 值。这适用于具有 RGB 的 3D 深度相机。根据 https://github.com/IntelRealSense/librealsense/issues/3364 我需要使用
int i = 100, j = 100; // fetch pixel 100,100
rs2::frame rgb = ...
auto ptr = (uint8_t*)rgb.get_data();
auto stride = rgb.as<rs2::video_frame>().stride();
cout << "R=" << ptr[3*(i * stride + j)];
cout << ", G=" << ptr[3*(i * stride + j) + 1];
cout << ", B=" << ptr[3*(i * stride + j) + 2];
在我的代码中,如果我想获取像素 (x,y)=1000,1000 的值,我会遇到指针异常。使用 (x,y)=100,100 它每次都有效...错误:Exception thrown: read access violation. ptr was 0x11103131EB9192A.
我将 enable_stream
设置为 cfg.enable_stream(RS2_STREAM_COLOR, WIDTH_COLOR_FRAME, HEIGTH_COLOR_FRAME, RS2_FORMAT_RGB8, 15);
,其中 .h 文件中的位置是:
#define WIDTH_COLOR_FRAME 1920
#define HEIGTH_COLOR_FRAME 1080
这是我的代码。可能跟RS2_FORMAT_RGB8
?
有关
frameset frames = pl.wait_for_frames();
frame color = frames.get_color_frame();
uint8_t* ptr = (uint8_t*)color.get_data();
int stride = color.as<video_frame>().get_stride_in_bytes();
int i = 1000, j = 1000; // fetch pixel 100,100
cout << "R=" << int(ptr[3 * (i * stride + j)]);
cout << ", G=" << int(ptr[3 * (i * stride + j) + 1]);
cout << ", B=" << int(ptr[3 * (i * stride + j) + 2]);
cout << endl;
提前致谢!
stride 以字节为单位(行的长度以字节为单位),不需要与 3 相乘。
cout << " R= " << int(ptr[i * stride + (3*j) ]);
cout << ", G= " << int(ptr[i * stride + (3*j) + 1]);
cout << ", B= " << int(ptr[i * stride + (3*j) + 2]);
我正在尝试使用 Realsense SDK 从帧中获取不同的 RGB 值。这适用于具有 RGB 的 3D 深度相机。根据 https://github.com/IntelRealSense/librealsense/issues/3364 我需要使用
int i = 100, j = 100; // fetch pixel 100,100
rs2::frame rgb = ...
auto ptr = (uint8_t*)rgb.get_data();
auto stride = rgb.as<rs2::video_frame>().stride();
cout << "R=" << ptr[3*(i * stride + j)];
cout << ", G=" << ptr[3*(i * stride + j) + 1];
cout << ", B=" << ptr[3*(i * stride + j) + 2];
在我的代码中,如果我想获取像素 (x,y)=1000,1000 的值,我会遇到指针异常。使用 (x,y)=100,100 它每次都有效...错误:Exception thrown: read access violation. ptr was 0x11103131EB9192A.
我将 enable_stream
设置为 cfg.enable_stream(RS2_STREAM_COLOR, WIDTH_COLOR_FRAME, HEIGTH_COLOR_FRAME, RS2_FORMAT_RGB8, 15);
,其中 .h 文件中的位置是:
#define WIDTH_COLOR_FRAME 1920
#define HEIGTH_COLOR_FRAME 1080
这是我的代码。可能跟RS2_FORMAT_RGB8
?
frameset frames = pl.wait_for_frames();
frame color = frames.get_color_frame();
uint8_t* ptr = (uint8_t*)color.get_data();
int stride = color.as<video_frame>().get_stride_in_bytes();
int i = 1000, j = 1000; // fetch pixel 100,100
cout << "R=" << int(ptr[3 * (i * stride + j)]);
cout << ", G=" << int(ptr[3 * (i * stride + j) + 1]);
cout << ", B=" << int(ptr[3 * (i * stride + j) + 2]);
cout << endl;
提前致谢!
stride 以字节为单位(行的长度以字节为单位),不需要与 3 相乘。
cout << " R= " << int(ptr[i * stride + (3*j) ]);
cout << ", G= " << int(ptr[i * stride + (3*j) + 1]);
cout << ", B= " << int(ptr[i * stride + (3*j) + 2]);