segmenter.cpp 4.0 KB
Newer Older
C
Channingss 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//   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.

#include <glog/logging.h>
J
jack 已提交
16
#include <omp.h>
C
Channingss 已提交
17

J
jack 已提交
18
#include <algorithm>
J
jack 已提交
19
#include <chrono>  // NOLINT
C
Channingss 已提交
20 21 22 23
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
J
jack 已提交
24
#include <utility>
C
Channingss 已提交
25 26 27
#include "include/paddlex/paddlex.h"
#include "include/paddlex/visualize.h"

J
jack 已提交
28
using namespace std::chrono;  // NOLINT
J
jack 已提交
29

C
Channingss 已提交
30 31 32 33 34 35 36 37
DEFINE_string(model_dir, "", "Path of inference model");
DEFINE_bool(use_gpu, false, "Infering with GPU or CPU");
DEFINE_bool(use_trt, false, "Infering with TensorRT");
DEFINE_int32(gpu_id, 0, "GPU card id");
DEFINE_string(key, "", "key of encryption");
DEFINE_string(image, "", "Path of test image file");
DEFINE_string(image_list, "", "Path of test image list file");
DEFINE_string(save_dir, "output", "Path to save visualized image");
J
jack 已提交
38
DEFINE_int32(batch_size, 1, "Batch size of infering");
J
jack 已提交
39 40 41
DEFINE_int32(thread_num,
             omp_get_num_procs(),
             "Number of preprocessing threads");
C
Channingss 已提交
42 43

int main(int argc, char** argv) {
44
  // Parsing command-line
C
Channingss 已提交
45 46 47 48 49 50 51 52 53 54 55
  google::ParseCommandLineFlags(&argc, &argv, true);

  if (FLAGS_model_dir == "") {
    std::cerr << "--model_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;
  }

56
  // Load model
C
Channingss 已提交
57
  PaddleX::Model model;
J
jack 已提交
58 59 60 61
  model.Init(FLAGS_model_dir,
             FLAGS_use_gpu,
             FLAGS_use_trt,
             FLAGS_gpu_id,
62
             FLAGS_key);
J
jack 已提交
63
  int imgs = 1;
64
  // Predict
C
Channingss 已提交
65 66 67 68 69 70 71
  if (FLAGS_image_list != "") {
    std::ifstream inf(FLAGS_image_list);
    if (!inf) {
      std::cerr << "Fail to open file " << FLAGS_image_list << std::endl;
      return -1;
    }
    std::string image_path;
J
jack 已提交
72
    std::vector<std::string> image_paths;
C
Channingss 已提交
73
    while (getline(inf, image_path)) {
J
jack 已提交
74 75 76
      image_paths.push_back(image_path);
    }
    imgs = image_paths.size();
J
jack 已提交
77 78 79
    for (int i = 0; i < image_paths.size(); i += FLAGS_batch_size) {
      int im_vec_size =
          std::min(static_cast<int>(image_paths.size()), i + FLAGS_batch_size);
J
jack 已提交
80
      std::vector<cv::Mat> im_vec(im_vec_size - i);
J
jack 已提交
81 82
      std::vector<PaddleX::SegResult> results(im_vec_size - i,
                                              PaddleX::SegResult());
J
jack 已提交
83 84
      int thread_num = std::min(FLAGS_thread_num, im_vec_size - i);
      #pragma omp parallel for num_threads(thread_num)
J
jack 已提交
85
      for (int j = i; j < im_vec_size; ++j) {
J
jack 已提交
86 87
        im_vec[j - i] = std::move(cv::imread(image_paths[j], 1));
      }
J
jack 已提交
88
      model.predict(im_vec, &results, thread_num);
89
      // Visualize results
J
jack 已提交
90
      for (int j = 0; j < im_vec_size - i; ++j) {
J
jack 已提交
91
        cv::Mat vis_img =
J
jack 已提交
92
            PaddleX::Visualize(im_vec[j], results[j], model.labels);
J
jack 已提交
93 94 95 96 97
        std::string save_path =
            PaddleX::generate_save_path(FLAGS_save_dir, image_paths[i + j]);
        cv::imwrite(save_path, vis_img);
        std::cout << "Visualized output saved as " << save_path << std::endl;
      }
C
Channingss 已提交
98 99 100 101 102
    }
  } else {
    PaddleX::SegResult result;
    cv::Mat im = cv::imread(FLAGS_image, 1);
    model.predict(im, &result);
103
    // Visualize results
J
jack 已提交
104
    cv::Mat vis_img = PaddleX::Visualize(im, result, model.labels);
C
Channingss 已提交
105 106 107 108 109 110 111 112
    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;
}