| 501 | QHash<QString, QStringList> imagePointIds; |
| 502 | |
| 503 | foreach(QString imageSerial, images) { |
| 504 | QList<ControlPoint *> imagePoints = m_controlGraph[m_vertexMap[imageSerial]].measures.keys(); |
| 505 | QStringList pointIds; |
| 506 | foreach(ControlPoint *point, imagePoints) { |
| 507 | if (!point->IsIgnored()) { |
| 508 | pointIds.append(point->GetId()); |
| 509 | } |
| 510 | } |
| 511 | pointIds.sort(); |
| 512 | imagePointIds.insert(imageSerial, pointIds); |
| 513 | } |
| 514 | |
| 515 | foreach(QString imageSerial, images) { |
| 516 | QStringList adjacentImages = getAdjacentImages(imageSerial); |
no test coverage detected