| #pragma once |
| |
| #ifndef igs_density_h |
| #define igs_density_h |
| |
| #ifndef IGS_DENSITY_EXPORT |
| #define IGS_DENSITY_EXPORT |
| #endif |
| |
| namespace igs |
| { |
| namespace density |
| { |
| IGS_DENSITY_EXPORT void change( |
| unsigned char *image_array |
| , |
| const int height, const int width, const int channels |
| , |
| const int bits |
| |
| , |
| const unsigned char *ref |
| , |
| const int ref_bits |
| , |
| const int ref_mode |
| |
| , |
| const double density = 1.0); |
| } |
| } |
| |
| #endif |