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

View File

@@ -205,7 +205,6 @@ void JFJochReaderImage::CalcROI(const ROIElement *input) {
std::unique_lock ul(roi_mutex);
if (!input) {
roi_description = "";
roi = {};
return;
}
@@ -230,7 +229,6 @@ void JFJochReaderImage::CalcROI(const ROIElement *input) {
}
}
}
roi_description = input->toString();
roi = ROIMessage{
.sum = roi_val,
@@ -280,7 +278,3 @@ std::shared_ptr<JFJochReaderDataset> JFJochReaderImage::CreateMutableDataset() {
int32_t JFJochReaderImage::GetAutoContrastValue() const {
return auto_foreground;
}
std::string JFJochReaderImage::GetROIDescription() const {
return roi_description;
}