| 363 | } |
| 364 | |
| 365 | VectorProgram::EProgramVersions VectorProgram::SelectVersion(const ImageBase& Img1) |
| 366 | { |
| 367 | if (!IsImageAligned(Img1)) |
| 368 | return Unaligned; // Use the slow unaligned version |
| 369 | |
| 370 | if (!IsImageFlush(Img1)) |
| 371 | return Standard; // Use standard version |
| 372 | |
| 373 | return Fast; // Use fast version |
| 374 | } |
| 375 | |
| 376 | VectorProgram::EProgramVersions VectorProgram::SelectVersion(const ImageBase& Img1, const ImageBase& Img2) |
| 377 | { |
nothing calls this directly
no outgoing calls
no test coverage detected