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