changed C++ samples due to OpenVINO style (#9463)

I'll merge this. We need to talk with someone who know openvino build system better than we to "use cmake function ov_ncc_style_check to perform such check automatically". As far as I can see, currently it used only in one place, so it is not common approach for openvino components
This commit is contained in:
Maxim Gordeev
2021-12-29 15:36:33 +03:00
committed by GitHub
parent 010877d06c
commit 39a1b98799
8 changed files with 189 additions and 191 deletions

View File

@@ -37,7 +37,7 @@ using namespace ov::preprocess;
* @param string of image size in WIDTHxHEIGHT format
* @return parsed width and height
*/
std::pair<size_t, size_t> parseImageSize(const std::string& size_string) {
std::pair<size_t, size_t> parse_image_size(const std::string& size_string) {
auto delimiter_pos = size_string.find("x");
if (delimiter_pos == std::string::npos || delimiter_pos >= size_string.size() - 1 || delimiter_pos == 0) {
std::stringstream err;
@@ -81,7 +81,7 @@ int main(int argc, char* argv[]) {
const std::string image_path{argv[2]};
size_t input_width = 0;
size_t input_height = 0;
std::tie(input_width, input_height) = parseImageSize(argv[3]);
std::tie(input_width, input_height) = parse_image_size(argv[3]);
const std::string device_name{argv[4]};
// -----------------------------------------------------------------------------------------------------