mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-15 21:20:53 +08:00

* cpp example run success * add landmarks * fix reviewed problem * add pybind * add readme in examples * fix reviewed problem * new file: tests/models/test_centerface.py * fix reviewed problem 230202
80 lines
2.6 KiB
C++
80 lines
2.6 KiB
C++
// Copyright (c) 2022 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 "fastdeploy/vision/facedet/contrib/centerface/preprocessor.h"
|
|
#include "fastdeploy/function/concat.h"
|
|
#include "fastdeploy/vision/common/processors/mat.h"
|
|
|
|
namespace fastdeploy {
|
|
|
|
namespace vision {
|
|
|
|
namespace facedet {
|
|
|
|
CenterFacePreprocessor::CenterFacePreprocessor() {
|
|
size_ = {640, 640};
|
|
}
|
|
|
|
bool CenterFacePreprocessor::Run(std::vector<FDMat>* images, std::vector<FDTensor>* outputs,
|
|
std::vector<std::map<std::string, std::array<float, 2>>>* ims_info) {
|
|
if (images->size() == 0) {
|
|
FDERROR << "The size of input images should be greater than 0." << std::endl;
|
|
return false;
|
|
}
|
|
ims_info->resize(images->size());
|
|
outputs->resize(1);
|
|
std::vector<FDTensor> tensors(images->size());
|
|
for (size_t i = 0; i < images->size(); i++) {
|
|
if (!Preprocess(&(*images)[i], &tensors[i], &(*ims_info)[i])) {
|
|
FDERROR << "Failed to preprocess input image." << std::endl;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (tensors.size() == 1) {
|
|
(*outputs)[0] = std::move(tensors[0]);
|
|
} else {
|
|
function::Concat(tensors, &((*outputs)[0]), 0);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool CenterFacePreprocessor::Preprocess(FDMat* mat, FDTensor* output,
|
|
std::map<std::string, std::array<float, 2>>* im_info){
|
|
// Record the shape of image and the shape of preprocessed image
|
|
(*im_info)["input_shape"] = {static_cast<float>(mat->Height()),
|
|
static_cast<float>(mat->Width())};
|
|
|
|
// centerface's preprocess steps
|
|
// 1. Resize
|
|
// 2. ConvertAndPermute
|
|
Resize::Run(mat, size_[0], size_[1]);
|
|
std::vector<float> alpha = {1.0f, 1.0f, 1.0f};
|
|
std::vector<float> beta = {0.0f, 0.0f, 0.0f};
|
|
ConvertAndPermute::Run(mat, alpha, beta,true);
|
|
|
|
// Record output shape of preprocessed image
|
|
(*im_info)["output_shape"] = {static_cast<float>(mat->Height()),
|
|
static_cast<float>(mat->Width())};
|
|
|
|
mat->ShareWithTensor(output);
|
|
output->ExpandDim(0);
|
|
return true;
|
|
}
|
|
|
|
} // namespace facedet
|
|
|
|
} // namespace vision
|
|
|
|
} // namespacefastdeploy
|