restorer.cxx 1.32 KB
Newer Older
limm's avatar
limm committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
// Copyright (c) OpenMMLab. All rights reserved.

#include "mmdeploy/restorer.hpp"

#include "opencv2/imgcodecs/imgcodecs.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "utils/argparse.h"

DEFINE_ARG_string(model, "Super-resolution model path");
DEFINE_ARG_string(image, "Input image path");
DEFINE_string(device, "cpu", R"(Device name, e.g. "cpu", "cuda")");
DEFINE_string(output, "restorer_output.jpg", "Output image path");

int main(int argc, char* argv[]) {
  if (!utils::ParseArguments(argc, argv)) {
    return -1;
  }

  cv::Mat img = cv::imread(ARGS_image);
  if (img.empty()) {
    fprintf(stderr, "failed to load image: %s\n", ARGS_image.c_str());
    return -1;
  }

  mmdeploy::Profiler profiler("/tmp/profile.bin");
  mmdeploy::Context context;
  context.Add(mmdeploy::Device(FLAGS_device));
  context.Add(profiler);

  // construct a restorer instance
  mmdeploy::Restorer restorer{mmdeploy::Model{ARGS_model}, context};

  // warmup
  for (int i = 0; i < 20; ++i) {
    restorer.Apply(img);
  }

  // apply restorer to the image
  mmdeploy::Restorer::Result result = restorer.Apply(img);

  // convert to BGR
  cv::Mat upsampled(result->height, result->width, CV_8UC3, result->data);
  cv::cvtColor(upsampled, upsampled, cv::COLOR_RGB2BGR);

  if (!FLAGS_output.empty()) {
    cv::imwrite(FLAGS_output, upsampled);
  }

  return 0;
}