Merge pull request #19520 from WeiChungChang:refine

pull/19525/head
Alexander Alekhin 4 years ago
commit cceec84139
  1. 4
      modules/dnn/src/layers/proposal_layer.cpp

@ -54,11 +54,11 @@ public:
for (int i = 0; i < ratios.size(); ++i) for (int i = 0; i < ratios.size(); ++i)
{ {
float ratio = ratios.get<float>(i); float ratio = ratios.get<float>(i);
float width = std::floor(baseSize / sqrt(ratio) + 0.5f);
float height = std::floor(width * ratio + 0.5f);
for (int j = 0; j < scales.size(); ++j) for (int j = 0; j < scales.size(); ++j)
{ {
float scale = scales.get<float>(j); float scale = scales.get<float>(j);
float width = std::floor(baseSize / sqrt(ratio) + 0.5f);
float height = std::floor(width * ratio + 0.5f);
widths.push_back(scale * width); widths.push_back(scale * width);
heights.push_back(scale * height); heights.push_back(scale * height);
} }

Loading…
Cancel
Save