| 472 | } |
| 473 | |
| 474 | void CheckSameNbChannels(const ImageBase& Img1, const ImageBase& Img2) |
| 475 | { |
| 476 | if (Img1.NbChannels() != Img2.NbChannels()) |
| 477 | throw cl::Error(CL_INVALID_VALUE, "Different number of channels used"); |
| 478 | } |
| 479 | |
| 480 | void CheckSimilarity(const ImageBase& Img1, const ImageBase& Img2) |
| 481 | { |
no test coverage detected