Supported devices: Gemini 330 series cameras, such as Gemini G335
Function description: Demonstrate post-processing operations, display post-processed images, and exit the program using the ESC_KEY key
This example is based on the C++High Level API for demonstration
// Create a pipeline with default device
ob::Pipeline pipe;
// Get all stream profiles of the depth camera, including stream resolution, frame rate, and frame format
auto profiles = pipe.getStreamProfileList(OB_SENSOR_DEPTH);
std::shared_ptr<ob::VideoStreamProfile> depthProfile = nullptr;
try {
// Find the corresponding profile according to the specified format, first look for the y16 format
depthProfile = profiles->getVideoStreamProfile(640, OB_HEIGHT_ANY, OB_FORMAT_Y16, 30);
}
catch(ob::Error &e) {
// If the specified format is not found, search for the default profile to open the stream
depthProfile = std::const_pointer_cast<ob::StreamProfile>(profiles->getProfile(OB_PROFILE_DEFAULT))->as<ob::VideoStreamProfile>();
}
// By creating config to configure which streams to enable or disable for the pipeline, here the depth stream will be enabled
std::shared_ptr<ob::Config> config = std::make_shared<ob::Config>();
config->enableStream(depthProfile);
auto obFilterList = pipe.getDevice()->getSensor(OB_SENSOR_DEPTH)->getRecommendedFilters();
std::shared_ptr<ob::DecimationFilter> decFilter;
for(int i = 0; i < obFilterList->count(); i++) {
auto postProcessorfilter =obFilterList->getFilter(i);
std::cout << "Depth recommended post processor filter type: " << postProcessorfilter->type() << std::endl;
if(postProcessorfilter->is<ob::DecimationFilter>()) {
decFilter = postProcessorfilter->as<ob::DecimationFilter>();
}
}
pipe.start(config);