~paparazzi-uav/paparazzi/v5.0-manual

« back to all changes in this revision

Viewing changes to sw/ext/opencv_bebop/opencv/samples/hal/slow_hal/impl.hpp

  • Committer: Paparazzi buildbot
  • Date: 2016-05-18 15:00:29 UTC
  • Revision ID: felix.ruess+docbot@gmail.com-20160518150029-e8lgzi5kvb4p7un9
Manual import commit 4b8bbb730080dac23cf816b98908dacfabe2a8ec from v5.0 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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