OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLIP_BOTH
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/cudaarithm/test/
test_core.cpp
245
enum {
FLIP_BOTH
= 0, FLIP_X = 1, FLIP_Y = -1};
246
CV_ENUM(FlipCode,
FLIP_BOTH
, FLIP_X, FLIP_Y)
247
#define ALL_FLIP_CODES testing::Values(FlipCode(
FLIP_BOTH
), FlipCode(FLIP_X), FlipCode(FLIP_Y))
/external/opencv3/modules/cudaarithm/perf/
perf_core.cpp
169
enum {
FLIP_BOTH
= 0, FLIP_X = 1, FLIP_Y = -1};
170
CV_ENUM(FlipCode,
FLIP_BOTH
, FLIP_X, FLIP_Y)
/external/opencv3/modules/core/perf/opencl/
perf_arithm.cpp
332
FLIP_BOTH
= 0, FLIP_ROWS, FLIP_COLS
335
CV_ENUM(FlipType,
FLIP_BOTH
, FLIP_ROWS, FLIP_COLS)
[
all
...]
/external/opencv3/modules/core/src/
copy.cpp
672
enum { FLIP_COLS = 1 << 0, FLIP_ROWS = 1 << 1,
FLIP_BOTH
= FLIP_ROWS | FLIP_COLS };
695
kernelName = "arithm_flip_rows_cols", flipType =
FLIP_BOTH
;
[
all
...]
Completed in 144 milliseconds