We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f61a18d commit 23462bbCopy full SHA for 23462bb
src/cpp/include/tasks/detection/ssd.h
@@ -34,7 +34,7 @@ class SSD {
34
confidence_threshold = utils::get_from_any_maps("confidence_threshold", config, {}, confidence_threshold);
35
input_shape.width = utils::get_from_any_maps("orig_width", config, {}, input_shape.width);
36
input_shape.height = utils::get_from_any_maps("orig_height", config, {}, input_shape.height);
37
- resize_mode = utils::get_from_any_maps("resize_type", user_config, model_config, resize_mode);
+ resize_mode = utils::get_from_any_maps("resize_type", config, {}, resize_mode);
38
}
39
std::map<std::string, ov::Tensor> preprocess(cv::Mat);
40
DetectionResult postprocess(InferenceResult& infResult);
0 commit comments