#ifndef BINARISATION
#define BINARISATION

#include <math.h>    
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


//Binarise un .ppm selon un seuil donné
void TablToBina(Piquesel** tableau,char* sortie,int taille0,int taille1,int seuil);

#endif
