paddle_image_preprocess.cc 6.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright (c) 2019 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 "lite/utils/cv/paddle_image_preprocess.h"
#include <math.h>
Z
zhupengyang 已提交
17
#include <string.h>
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#include <algorithm>
#include <climits>
#include "lite/utils/cv/image2tensor.h"
#include "lite/utils/cv/image_convert.h"
#include "lite/utils/cv/image_flip.h"
#include "lite/utils/cv/image_resize.h"
#include "lite/utils/cv/image_rotate.h"
namespace paddle {
namespace lite {
namespace utils {
namespace cv {
#define PI 3.14159265f
#define Degrees2Radians(degrees) ((degrees) * (SK_ScalarPI / 180))
#define Radians2Degrees(radians) ((radians) * (180 / SK_ScalarPI))
#define ScalarNearlyZero (1.0f / (1 << 12))
// init
34
__attribute__((visibility("default")))
35 36 37 38 39 40 41
ImagePreprocess::ImagePreprocess(ImageFormat srcFormat,
                                 ImageFormat dstFormat,
                                 TransParam param) {
  this->srcFormat_ = srcFormat;
  this->dstFormat_ = dstFormat;
  this->transParam_ = param;
}
42 43
__attribute__((visibility("default"))) void ImagePreprocess::imageConvert(
    const uint8_t* src, uint8_t* dst) {
44 45 46 47 48 49 50 51 52
  ImageConvert img_convert;
  img_convert.choose(src,
                     dst,
                     this->srcFormat_,
                     this->dstFormat_,
                     this->transParam_.iw,
                     this->transParam_.ih);
}

53 54 55 56 57
__attribute__((visibility("default"))) void ImagePreprocess::imageConvert(
    const uint8_t* src,
    uint8_t* dst,
    ImageFormat srcFormat,
    ImageFormat dstFormat) {
58 59 60 61 62 63 64 65 66
  ImageConvert img_convert;
  img_convert.choose(src,
                     dst,
                     srcFormat,
                     dstFormat,
                     this->transParam_.iw,
                     this->transParam_.ih);
}

67 68 69 70 71 72 73 74
__attribute__((visibility("default"))) void ImagePreprocess::imageResize(
    const uint8_t* src,
    uint8_t* dst,
    ImageFormat srcFormat,
    int srcw,
    int srch,
    int dstw,
    int dsth) {
H
HappyAngel 已提交
75 76
  ImageResize img_resize;
  img_resize.choose(src, dst, srcFormat, srcw, srch, dstw, dsth);
77 78
}

79 80
__attribute__((visibility("default"))) void ImagePreprocess::imageResize(
    const uint8_t* src, uint8_t* dst) {
81 82 83 84 85
  int srcw = this->transParam_.iw;
  int srch = this->transParam_.ih;
  int dstw = this->transParam_.ow;
  int dsth = this->transParam_.oh;
  auto srcFormat = this->dstFormat_;
H
HappyAngel 已提交
86 87
  ImageResize img_resize;
  img_resize.choose(src, dst, srcFormat, srcw, srch, dstw, dsth);
88 89
}

90 91 92 93 94 95 96
__attribute__((visibility("default"))) void ImagePreprocess::imageRotate(
    const uint8_t* src,
    uint8_t* dst,
    ImageFormat srcFormat,
    int srcw,
    int srch,
    float degree) {
H
HappyAngel 已提交
97 98
  ImageRotate img_rotate;
  img_rotate.choose(src, dst, srcFormat, srcw, srch, degree);
99 100
}

101 102
__attribute__((visibility("default"))) void ImagePreprocess::imageRotate(
    const uint8_t* src, uint8_t* dst) {
103 104 105 106
  auto srcw = this->transParam_.ow;
  auto srch = this->transParam_.oh;
  auto srcFormat = this->dstFormat_;
  auto degree = this->transParam_.rotate_param;
H
HappyAngel 已提交
107 108
  ImageRotate img_rotate;
  img_rotate.choose(src, dst, srcFormat, srcw, srch, degree);
109 110
}

111 112 113 114 115 116 117
__attribute__((visibility("default"))) void ImagePreprocess::imageFlip(
    const uint8_t* src,
    uint8_t* dst,
    ImageFormat srcFormat,
    int srcw,
    int srch,
    FlipParam flip_param) {
H
HappyAngel 已提交
118 119
  ImageFlip img_flip;
  img_flip.choose(src, dst, srcFormat, srcw, srch, flip_param);
120 121
}

122 123
__attribute__((visibility("default"))) void ImagePreprocess::imageFlip(
    const uint8_t* src, uint8_t* dst) {
124 125 126 127
  auto srcw = this->transParam_.ow;
  auto srch = this->transParam_.oh;
  auto srcFormat = this->dstFormat_;
  auto flip_param = this->transParam_.flip_param;
H
HappyAngel 已提交
128 129
  ImageFlip img_flip;
  img_flip.choose(src, dst, srcFormat, srcw, srch, flip_param);
130 131
}

132 133 134 135 136 137 138 139 140
__attribute__((visibility("default"))) void ImagePreprocess::image2Tensor(
    const uint8_t* src,
    Tensor* dstTensor,
    ImageFormat srcFormat,
    int srcw,
    int srch,
    LayoutType layout,
    float* means,
    float* scales) {
141 142 143 144 145
  Image2Tensor img2tensor;
  img2tensor.choose(
      src, dstTensor, srcFormat, layout, srcw, srch, means, scales);
}

146 147 148 149 150 151
__attribute__((visibility("default"))) void ImagePreprocess::image2Tensor(
    const uint8_t* src,
    Tensor* dstTensor,
    LayoutType layout,
    float* means,
    float* scales) {
152 153 154 155 156 157 158 159 160 161 162
  Image2Tensor img2tensor;
  img2tensor.choose(src,
                    dstTensor,
                    this->dstFormat_,
                    layout,
                    this->transParam_.ow,
                    this->transParam_.oh,
                    means,
                    scales);
}

H
HappyAngel 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
__attribute__((visibility("default"))) void ImagePreprocess::imageCrop(
    const uint8_t* src,
    uint8_t* dst,
    ImageFormat srcFormat,
    int srcw,
    int srch,
    int left_x,
    int left_y,
    int dstw,
    int dsth) {
  if (dsth > srch || dstw > srcw) {
    printf("output size(%d, %d) must be less than input size(%d, %d) \n",
           dsth,
           dstw,
           srch,
           srcw);
    return;
  }
  if (left_x > srcw || left_x < 0 || left_y > srch || left_y < 0) {
    printf("left point (%d, %d) should be valid \n", left_x, left_y);
    return;
  }
  if (left_x + dstw > srcw || left_y + dsth > srch) {
    printf("left point (%d, %d) and output size(%d, %d) should be valid \n",
           left_x,
           left_y,
           dstw,
           dsth);
    return;
  }
  int stride = 1;
  if (srcFormat == GRAY) {
    stride = 1;
  } else if (srcFormat == BGR || srcFormat == RGB) {
    stride = 3;
  } else if (srcFormat == BGRA || srcFormat == RGBA) {
    stride = 4;
  } else {
    printf("this srcFormat: %d does not support! \n", srcFormat);
    return;
  }
  if (dsth == srch && dstw == srcw) {
    memcpy(dst, src, sizeof(uint8_t) * srch * srcw * stride);
    return;
  }
  const uint8_t* in_ptr = src + left_x * srcw * stride + left_y * stride;
  uint8_t* out_ptr = dst;
  for (int row = 0; row < dsth; row++) {
    const uint8_t* din_ptr = in_ptr + row * srcw * stride;
    for (int col = 0; col < dstw * stride; col++) {
      *out_ptr++ = *din_ptr++;
    }
  }
}

218 219 220 221
}  // namespace cv
}  // namespace utils
}  // namespace lite
}  // namespace paddle