ROIElement: Remove toString()

This commit is contained in:
2025-11-05 13:48:00 +01:00
parent 1e255a3ada
commit f049d558ec
9 changed files with 0 additions and 31 deletions
-5
View File
@@ -2,7 +2,6 @@
// SPDX-License-Identifier: GPL-3.0-only
#include "ROIBox.h"
#include "spdlog/fmt/bundled/format.h"
ROIBox::ROIBox(const std::string &in_name, int64_t in_x_min, int64_t in_x_max, int64_t in_y_min, int64_t in_y_max)
: ROIElement(in_name) {
@@ -67,7 +66,3 @@ ROIConfig ROIBox::ExportMetadata() const {
.box = ROIConfigBox{.xmin = x_min, .xmax = x_max, .ymin = y_min, .ymax = y_max}
};
}
std::string ROIBox::toString() const {
return fmt::format("Box x: {} - {} y: {} - {} pxl", x_min, x_max, y_min, y_max);
}