ROIElement: Remove toString()
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user