| 962 | } |
| 963 | QList<TemplateList> separated; |
| 964 | foreach (const TemplateList &list, data) { |
| 965 | foreach(const Template &t, list) { |
| 966 | separated.append(TemplateList()); |
| 967 | separated.last().append(t); |
| 968 | } |
| 969 | } |
| 970 | |
| 971 | for (int i=0; i < transforms.size(); i++) { |
| 972 | // OK we have a trainable transform, we need to get input data for it. |
nothing calls this directly
no test coverage detected