Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/samples/hal/slow_hal/impl.hpp
16339 views
1
#ifndef _SIMPLE_HPP_INCLUDED_
2
#define _SIMPLE_HPP_INCLUDED_
3
4
#include "opencv2/core/hal/interface.h"
5
6
int slow_and8u(const uchar* src1, size_t step1, const uchar* src2, size_t step2, uchar* dst, size_t step, int width, int height);
7
int slow_or8u(const uchar* src1, size_t step1, const uchar* src2, size_t step2, uchar* dst, size_t step, int width, int height);
8
int slow_xor8u(const uchar* src1, size_t step1, const uchar* src2, size_t step2, uchar* dst, size_t step, int width, int height);
9
int slow_not8u(const uchar* src1, size_t step1, uchar* dst, size_t step, int width, int height);
10
11
#undef cv_hal_and8u
12
#define cv_hal_and8u slow_and8u
13
#undef cv_hal_or8u
14
#define cv_hal_or8u slow_or8u
15
#undef cv_hal_xor8u
16
#define cv_hal_xor8u slow_xor8u
17
#undef cv_hal_not8u
18
#define cv_hal_not8u slow_not8u
19
20
#endif
21
22