#ifndef SAMPLES_RISP4ML_ISP_STAGES_DEMOSAIC_H_ | |
#define SAMPLES_RISP4ML_ISP_STAGES_DEMOSAIC_H_ | |
#include "samples/risp4ml/common/image.h" | |
#ifdef __cplusplus | |
extern "C" { | |
#endif // __cplusplus | |
typedef struct { | |
bool enable; | |
} DemosaicParams; | |
void set_demosaic_params(DemosaicParams* params); | |
void demosaic_process(Image* input, Image* output); | |
#ifdef __cplusplus | |
} // extern "C" | |
#endif // __cplusplus | |
#endif // SAMPLES_RISP4ML_ISP_STAGES_DEMOSAIC_H_ |