-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOperations.h
55 lines (41 loc) · 1.78 KB
/
Operations.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef OPERATIONS_H
#define OPERATIONS_H
#include "Image.h"
#include "Pixels.h"
// permet la lecture des images à niveaux de gris
struct Image read_Image_file(char *path);
//permet d'ecrire une image dans un fichier
void write_Image_to_file( struct Image img , char *path );
//permet de faire la transposer de l'image à 90 degré
struct Image transpose_Image(struct Image);
/* Amelioration du contraste */
/* rappel herman :NB: min < max */
struct Image transformation_lineaire(struct Image );
struct Image transformation_saturation( struct Image ,int smax , int smin);
struct Image transformation_morceau(struct Image , int smax , int smin);
struct Image transformation_morceau_inverse(struct Image , int smax , int smin);
struct Image transformation_gamma(Image ,int c , float gamma);
struct Image egalisation_histogramme(Image);
int MAX_VALUE(int ,int );
struct Image addition(struct Image , struct Image);
struct Image soustration(struct Image img1, struct Image img2);
struct Image multiplication(struct Image img1, float ratio);
Image binarisation(struct Image img , int seuil);
struct Image negatif_image(struct Image);
struct Image luminanceImage(struct Image);
struct Image contrasteImage(struct Image img);
//https://chowdera.com/2022/03/202203010744372381.html
int* histo(Image m);
void histogramme(Image m);
void write_Histogramme_to_File(int*);
int findMinPixelValueInM(Image m);
int findMaxPixelValueInM(Image m);
struct Image interpolationPlusProcheVoisin(struct Image img , int x , int y);
struct Image bilineaire(Image );
struct Image and(const Image , const Image);
struct Image or(const Image ,const Image);
struct Image xor(const Image ,const Image);
struct Image not (const Image f);
//permet de sauvegarder l'histogramme sous forme d'image
void saveHistogramme(int* , char*);
#endif