Apollo 10.0
自动驾驶开放平台
preprocess.cc
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2020 The Apollo Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *****************************************************************************/
17
18#include "cyber/common/log.h"
19
20namespace apollo {
21namespace perception {
22namespace camera {
23
24void Resize(cv::Mat *img, cv::Mat *img_n, int width, int height) {
25 cv::resize(*img, *img_n, cv::Size(width, height));
26}
27
28void Crop(cv::Mat *img, cv::Mat *img_n, int x, int y, int width, int height) {
29 cv::Rect roi(x, y, width, height);
30 *img_n = (*img)(roi);
31}
32
33void Normalize(const std::vector<float> &mean, const std::vector<float> &std,
34 float scale, cv::Mat *img) {
35 ACHECK(std.size() == 3);
36 for (const auto std_value : std) {
37 ACHECK(std_value != 0.0);
38 }
39 if (scale) {
40 (*img).convertTo(*img, CV_32FC3, scale);
41 }
42 for (int h = 0; h < img->rows; ++h) {
43 for (int w = 0; w < img->cols; ++w) {
44 img->at<cv::Vec3f>(h, w)[0] =
45 (img->at<cv::Vec3f>(h, w)[0] - mean[0]) / std[0];
46 img->at<cv::Vec3f>(h, w)[1] =
47 (img->at<cv::Vec3f>(h, w)[1] - mean[1]) / std[1];
48 img->at<cv::Vec3f>(h, w)[2] =
49 (img->at<cv::Vec3f>(h, w)[2] - mean[2]) / std[2];
50 }
51 }
52}
53
54} // namespace camera
55} // namespace perception
56} // namespace apollo
#define ACHECK(cond)
Definition log.h:80
void Resize(cv::Mat *img, cv::Mat *img_n, int width, int height)
Image resize function
Definition preprocess.cc:24
void Normalize(const std::vector< float > &mean, const std::vector< float > &std, float scale, cv::Mat *img)
Image normalize function
Definition preprocess.cc:33
void Crop(cv::Mat *img, cv::Mat *img_n, int x, int y, int width, int height)
Image crop function
Definition preprocess.cc:28
class register implement
Definition arena_queue.h:37
Definition future.h:29