| 354 | } |
| 355 | |
| 356 | List<Vec4B> jsonToVec4BList(Json const& v) { |
| 357 | List<Vec4B> result; |
| 358 | for (auto const& entry : v.iterateArray()) |
| 359 | result.append(jsonToVec4B(entry)); |
| 360 | return result; |
| 361 | } |
| 362 | |
| 363 | List<Color> jsonToColorList(Json const& v) { |
| 364 | List<Color> result; |
nothing calls this directly
no test coverage detected