You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
438 B

  1. #include "common.h"
  2. void histogramEqualise(float **prow, int nrow, int offset, int width);
  3. void linearEnhance(float **prow, int nrow, int offset, int width);
  4. int calibrate(float **prow, int nrow, int offset, int width) ;
  5. void denoise(float **prow, int nrow, int offset, int width);
  6. void flipImage(image_t *img, int width, int offset);
  7. void cropNoise(image_t *img);
  8. void temperature(options_t *opts, image_t *img, int offset, int width);