Commit 4fd55360e7025431e334e895324f3854914697ad
1 parent
e6c2e195
Remove special casing of "Subject" in MatrixOutput::toString
Showing
1 changed file
with
0 additions
and
5 deletions
openbr/openbr_plugin.cpp
| @@ -1033,11 +1033,6 @@ MatrixOutput *MatrixOutput::make(const FileList &targetFiles, const FileList &qu | @@ -1033,11 +1033,6 @@ MatrixOutput *MatrixOutput::make(const FileList &targetFiles, const FileList &qu | ||
| 1033 | /* MatrixOutput - protected methods */ | 1033 | /* MatrixOutput - protected methods */ |
| 1034 | QString MatrixOutput::toString(int row, int column) const | 1034 | QString MatrixOutput::toString(int row, int column) const |
| 1035 | { | 1035 | { |
| 1036 | - if (targetFiles[column] == "Subject") { | ||
| 1037 | - const int label = data.at<float>(row,column); | ||
| 1038 | - // problem -cao | ||
| 1039 | - return QString::number(label); | ||
| 1040 | - } | ||
| 1041 | return QString::number(data.at<float>(row,column)); | 1036 | return QString::number(data.at<float>(row,column)); |
| 1042 | } | 1037 | } |
| 1043 | 1038 |