FastDeploy  latest
Fast & Easy to Deploy!
postprocessor.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 #pragma once
15 #include "fastdeploy/fastdeploy_model.h"
16 #include "fastdeploy/vision/common/processors/transform.h"
17 #include "fastdeploy/vision/common/result.h"
18 #include "fastdeploy/vision/utils/utils.h"
19 
20 namespace fastdeploy {
21 namespace vision {
22 namespace segmentation {
25 class FASTDEPLOY_DECL PaddleSegPostprocessor {
26  public:
31  explicit PaddleSegPostprocessor(const std::string& config_file);
32 
40  virtual bool Run(
41  const std::vector<FDTensor>& infer_results,
42  std::vector<SegmentationResult>* results,
43  const std::map<std::string, std::vector<std::array<int, 2>>>& imgs_info);
44 
47  bool GetApplySoftmax() const {
48  return apply_softmax_;
49  }
50 
52  void SetApplySoftmax(bool value) {
53  apply_softmax_ = value;
54  }
55 
57  bool GetStoreScoreMap() const {
58  return store_score_map_;
59  }
60 
62  void SetStoreScoreMap(bool value) {
63  store_score_map_ = value;
64  }
65 
66  private:
67  virtual bool ReadFromConfig(const std::string& config_file);
68 
69  virtual bool SliceOneResultFromBatchInferResults(
70  const FDTensor& infer_results,
71  FDTensor* infer_result,
72  const std::vector<int64_t>& infer_result_shape,
73  const int64_t& start_idx);
74 
75  virtual bool ProcessWithScoreResult(const FDTensor& infer_result,
76  const int64_t& out_num,
77  SegmentationResult* result);
78 
79  virtual bool ProcessWithLabelResult(const FDTensor& infer_result,
80  const int64_t& out_num,
81  SegmentationResult* result);
82 
83  bool is_with_softmax_ = false;
84 
85  bool is_with_argmax_ = true;
86 
87  bool apply_softmax_ = false;
88 
89  bool store_score_map_ = false;
90 
91  bool initialized_ = false;
92 };
93 
94 } // namespace segmentation
95 } // namespace vision
96 } // namespace fastdeploy
void SetApplySoftmax(bool value)
Set apply_softmax value, bool type required.
Definition: postprocessor.h:52
bool GetStoreScoreMap() const
Get store_score_map property of PaddleSeg model, default is false.
Definition: postprocessor.h:57
Segmentation result structure for all the segmentation models.
Definition: result.h:270
FDTensor object used to represend data matrix.
Definition: fd_tensor.h:31
void SetStoreScoreMap(bool value)
Set store_score_map value, bool type required.
Definition: postprocessor.h:62
Postprocessor object for PaddleSeg serials model.
Definition: postprocessor.h:25
bool GetApplySoftmax() const
Get apply_softmax property of PaddleSeg model, default is false.
Definition: postprocessor.h:47
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16