-
Notifications
You must be signed in to change notification settings - Fork 465
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Align fastdeploy prediction precision with yolov5 #11
Changes from 1 commit
8f59e0d
678a502
7c2b054
1bda14f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,8 @@ class FASTDEPLOY_DECL YOLOv5 : public FastDeployModel { | |
bool is_scale_up; | ||
// padding stride, for is_mini_pad | ||
int stride; | ||
// for offseting the boxes by classes when using NMS | ||
float max_wh; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 新增属性添加到 |
||
}; | ||
} // namespace ultralytics | ||
} // namespace vision | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// 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/utils/utils.h" | ||
|
||
namespace fastdeploy { | ||
namespace vision { | ||
namespace utils { | ||
|
||
void Merge(DetectionResult* result, size_t low, size_t mid, size_t high) { | ||
std::vector<std::array<float, 4>>& boxes = result->boxes; | ||
std::vector<float>& scores = result->scores; | ||
std::vector<int32_t>& label_ids = result->label_ids; | ||
std::vector<std::array<float, 4>> temp_boxes(boxes); | ||
std::vector<float> temp_scores(scores); | ||
std::vector<int32_t> temp_label_ids(label_ids); | ||
size_t i = low; | ||
size_t j = mid + 1; | ||
size_t k = i; | ||
for (; i <= mid && j <= high; k++) { | ||
if (temp_scores[i] >= temp_scores[j]) { | ||
scores[k] = temp_scores[i]; | ||
label_ids[k] = temp_label_ids[i]; | ||
boxes[k] = temp_boxes[i]; | ||
i++; | ||
} else { | ||
scores[k] = temp_scores[j]; | ||
label_ids[k] = temp_label_ids[j]; | ||
boxes[k] = temp_boxes[j]; | ||
j++; | ||
} | ||
} | ||
while (i <= mid) { | ||
scores[k] = temp_scores[i]; | ||
label_ids[k] = temp_label_ids[i]; | ||
boxes[k] = temp_boxes[i]; | ||
k++; | ||
i++; | ||
} | ||
while (j <= high) { | ||
scores[k] = temp_scores[j]; | ||
label_ids[k] = temp_label_ids[j]; | ||
boxes[k] = temp_boxes[j]; | ||
k++; | ||
j++; | ||
} | ||
} | ||
|
||
void MergeSort(DetectionResult* result, size_t low, size_t high) { | ||
if (low < high) { | ||
size_t mid = (high - low) / 2 + low; | ||
MergeSort(result, low, mid); | ||
MergeSort(result, mid + 1, high); | ||
Merge(result, low, mid, high); | ||
} | ||
} | ||
|
||
void Sort(DetectionResult* result) { | ||
size_t low = 0; | ||
size_t high = result->scores.size() - 1; | ||
MergeSort(result, low, high); | ||
} | ||
|
||
} // namespace utils | ||
} // namespace vision | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个代码并不是一个通用的排序,先改名为 |
||
} // namespace fastdeploy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
改成下面这种方式吧,避免同一个函数使用了多种不同的方式来获取宽高,引起疑惑