impl.hpp 802 B

1234567891011121314151617181920
  1. #ifndef _SIMPLE_HPP_INCLUDED_
  2. #define _SIMPLE_HPP_INCLUDED_
  3. #include "opencv2/core/hal/interface.h"
  4. int slow_and8u(const uchar* src1, size_t step1, const uchar* src2, size_t step2, uchar* dst, size_t step, int width, int height);
  5. int slow_or8u(const uchar* src1, size_t step1, const uchar* src2, size_t step2, uchar* dst, size_t step, int width, int height);
  6. int slow_xor8u(const uchar* src1, size_t step1, const uchar* src2, size_t step2, uchar* dst, size_t step, int width, int height);
  7. int slow_not8u(const uchar* src1, size_t step1, uchar* dst, size_t step, int width, int height);
  8. #undef cv_hal_and8u
  9. #define cv_hal_and8u slow_and8u
  10. #undef cv_hal_or8u
  11. #define cv_hal_or8u slow_or8u
  12. #undef cv_hal_xor8u
  13. #define cv_hal_xor8u slow_xor8u
  14. #undef cv_hal_not8u
  15. #define cv_hal_not8u slow_not8u
  16. #endif