| 73 | } |
| 74 | |
| 75 | point_count_t getTrueNegatives(int label) |
| 76 | { |
| 77 | return m_confusionMatrix.topRows(m_dim).sum() - |
| 78 | getTruePositives(label) - getFalsePositives(label) - |
| 79 | getFalseNegatives(label); |
| 80 | } |
| 81 | |
| 82 | double getIntersectionOverUnion(int label) |
| 83 | { |
no test coverage detected