Oscar Thörn
Oscar Thörn
Hi! Any idea when this will be released to master?
I tried to generate the dockerfiles using the generation system you have setup but it seems nvidia has changed some things. I would be happy to do the work to...
Hi @MartyG-RealSense, no none of the presets are suitable
The problem is not with the json loading the problem is that `dev.as();` returns a nullptr. Could you clarify if #3277 is relevant to that? I have no problem setting...
Is there a way to get a hold of the developer team for librealsense to get the bug resolved? So far I have traced it to the serializable_device constructor setting...
My findings so far `dev.as();` calls `as()` in rs_device.hpp which tries to construct the correct type `advanced_mode`. The `advanced_mode` constructor calls the `serializable_device` constructor which in turn sets `_dev` (the...
Okey, so the main issue seems to be that in `VALIDATE_INTERFACE_NO_THROW_ADV` the statement `ext->extend_to(TypeToExtension::value, (void**)&p)` evaluates to false since `extend_to` in `record_device` does not implement `RS2_EXTENSION_SERIALIZABLE` as an extension it...
Just adding the serializable extension and making it extend to advanced seems to resolve the issue. Though I'm not sure if this is a valid solution. I tried extending it...
Don't have time to investigate that also but `dev.first().as()` also seems to return nullptr if you have enabled recording. Used to set region of interest for exposure with `.set_region_of_interest(roi);`
Hi @MartyG-RealSense Thanks, sounds good! For now I found a workaround after realizing that realsense-viewer does not seem to have the same problem. After looking at the code the it...