blob: 4f15934c888745be27f447530049d7acb2aefd09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MORPHO_NR_EXT_H
#define MORPHO_NR_EXT_H
#include "morpho_noise_reduction.h"
/*
return == 0 : OK
return != 0 : NG (Please print the return value to check Error types)
*/
MORPHO_API(int)
LINK_mm_camera_morpho_noise_reduction(
unsigned char* yuvImage,
int width,
int height,
int y_level,
int c_level);
#endif //MORPHO_NR_EXT_H
|