detector.cpp 3.9 KB
Newer Older
S
syyxsxx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//   Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

S
syyxsxx 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
#include <glog/logging.h>
#include <omp.h>

#include <algorithm>
#include <chrono>  // NOLINT
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include <utility>

#include "include/paddlex/paddlex.h"
#include "include/paddlex/visualize.h"

using namespace std::chrono;  // NOLINT

DEFINE_string(model_dir, "", "Path of openvino model xml file");
DEFINE_string(cfg_dir, "", "Path of PaddleX model yaml file");
DEFINE_string(image, "", "Path of test image file");
DEFINE_string(image_list, "", "Path of test image list file");
DEFINE_string(device, "CPU", "Device name");
DEFINE_string(save_dir, "", "Path to save visualized image");
DEFINE_int32(batch_size, 1, "Batch size of infering");
DEFINE_double(threshold,
              0.5,
              "The minimum scores of target boxes which are shown");

int main(int argc, char** argv) {
  google::ParseCommandLineFlags(&argc, &argv, true);
  if (FLAGS_model_dir == "") {
    std::cerr << "--model_dir need to be defined" << std::endl;
    return -1;
  }
  if (FLAGS_cfg_dir == "") {
    std::cerr << "--cfg_dir need to be defined" << std::endl;
    return -1;
  }
  if (FLAGS_image == "" & FLAGS_image_list == "") {
    std::cerr << "--image or --image_list need to be defined" << std::endl;
    return -1;
  }

  //
S
syyxsxx 已提交
58
  PaddleX::Model model;
S
syyxsxx 已提交
59 60 61 62 63 64 65
  model.Init(FLAGS_model_dir, FLAGS_cfg_dir, FLAGS_device);

  int imgs = 1;
  auto colormap = PaddleX::GenerateColorMap(model.labels.size());
  // 进行预测
  if (FLAGS_image_list != "") {
    std::ifstream inf(FLAGS_image_list);
S
syyxsxx 已提交
66
    if (!inf) {
S
syyxsxx 已提交
67 68 69 70 71 72 73 74
      std::cerr << "Fail to open file " << FLAGS_image_list << std::endl;
      return -1;
    }
    std::string image_path;
    while (getline(inf, image_path)) {
      PaddleX::DetResult result;
      cv::Mat im = cv::imread(image_path, 1);
      model.predict(im, &result);
S
syyxsxx 已提交
75 76 77
      if (FLAGS_save_dir != "") {
        cv::Mat vis_img = PaddleX::Visualize(
          im, result, model.labels, colormap, FLAGS_threshold);
S
syyxsxx 已提交
78
        std::string save_path =
S
syyxsxx 已提交
79
          PaddleX::generate_save_path(FLAGS_save_dir, FLAGS_image);
S
syyxsxx 已提交
80 81 82 83
        cv::imwrite(save_path, vis_img);
        std::cout << "Visualized output saved as " << save_path << std::endl;
      }
    }
S
syyxsxx 已提交
84
  } else {
S
syyxsxx 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97
  PaddleX::DetResult result;
  cv::Mat im = cv::imread(FLAGS_image, 1);
  model.predict(im, &result);
  for (int i = 0; i < result.boxes.size(); ++i) {
      std::cout << "image file: " << FLAGS_image << std::endl;
      std::cout << ", predict label: " << result.boxes[i].category
                << ", label_id:" << result.boxes[i].category_id
                << ", score: " << result.boxes[i].score
                << ", box(xmin, ymin, w, h):(" << result.boxes[i].coordinate[0]
                << ", " << result.boxes[i].coordinate[1] << ", "
                << result.boxes[i].coordinate[2] << ", "
                << result.boxes[i].coordinate[3] << ")" << std::endl;
    }
S
syyxsxx 已提交
98
    if (FLAGS_save_dir != "") {
S
syyxsxx 已提交
99
    // 可视化
S
syyxsxx 已提交
100 101
      cv::Mat vis_img = PaddleX::Visualize(
        im, result, model.labels, colormap, FLAGS_threshold);
S
syyxsxx 已提交
102 103 104 105 106 107 108 109 110
      std::string save_path =
          PaddleX::generate_save_path(FLAGS_save_dir, FLAGS_image);
      cv::imwrite(save_path, vis_img);
      result.clear();
      std::cout << "Visualized output saved as " << save_path << std::endl;
    }
  }
  return 0;
}