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
This used to work with V1. I am getting the error message, "Filter@FrameProcessor: config schema is empty, doesn't have any config value."
Here is my code:
// Create a pipeline to open the depth stream after connecting the device
pipeline = ob_create_pipeline_with_device(device, &error);
if (error){
errorString = QString("Error creating pipeline with device: %1").arg(error->message);
ob_delete_error(error);
error = nullptr;
return;
}
// Create config to configure the resolution, frame rate, and format of the depth stream
ob_config *config = ob_create_config(&error);
if (error){
errorString = QString("Error creating configuration: %1").arg(error->message);
ob_delete_error(error);
error = nullptr;
return;
}
// Configure the depth stream
depthProfiles = ob_pipeline_get_stream_profile_list(pipeline, OB_SENSOR_DEPTH, &error);
if (error){
errorString = QString("Error getting stream profile list: %1").arg(error->message);
ob_delete_error(error);
error = nullptr;
return;
}
The text was updated successfully, but these errors were encountered:
My code works with the femto mega I but not the astra 2. Sent from my iPhoneOn May 12, 2025, at 5:28 PM, Gent Binaku ***@***.***> wrote:
GentBinaku left a comment (orbbec/OrbbecSDK_v2#56)
You need to run the executable in the same directory as the extension folder
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
As I wrote the above post, I realized that this issue might be mute as I can't actually use a profile to set the camera resolution. So my real issue is that I can't find an example of C code for asking a sensor what it's available resolutions are or how to set the resolution I want before I start acquiring video.
Uh oh!
There was an error while loading. Please reload this page.
This used to work with V1. I am getting the error message, "Filter@FrameProcessor: config schema is empty, doesn't have any config value."
Here is my code:
// Create a pipeline to open the depth stream after connecting the device
pipeline = ob_create_pipeline_with_device(device, &error);
if (error){
errorString = QString("Error creating pipeline with device: %1").arg(error->message);
ob_delete_error(error);
error = nullptr;
return;
}
The text was updated successfully, but these errors were encountered: