Files
openvino/inference-engine/samples/hello_reshape_ssd/main.cpp

174 lines
8.9 KiB
C++
Raw Normal View History

2020-02-11 22:48:49 +03:00
// Copyright (C) 2018-2020 Intel Corporation
2018-11-23 16:19:43 +03:00
// SPDX-License-Identifier: Apache-2.0
//
#include <vector>
#include <memory>
#include <string>
#include <inference_engine.hpp>
#include <samples/ocv_common.hpp>
2018-11-23 16:19:43 +03:00
2019-08-09 19:02:42 +03:00
#include "reshape_ssd_extension.hpp"
2018-11-23 16:19:43 +03:00
using namespace InferenceEngine;
int main(int argc, char* argv[]) {
try {
// ------------------------------ Parsing and validation of input args ---------------------------------
if (argc != 5) {
2019-08-09 19:02:42 +03:00
std::cout << "Usage : ./hello_reshape_ssd <path_to_model> <path_to_image> <device> <batch>"
2018-11-23 16:19:43 +03:00
<< std::endl;
return EXIT_FAILURE;
}
const std::string input_model{argv[1]};
const std::string input_image_path{argv[2]};
const std::string device_name{argv[3]};
const size_t batch_size{std::stoul(argv[4])};
// -----------------------------------------------------------------------------------------------------
2019-08-09 19:02:42 +03:00
// --------------------------- 1. Load inference engine -------------------------------------
Core ie;
2020-02-11 22:48:49 +03:00
IExtensionPtr inPlaceExtension;
2019-08-09 19:02:42 +03:00
if (device_name.find("CPU") != std::string::npos) {
2018-11-23 16:19:43 +03:00
inPlaceExtension = std::make_shared<InPlaceExtension>();
// register sample's custom kernel (CustomReLU)
2019-08-09 19:02:42 +03:00
ie.AddExtension(inPlaceExtension, "CPU");
2018-11-23 16:19:43 +03:00
}
// -----------------------------------------------------------------------------------------------------
// --------------------------- 2. Read IR Generated by ModelOptimizer (.xml and .bin files) ------------
2020-02-11 22:48:49 +03:00
CNNNetwork network = ie.ReadNetwork(input_model);
2018-11-23 16:19:43 +03:00
OutputsDataMap outputs_info(network.getOutputsInfo());
InputsDataMap inputs_info(network.getInputsInfo());
if (inputs_info.size() != 1 && outputs_info.size() != 1)
throw std::logic_error("Sample supports clean SSD network with one input and one output");
// --------------------------- Resize network to match image sizes and given batch----------------------
2019-08-09 19:02:42 +03:00
if (device_name.find("CPU") != std::string::npos) {
2018-11-23 16:19:43 +03:00
// register sample's custom shape inference (CustomReLU)
network.AddExtension(inPlaceExtension);
}
auto input_shapes = network.getInputShapes();
std::string input_name;
SizeVector input_shape;
std::tie(input_name, input_shape) = *input_shapes.begin();
cv::Mat image = cv::imread(input_image_path);
input_shape[0] = batch_size;
input_shape[2] = image.rows;
input_shape[3] = image.cols;
input_shapes[input_name] = input_shape;
std::cout << "Resizing network to the image size = [" << image.rows << "x" << image.cols << "] "
<< "with batch = " << batch_size << std::endl;
network.reshape(input_shapes);
// -----------------------------------------------------------------------------------------------------
// --------------------------- 3. Configure input & output ---------------------------------------------
// --------------------------- Prepare input blobs -----------------------------------------------------
InputInfo::Ptr input_info;
std::tie(input_name, input_info) = *inputs_info.begin();
input_info->setLayout(Layout::NCHW);
input_info->setPrecision(Precision::U8);
// --------------------------- Prepare output blobs ----------------------------------------------------
DataPtr output_info;
std::string output_name;
std::tie(output_name, output_info) = *outputs_info.begin();
2019-08-09 19:02:42 +03:00
if (output_info->getCreatorLayer().lock()->type != "DetectionOutput")
2018-11-23 16:19:43 +03:00
throw std::logic_error("Can't find a DetectionOutput layer in the topology");
const SizeVector output_shape = output_info->getTensorDesc().getDims();
const int max_proposal_count = output_shape[2];
const int object_size = output_shape[3];
if (object_size != 7) {
throw std::logic_error("Output item should have 7 as a last dimension");
}
if (output_shape.size() != 4) {
throw std::logic_error("Incorrect output dimensions for SSD model");
}
if (output_info == nullptr) {
THROW_IE_EXCEPTION << "[SAMPLES] internal error - output information is empty";
2018-11-23 16:19:43 +03:00
}
output_info->setPrecision(Precision::FP32);
auto dumpVec = [](const SizeVector& vec) -> std::string {
if (vec.empty()) return "[]";
std::stringstream oss;
oss << "[" << vec[0];
for (size_t i = 1; i < vec.size(); i++) oss << "," << vec[i];
oss << "]";
return oss.str();
};
std::cout << "Resulting input shape = " << dumpVec(input_shape) << std::endl;
std::cout << "Resulting output shape = " << dumpVec(output_shape) << std::endl;
// -----------------------------------------------------------------------------------------------------
2019-08-09 19:02:42 +03:00
// --------------------------- 4. Loading model to the device ------------------------------------------
ExecutableNetwork executable_network = ie.LoadNetwork(network, device_name);
2018-11-23 16:19:43 +03:00
// -----------------------------------------------------------------------------------------------------
// --------------------------- 5. Create infer request -------------------------------------------------
InferRequest infer_request = executable_network.CreateInferRequest();
// -----------------------------------------------------------------------------------------------------
// --------------------------- 6. Prepare input --------------------------------------------------------
Blob::Ptr input = infer_request.GetBlob(input_name);
2019-04-12 18:25:53 +03:00
for (size_t b = 0; b < batch_size; b++) {
2018-11-23 16:19:43 +03:00
matU8ToBlob<uint8_t>(image, input, b);
}
// -----------------------------------------------------------------------------------------------------
// --------------------------- 7. Do inference --------------------------------------------------------
infer_request.Infer();
// -----------------------------------------------------------------------------------------------------
// --------------------------- 8. Process output ------------------------------------------------------
Blob::Ptr output = infer_request.GetBlob(output_name);
2020-02-11 22:48:49 +03:00
MemoryBlob::CPtr moutput = as<MemoryBlob>(output);
if (!moutput) {
throw std::logic_error("We expect output to be inherited from MemoryBlob, "
"but by fact we were not able to cast output to MemoryBlob");
}
// locked memory holder should be alive all time while access to its buffer happens
auto moutputHolder = moutput->rmap();
const float *detection = moutputHolder.as<const float *>();
2018-11-23 16:19:43 +03:00
/* Each detection has image_id that denotes processed image */
for (int cur_proposal = 0; cur_proposal < max_proposal_count; cur_proposal++) {
float image_id = detection[cur_proposal * object_size + 0];
float label = detection[cur_proposal * object_size + 1];
float confidence = detection[cur_proposal * object_size + 2];
2019-08-09 19:02:42 +03:00
/* CPU and GPU devices have difference in DetectionOutput layer, so we need both checks */
2018-11-23 16:19:43 +03:00
if (image_id < 0 || confidence == 0) {
continue;
}
float xmin = detection[cur_proposal * object_size + 3] * image.cols;
float ymin = detection[cur_proposal * object_size + 4] * image.rows;
float xmax = detection[cur_proposal * object_size + 5] * image.cols;
float ymax = detection[cur_proposal * object_size + 6] * image.rows;
if (confidence > 0.5) {
/** Drawing only objects with >50% probability **/
std::ostringstream conf;
conf << ":" << std::fixed << std::setprecision(3) << confidence;
cv::rectangle(image, cv::Point2f(xmin, ymin), cv::Point2f(xmax, ymax), cv::Scalar(0, 0, 255));
std::cout << "[" << cur_proposal << "," << label << "] element, prob = " << confidence <<
", bbox = (" << xmin << "," << ymin << ")-(" << xmax << "," << ymax << ")" << ", batch id = "
<< image_id << std::endl;
}
}
2019-08-09 19:02:42 +03:00
cv::imwrite("hello_reshape_ssd_output.jpg", image);
std::cout << "The resulting image was saved in the file: hello_reshape_ssd_output.jpg" << std::endl;
2018-11-23 16:19:43 +03:00
// -----------------------------------------------------------------------------------------------------
} catch (const std::exception& ex) {
std::cerr << ex.what() << std::endl;
return EXIT_FAILURE;
}
2019-08-09 19:02:42 +03:00
std::cout << std::endl << "This sample is an API example, for any performance measurements "
"please use the dedicated benchmark_app tool" << std::endl;
2018-11-23 16:19:43 +03:00
return EXIT_SUCCESS;
}