| 71 | } |
| 72 | |
| 73 | MultiLabelSegmentation::LabelValueVectorType ToLabelValues(py::iterable seq) |
| 74 | { |
| 75 | MultiLabelSegmentation::LabelValueVectorType result; |
| 76 | for (auto item : seq) |
| 77 | result.push_back(ToLabelValue(item)); |
| 78 | return result; |
| 79 | } |
| 80 | |
| 81 | LabelValueMappingVector ToLabelMapping(py::iterable seq) |
| 82 | { |
no test coverage detected