Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

image.h 438 B

123456789
  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);