How to check if Intel RealSense device is ready after hardware reset?

880 Views Asked by At

After calling

dev.hardware_reset();

How do I know if the device is ready before starting the pipeline?

2

There are 2 best solutions below

0
On

void rs2::context::set_devices_changed_callback (T callback) check doc

you can set a callback using set_devices_changed_callback to get notified when the device is connected or disconnected. Inside the callback you can use query_devices to know find the available devices. if the device is available you can start reading the frames.

0
On

My code to do that :

qDebug() << "[Stream] --- --- RealSense camera hardware reset...";
rs2::context ctx;
rs2::device dev = ctx.query_devices().front(); // Reset the first device
uint32_t nbDevices = ctx.query_devices().size();
qDebug() << "[Stream] --- --- RealSense camera hardware reset... nb devices :" << nbDevices;
dev.hardware_reset();
rs2::device_hub hub(ctx);
dev = hub.wait_for_device(); // waiting
qDebug() << "[Stream] --- --- RealSense camera hardware reset... OK";