| 187 | } |
| 188 | |
| 189 | static void merge64s(const int64** src, int64* dst, int len, int cn ) |
| 190 | { |
| 191 | merge_(src, dst, len, cn); |
| 192 | } |
| 193 | |
| 194 | typedef void (*SplitFunc)(const uchar* src, uchar** dst, int len, int cn); |
| 195 | typedef void (*MergeFunc)(const uchar** src, uchar* dst, int len, int cn); |