SpatialPyramidPoolLayer.h 1.8 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Q
qijun 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

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. */

#pragma once

#include "Layer.h"
#include "PoolProjection.h"
Q
qijun 已提交
19
#include "paddle/math/MathUtils.h"
Q
qijun 已提交
20
#include "paddle/utils/Logging.h"
Q
qijun 已提交
21 22

namespace paddle {
Q
qijun 已提交
23 24 25 26
/**
 * @brief A layer for spatial pyramid pooling on the input image by taking
 * the max, average, etc. within regions, so that the result vector of
 * different sized images are of the same size.
27
 *
Q
qijun 已提交
28
 * The config file api is spp_layer.
Q
qijun 已提交
29
 */
Q
qijun 已提交
30 31

class SpatialPyramidPoolLayer : public Layer {
W
Wu Yi 已提交
32
 protected:
Q
qijun 已提交
33 34 35 36 37 38 39 40 41 42
  size_t channels_;
  size_t imgSizeW_;
  size_t imgSizeH_;
  size_t pyramidHeight_;
  std::string poolType_;

  std::vector<std::unique_ptr<PoolProjection>> poolProjections_;
  std::vector<Argument> projOutput_;
  std::vector<std::pair<size_t, size_t>> projCol_;

W
Wu Yi 已提交
43
 public:
Q
qijun 已提交
44
  explicit SpatialPyramidPoolLayer(const LayerConfig& config) : Layer(config) {}
Q
qijun 已提交
45

Y
Yu Yang 已提交
46 47
  bool init(const LayerMap& layerMap,
            const ParameterMap& parameterMap) override;
Q
qijun 已提交
48

49 50 51 52 53
  ProjectionConfig getConfig(size_t sizeX_,
                             size_t sizeY_,
                             size_t channels,
                             size_t pyamidLevel_,
                             std::string& poolType_);
Q
qijun 已提交
54
  size_t getSize();
Q
qijun 已提交
55

Y
Yu Yang 已提交
56 57
  void forward(PassType passType) override;
  void backward(const UpdateCallback& callback = nullptr) override;
Q
qijun 已提交
58 59
};
}  // namespace paddle