| 736 | } |
| 737 | |
| 738 | void resize_linear_8u(const Mat8u& src, Mat8u& dst) { |
| 739 | return resize_linear_8u_neon(src, dst); |
| 740 | } |
| 741 | |
| 742 | const int INTER_RESIZE_COEF_BITS = 11; |
| 743 | const int INTER_RESIZE_COEF_SCALE = 1 << INTER_RESIZE_COEF_BITS; |
no test coverage detected