Apollo 10.0
自动驾驶开放平台
preprocess.cc
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2024 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 BevFormerResize(cv::Mat *img, cv::Mat *img_n, int width, int height) {
25 cv::resize(*img, *img_n, cv::Size(width, height));
26}
27
28void BevFormerCrop(cv::Mat *img, cv::Mat *img_n, int x, int y, int width,
29 int height) {
30 cv::Rect roi(x, y, width, height);
31 *img_n = (*img)(roi);
32}
33
34void BevFormerNormalize(const std::vector<float> &mean,
35 const std::vector<float> &std, float scale,
36 cv::Mat *img) {
37 ACHECK(std.size() == 3);
38 for (const auto std_value : std) {
39 ACHECK(std_value != 0.0);
40 }
41 if (scale) {
42 (*img).convertTo(*img, CV_32FC3, scale);
43 }
44 for (int h = 0; h < img->rows; ++h) {
45 for (int w = 0; w < img->cols; ++w) {
46 img->at<cv::Vec3f>(h, w)[0] =
47 (img->at<cv::Vec3f>(h, w)[0] - mean[0]) / std[0];
48 img->at<cv::Vec3f>(h, w)[1] =
49 (img->at<cv::Vec3f>(h, w)[1] - mean[1]) / std[1];
50 img->at<cv::Vec3f>(h, w)[2] =
51 (img->at<cv::Vec3f>(h, w)[2] - mean[2]) / std[2];
52 }
53 }
54}
55
56} // namespace camera
57} // namespace perception
58} // namespace apollo
#define ACHECK(cond)
Definition log.h:80
void BevFormerCrop(cv::Mat *img, cv::Mat *img_n, int x, int y, int width, int height)
Image crop function
Definition preprocess.cc:28
void BevFormerResize(cv::Mat *img, cv::Mat *img_n, int width, int height)
Image resize function
Definition preprocess.cc:24
void BevFormerNormalize(const std::vector< float > &mean, const std::vector< float > &std, float scale, cv::Mat *img)
Image normalize function
Definition preprocess.cc:34
class register implement
Definition arena_queue.h:37
Definition future.h:29