commit a79e10e554a6e789136d742b5d0cb2f60dc1d2c3 Author: Nicolas FRIOT, PhD Date: Sun Mar 8 23:23:50 2026 +0100 Import from Mercurial diff --git a/.project b/.project new file mode 100644 index 0000000..ada4165 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + algo-stegano-watermarking-ic + + + + + + org.python.pydev.PyDevBuilder + + + + + + org.python.pydev.pythonNature + + diff --git a/.pydevproject b/.pydevproject new file mode 100644 index 0000000..b8f5e7d --- /dev/null +++ b/.pydevproject @@ -0,0 +1,10 @@ + + + + +Default +python 2.7 + +/algo-stegano-watermarking-ic/src + + diff --git a/.tmp b/.tmp new file mode 100644 index 0000000..e69de29 diff --git a/.tmp1 b/.tmp1 new file mode 100644 index 0000000..e69de29 diff --git a/src/Tatouage/attaque.py b/src/Tatouage/attaque.py new file mode 100644 index 0000000..bd8cfe6 --- /dev/null +++ b/src/Tatouage/attaque.py @@ -0,0 +1,210 @@ +#-*- coding:utf-8 -*- +from os import system +import Image as Im +import ImageEnhance +from numpy import random +from ConfigParser import ConfigParser + +class Attaque: + ''' + Classe pour attaquer une image tatouée, en vue d'enlever la marque. + ''' + + def __init__(self, nom = '', configuration = None): + ''' + Constructeur : récupère l'image à attaquer. + ''' + assert nom != '' + + self._nom = nom + self._image = Im.open(nom) + choix = 0 + + # Affichage du menu d'attaque, si rien n'est précisé + if configuration == None: + print "\n====================== Attaque =====================" + print "Quelle attaque ?" + print " 1. rotation" + print " 2. redimensionnement" + print " 3. découpage" + print " 4. flou" + print " 5. contraste" + print " 6. jpeg" + print " 7. bruit gaussien" + print " 8. bruit uniforme" + choix = eval(raw_input("Votre choix ? ")) + else: + config = ConfigParser() + config.read([configuration]) + attaque = config.get("ATTAQUE","type") + choix_attaques = {'rotation':1,'redimensionnement':2, + 'decoupage':3, 'flou':4, 'contraste':5, + 'jpeg':6, 'gaussien':7, 'uniforme':8} + choix = choix_attaques[attaque] + if choix == 1: + if configuration == None: + print "Attaque par rotation" + angle = eval(raw_input(" Quel angle ? ")) + nombre = eval(raw_input(" Combien de rotations ? ")) + self.rotation(angle = angle, nombre = nombre) + elif config.get('ATTAQUE','type') == 'rotation': + angle = config.getint('ROTATION','angle') + nombre = config.getint('ROTATION','nombre') + self.rotation(angle = angle, nombre = nombre) + elif choix == 2: + print "Attaque par redimensionnement" + pixels = eval(raw_input(" Combien de pixels ? ")) + nombre = eval(raw_input(" Combien de fois ? ")) + self.redimensionnement(nombrePixels = pixels, nombre = nombre) + elif choix == 3: + if configuration == None: + print "Attaque par découpage" + taille = eval(raw_input(" Quelle taille ? ")) + position = eval(raw_input(" Quelle position ? ")) + else: + taille = config.getint("DECOUPAGE","taille") + position = eval(config.get("DECOUPAGE","position")) + self.decoupage(taille = taille, position = position) + elif choix == 4: + print "Attaque par flou" + taux = eval(raw_input(" Quel taux ? ")) + self.flou(taux = taux) + elif choix == 5: + print "Attaque par contraste" + taux = eval(raw_input(" Quel taux ? ")) + self.contraste(taux = taux) + elif choix == 6: + print "Attaque par jpeg" + taux = eval(raw_input(" Quel taux ? ")) + self.jpeg(taux = taux) + elif choix == 7: + print "Attaque par bruit gaussien" + taux = eval(raw_input(" Quel écart-type ? ")) + self.bruitGaussien(taux) + elif choix == 8: + print "Attaque par bruit uniforme" + taux = eval(raw_input(" Quel écart ? ")) + self.bruitUniforme(taux) + + + + + def rotation(self,angle = 2, nombre = 1): + ''' + Attaque par rotation. + + On fait pivoter l'image de 2 degrés (ou de l'angle fixé par l'attaquant) + dans un sens et dans l'autre. + On peut préciser le nombre de fois à le faire. + ''' + for k in range(nombre): + carreNoir=Im.new('L',(500,500),color=1) + carreNoir.paste(self._image,(100,100)) + + tourne = carreNoir.rotate(angle) + carreNoir = tourne.rotate(-angle) + + self._image = carreNoir.crop((101,101,357,357)) + + + + + def redimensionnement(self, nombrePixels = 1, nombre = 1): + ''' + Attaque par redimensionnement de l'image. + ''' + for k in range(nombre): + self._image = \ + self._image.resize((self._image.size[0] + nombrePixels, + self._image.size[1] + nombrePixels)) + + + + + def decoupage(self, taille = 50, position = (0,0)): + ''' + Attaque par découpage de l'image. + ''' + carreNoir=Im.new('L',(taille,taille),color=1) + self._image.paste(carreNoir,position) + + + + def flou(self,taux = 1): + ''' + Attaque en jouant sur le flou/la netteté : + - taux = 1 : image d'origine, + - taux < 1 : image plus floue, + - taux > 1 : image plus nette. + ''' + amelioration = ImageEnhance.Sharpness(self._image) + self._image = amelioration.enhance(taux) + + + def contraste(self,taux = 1): + ''' + Attaque en jouant sur le contraste : + - taux = 1 : image d'origine, + - taux < 1 : image moins contrastée, + - taux > 1 : image plus contrastée. + ''' + amelioration = ImageEnhance.Contrast(self._image) + self._image = amelioration.enhance(taux) + + + def jpeg(self, taux = 100): + '''Attaque par compression jpeg : + - taux = 100 : image d'origine, + - taux 75 : compression par défaut, + - taux = 1 : le plus fort taux de compression.''' + #TODO : utiliser le module de fichier temporaire de python + self._image.save('tempo.jpg',quality = taux) + self._image = Im.open('tempo.jpg') + system('rm tempo.jpg') + + + def bruitGaussien(self, ecarttype): + ''' + Ajoute un bruit gaussien. + ''' + for x in range(self._image.size[0]): + for y in range(self._image.size[1]): + self._image.putpixel((x,y), + int(random.normal(self._image.getpixel((x,y)), ecarttype))) + + + def bruitUniforme(self, ecart): + ''' + Ajoute un bruit uniforme. + ''' + for x in range(self._image.size[0]): + for y in range(self._image.size[1]): + self._image.putpixel((x,y), + self._image.getpixel((x,y)) + \ + int(random.uniform(-ecart,ecart))) + + + def getImage(self): + ''' + Renvoie l'objet Image. + ''' + return self._image + + + + def show(self): + ''' + Montre l'image attaquée. + ''' + self._image.show() + + + def save(self, nom = ''): + ''' + Méthode pour sauvegarder l'image marquée. + ''' + if len(nom)==0: + self._image.save(self._nom) + else: + self._image.save(nom) + diff --git a/src/Tatouage/chiffrement_image.py b/src/Tatouage/chiffrement_image.py new file mode 100644 index 0000000..bd3a899 --- /dev/null +++ b/src/Tatouage/chiffrement_image.py @@ -0,0 +1,126 @@ +#-*-coding:utf8-*- +# +# On reprend tout le chiffrement. On souhaite chiffrer, par itérations +# chaotiques, des images. + +import Image as im +from numpy import array +from outilsBase import conversion +from operator import xor +from BitVector import BitVector +from math import log +from coefficients import Coefficients + +class Chiffrement: + + _bits_par_coef = { '1' : 1, 'L' : 8, 'RGB' : 8} + + def __init__(self, fichier_image = 'lena.png', + iterations = None, + authentification = None, + mu = None, Xo = None): + if iterations == None: + self._iterations = input("Combien d'itérations ? ") + else: + self._iterations = iterations + + self._authentification = authentification + if self._authentification == None: + self._authentification = eval(raw_input("Authentification (True/False) ? ")) + if self._authentification: + self._bits_forts = eval(raw_input("Liste des MSB : ")) + + self._image = im.open(fichier_image) + self._mode = self._image.mode + liste = list(self._image.getdata()) + + if self._authentification: + self._msb = Coefficients().getAllCoefs(fichier_image, self._bits_forts) + + if self._mode == '1': + liste = [k/255 for k in liste] + elif self._mode == 'RGB': + liste2 = [] + for k in liste: + liste2 += k + liste = liste2 + + self._systeme = [conversion(k,2).zfill(self._bits_par_coef[self._mode]) for k in liste] + self._systeme = ''.join(self._systeme) + self._systeme = BitVector(bitstring = self._systeme) + + self._strategie = [] + + self._mu = mu + if self._mu == None: + self._mu = input("\nQuel mu pour la suite logistique ? ") + + self._X = Xo + self._Xo = Xo + if self._X == None: + self._X = input("Quel Xo ? ") + + + + + def chiffrement(self): + # Suite de bits à partir de la suite logistique + code = '' + self._taille = int(log(len(self._systeme),2))+1 + cpt = 0 + + for k in range(self._iterations*self._taille): + Y = 0 if self._X<0.5 else 1 + self._X = self._mu*self._X*(1-self._X) + if not self._authentification: + code += str(Y) + else: + code += str(int(xor(Y,self._msb[cpt%len(self._msb)]))) + cpt += 1 + if len(code)%self._taille == 0: + code = int(code,2) + if code < len(self._systeme): + self._systeme[code] = not self._systeme[code] + self._strategie.append(code) + code = '' + + + + + def get_image(self): + image2 = im.new(self._mode, self._image.size) + (x,y) = self._image.size + compteur = 0 + for k in range(x): + for l in range(y): + coef = '' + for m in range(self._bits_par_coef[self._mode]): + coef += str(self._systeme[compteur]) + compteur += 1 + valeur = int(coef,2) + if self._mode == '1': + valeur *= 255 + image2.putpixel((l,k),valeur) + return image2 + + + + def get_strategie(self): + return self._strategie + + + def get_parametres(self): + return [self._mu, self._Xo] + + + + def get_iterations(self): + return self._iterations + + + +if __name__ == '__main__': + ch = Chiffrement(fichier_image = 'invader.png', iterations = 10000) + ch.chiffrement() + print "Strategie : ", ch.get_strategie()[:10] + ch.get_image().save('invader_chiffre.png') diff --git a/src/Tatouage/coefficients.py b/src/Tatouage/coefficients.py new file mode 100644 index 0000000..0ce5282 --- /dev/null +++ b/src/Tatouage/coefficients.py @@ -0,0 +1,115 @@ +#-*- coding:utf-8 -*- +from math import log +from random import randint +import Image as im +from outilsBase import getBit, setBit +from BitVector import BitVector + +class Coefficients: + + def __init__(self): + ''' + Constructeur. + ''' + pass + + + def bit2coef(self, generateurOuBitVector, limite): + ''' Transforme une suite de bits en suite de nombres. + On fixe la limite, ie le plus grand nombre accepté, et la méthode + retourne des entiers inférieurs à limite, obtenus en concaténant le + bon nombre de bits. + ''' + assert isinstance(limite, int) + if isinstance(generateurOuBitVector, BitVector) : + nbBits = int(log(limite,2)) + compteur = 0 + motBits = '' + while True: + motBits += str(generateurOuBitVector[compteur %\ + len(generateurOuBitVector)]) + compteur += 1 + if compteur % nbBits == 0: + yield int(motBits, 2) + motBits = '' + + else : + assert isinstance(generateurOuBitVector, object) + nbBits = int(log(limite,2)) + compteur = 0 + motBits = '' + while True: + motBits += str(generateurOuBitVector.next()) + compteur += 1 + if compteur % nbBits == 0: + yield int(motBits, 2) + motBits = '' + + + def getCoef(self, fichier = '', positionsBits = []): + ''' + Retourne les bits de poids forts de l'image. + + On boucle indéfiniment. + ''' + image = im.open(fichier) + x, y = 0, 0 + while True: + coef = image.getpixel((x,y)) + for k in positionsBits: + yield getBit(coef, k) + x += 1 + if x == image.size[0]: + x = 0 + y += 1 + if y == image.size[1]: + y = 0 + + + def getAllCoefs(self, fichier = '', positionsBits = [], nombre = 0): + ''' + Retourne un BitVector des bits de positionsBits de l'image. + ''' + # IMPROVE Ce qui suit ne colle que pour des images + image = im.open(fichier) + x, y = 0, 0 + L = [] + compteur = 1 + while True : + coef = image.getpixel((x,y)) + for k in positionsBits: + L.append(getBit(coef, k)) + compteur += 1 + x += 1 + if x == image.size[0]: + x = 0 + y += 1 + if y == image.size[1]: + #if y == image.size[1] or (nombre != 0 and compteur > nombre) : + break + + return BitVector(bitlist = L) + + + def putAllCoefs(self, fichier = '', vecteur = None, positionBits = []): + ''' + Remplace, dans fichier, les bits correspondant à la position + prositionBits par ceux de vecteur. + + Le retour est un objet Image. + ''' + image = im.open(fichier) + retour = im.new(image.mode, image.size) + assert image.size[0]*image.size[1]*len(positionBits) == len(vecteur) + compteur = 0 + for x in range(image.size[0]): + for y in range(image.size[1]): + coef = image.getpixel((y,x)) + for k in positionBits: + coef = setBit(coef, k, vecteur[compteur]) + compteur += 1 + retour.putpixel((y,x), coef) + return retour + + + diff --git a/src/Tatouage/config.txt b/src/Tatouage/config.txt new file mode 100644 index 0000000..16bab70 --- /dev/null +++ b/src/Tatouage/config.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = invader.png +resultat = resultat.txt +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +LSB = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 10 + +[CHIFFREMENT_INSERTION] +mu = 4 +Xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +Xo = 0.4 + +[EXTRACTION] +LSB = [6,7,8] diff --git a/src/Tatouage/config0.txt b/src/Tatouage/config0.txt new file mode 100644 index 0000000..a23c067 --- /dev/null +++ b/src/Tatouage/config0.txt @@ -0,0 +1,3 @@ +[GENERAL] +authentification = False + diff --git a/src/Tatouage/config2.txt b/src/Tatouage/config2.txt new file mode 100644 index 0000000..64dfdc0 --- /dev/null +++ b/src/Tatouage/config2.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = invader.png +resultat = resultat.txt +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +LSB = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 10000 + +[CHIFFREMENT_INSERTION] +mu = 4 +Xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +Xo = 0.4 + +[EXTRACTION] +LSB = [6,7,8] diff --git a/src/Tatouage/configs/config0.txt b/src/Tatouage/configs/config0.txt new file mode 100644 index 0000000..d9db3ae --- /dev/null +++ b/src/Tatouage/configs/config0.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 10 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config1.txt b/src/Tatouage/configs/config1.txt new file mode 100644 index 0000000..72fe309 --- /dev/null +++ b/src/Tatouage/configs/config1.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 20 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config10.txt b/src/Tatouage/configs/config10.txt new file mode 100644 index 0000000..55aac67 --- /dev/null +++ b/src/Tatouage/configs/config10.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config100.txt b/src/Tatouage/configs/config100.txt new file mode 100644 index 0000000..a97e6db --- /dev/null +++ b/src/Tatouage/configs/config100.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config101.txt b/src/Tatouage/configs/config101.txt new file mode 100644 index 0000000..eb1a5cc --- /dev/null +++ b/src/Tatouage/configs/config101.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config102.txt b/src/Tatouage/configs/config102.txt new file mode 100644 index 0000000..250909b --- /dev/null +++ b/src/Tatouage/configs/config102.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config103.txt b/src/Tatouage/configs/config103.txt new file mode 100644 index 0000000..3e24327 --- /dev/null +++ b/src/Tatouage/configs/config103.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config104.txt b/src/Tatouage/configs/config104.txt new file mode 100644 index 0000000..45388f3 --- /dev/null +++ b/src/Tatouage/configs/config104.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config105.txt b/src/Tatouage/configs/config105.txt new file mode 100644 index 0000000..8624af1 --- /dev/null +++ b/src/Tatouage/configs/config105.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config106.txt b/src/Tatouage/configs/config106.txt new file mode 100644 index 0000000..022d762 --- /dev/null +++ b/src/Tatouage/configs/config106.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config107.txt b/src/Tatouage/configs/config107.txt new file mode 100644 index 0000000..4c70e77 --- /dev/null +++ b/src/Tatouage/configs/config107.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config108.txt b/src/Tatouage/configs/config108.txt new file mode 100644 index 0000000..6a535c2 --- /dev/null +++ b/src/Tatouage/configs/config108.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config109.txt b/src/Tatouage/configs/config109.txt new file mode 100644 index 0000000..9af3274 --- /dev/null +++ b/src/Tatouage/configs/config109.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config11.txt b/src/Tatouage/configs/config11.txt new file mode 100644 index 0000000..40de286 --- /dev/null +++ b/src/Tatouage/configs/config11.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config110.txt b/src/Tatouage/configs/config110.txt new file mode 100644 index 0000000..c51a8c5 --- /dev/null +++ b/src/Tatouage/configs/config110.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config111.txt b/src/Tatouage/configs/config111.txt new file mode 100644 index 0000000..485ad93 --- /dev/null +++ b/src/Tatouage/configs/config111.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config112.txt b/src/Tatouage/configs/config112.txt new file mode 100644 index 0000000..02e88e8 --- /dev/null +++ b/src/Tatouage/configs/config112.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config113.txt b/src/Tatouage/configs/config113.txt new file mode 100644 index 0000000..224c26f --- /dev/null +++ b/src/Tatouage/configs/config113.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config114.txt b/src/Tatouage/configs/config114.txt new file mode 100644 index 0000000..cf7b515 --- /dev/null +++ b/src/Tatouage/configs/config114.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config115.txt b/src/Tatouage/configs/config115.txt new file mode 100644 index 0000000..0bb17b2 --- /dev/null +++ b/src/Tatouage/configs/config115.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config116.txt b/src/Tatouage/configs/config116.txt new file mode 100644 index 0000000..7d49384 --- /dev/null +++ b/src/Tatouage/configs/config116.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config117.txt b/src/Tatouage/configs/config117.txt new file mode 100644 index 0000000..523fa66 --- /dev/null +++ b/src/Tatouage/configs/config117.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config118.txt b/src/Tatouage/configs/config118.txt new file mode 100644 index 0000000..ffa9f27 --- /dev/null +++ b/src/Tatouage/configs/config118.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config119.txt b/src/Tatouage/configs/config119.txt new file mode 100644 index 0000000..7a8c5de --- /dev/null +++ b/src/Tatouage/configs/config119.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config12.txt b/src/Tatouage/configs/config12.txt new file mode 100644 index 0000000..503fede --- /dev/null +++ b/src/Tatouage/configs/config12.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config120.txt b/src/Tatouage/configs/config120.txt new file mode 100644 index 0000000..3f0cc0a --- /dev/null +++ b/src/Tatouage/configs/config120.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config121.txt b/src/Tatouage/configs/config121.txt new file mode 100644 index 0000000..8c54e91 --- /dev/null +++ b/src/Tatouage/configs/config121.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config122.txt b/src/Tatouage/configs/config122.txt new file mode 100644 index 0000000..1dd0207 --- /dev/null +++ b/src/Tatouage/configs/config122.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config123.txt b/src/Tatouage/configs/config123.txt new file mode 100644 index 0000000..5f73135 --- /dev/null +++ b/src/Tatouage/configs/config123.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config124.txt b/src/Tatouage/configs/config124.txt new file mode 100644 index 0000000..e17e591 --- /dev/null +++ b/src/Tatouage/configs/config124.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config125.txt b/src/Tatouage/configs/config125.txt new file mode 100644 index 0000000..08222ec --- /dev/null +++ b/src/Tatouage/configs/config125.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config126.txt b/src/Tatouage/configs/config126.txt new file mode 100644 index 0000000..f8e73d5 --- /dev/null +++ b/src/Tatouage/configs/config126.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config127.txt b/src/Tatouage/configs/config127.txt new file mode 100644 index 0000000..4e5523b --- /dev/null +++ b/src/Tatouage/configs/config127.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config128.txt b/src/Tatouage/configs/config128.txt new file mode 100644 index 0000000..ee1c4aa --- /dev/null +++ b/src/Tatouage/configs/config128.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config129.txt b/src/Tatouage/configs/config129.txt new file mode 100644 index 0000000..19cc183 --- /dev/null +++ b/src/Tatouage/configs/config129.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config13.txt b/src/Tatouage/configs/config13.txt new file mode 100644 index 0000000..6dbb72f --- /dev/null +++ b/src/Tatouage/configs/config13.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config130.txt b/src/Tatouage/configs/config130.txt new file mode 100644 index 0000000..ed78381 --- /dev/null +++ b/src/Tatouage/configs/config130.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config131.txt b/src/Tatouage/configs/config131.txt new file mode 100644 index 0000000..1d0c07c --- /dev/null +++ b/src/Tatouage/configs/config131.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config132.txt b/src/Tatouage/configs/config132.txt new file mode 100644 index 0000000..59d1d56 --- /dev/null +++ b/src/Tatouage/configs/config132.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config133.txt b/src/Tatouage/configs/config133.txt new file mode 100644 index 0000000..1acceed --- /dev/null +++ b/src/Tatouage/configs/config133.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config134.txt b/src/Tatouage/configs/config134.txt new file mode 100644 index 0000000..a878b8a --- /dev/null +++ b/src/Tatouage/configs/config134.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config135.txt b/src/Tatouage/configs/config135.txt new file mode 100644 index 0000000..0ed6538 --- /dev/null +++ b/src/Tatouage/configs/config135.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config136.txt b/src/Tatouage/configs/config136.txt new file mode 100644 index 0000000..d664547 --- /dev/null +++ b/src/Tatouage/configs/config136.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config137.txt b/src/Tatouage/configs/config137.txt new file mode 100644 index 0000000..dc3837c --- /dev/null +++ b/src/Tatouage/configs/config137.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config138.txt b/src/Tatouage/configs/config138.txt new file mode 100644 index 0000000..9e16d56 --- /dev/null +++ b/src/Tatouage/configs/config138.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config139.txt b/src/Tatouage/configs/config139.txt new file mode 100644 index 0000000..eeb0f61 --- /dev/null +++ b/src/Tatouage/configs/config139.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config14.txt b/src/Tatouage/configs/config14.txt new file mode 100644 index 0000000..83e6e49 --- /dev/null +++ b/src/Tatouage/configs/config14.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config140.txt b/src/Tatouage/configs/config140.txt new file mode 100644 index 0000000..670b4f4 --- /dev/null +++ b/src/Tatouage/configs/config140.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config141.txt b/src/Tatouage/configs/config141.txt new file mode 100644 index 0000000..58b21b7 --- /dev/null +++ b/src/Tatouage/configs/config141.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config142.txt b/src/Tatouage/configs/config142.txt new file mode 100644 index 0000000..40f719f --- /dev/null +++ b/src/Tatouage/configs/config142.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config143.txt b/src/Tatouage/configs/config143.txt new file mode 100644 index 0000000..9468d89 --- /dev/null +++ b/src/Tatouage/configs/config143.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config144.txt b/src/Tatouage/configs/config144.txt new file mode 100644 index 0000000..0c14826 --- /dev/null +++ b/src/Tatouage/configs/config144.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config145.txt b/src/Tatouage/configs/config145.txt new file mode 100644 index 0000000..70f0695 --- /dev/null +++ b/src/Tatouage/configs/config145.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config146.txt b/src/Tatouage/configs/config146.txt new file mode 100644 index 0000000..9b58e1d --- /dev/null +++ b/src/Tatouage/configs/config146.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config147.txt b/src/Tatouage/configs/config147.txt new file mode 100644 index 0000000..496d750 --- /dev/null +++ b/src/Tatouage/configs/config147.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config148.txt b/src/Tatouage/configs/config148.txt new file mode 100644 index 0000000..2d9c8e1 --- /dev/null +++ b/src/Tatouage/configs/config148.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config149.txt b/src/Tatouage/configs/config149.txt new file mode 100644 index 0000000..d6ea89a --- /dev/null +++ b/src/Tatouage/configs/config149.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config15.txt b/src/Tatouage/configs/config15.txt new file mode 100644 index 0000000..7c83a32 --- /dev/null +++ b/src/Tatouage/configs/config15.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config150.txt b/src/Tatouage/configs/config150.txt new file mode 100644 index 0000000..7572dd7 --- /dev/null +++ b/src/Tatouage/configs/config150.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config151.txt b/src/Tatouage/configs/config151.txt new file mode 100644 index 0000000..bbc41ba --- /dev/null +++ b/src/Tatouage/configs/config151.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config152.txt b/src/Tatouage/configs/config152.txt new file mode 100644 index 0000000..0e55391 --- /dev/null +++ b/src/Tatouage/configs/config152.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config153.txt b/src/Tatouage/configs/config153.txt new file mode 100644 index 0000000..60ffbbe --- /dev/null +++ b/src/Tatouage/configs/config153.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config154.txt b/src/Tatouage/configs/config154.txt new file mode 100644 index 0000000..fce9785 --- /dev/null +++ b/src/Tatouage/configs/config154.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config155.txt b/src/Tatouage/configs/config155.txt new file mode 100644 index 0000000..df5313b --- /dev/null +++ b/src/Tatouage/configs/config155.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config156.txt b/src/Tatouage/configs/config156.txt new file mode 100644 index 0000000..75f869a --- /dev/null +++ b/src/Tatouage/configs/config156.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config157.txt b/src/Tatouage/configs/config157.txt new file mode 100644 index 0000000..bf00982 --- /dev/null +++ b/src/Tatouage/configs/config157.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config158.txt b/src/Tatouage/configs/config158.txt new file mode 100644 index 0000000..156f2de --- /dev/null +++ b/src/Tatouage/configs/config158.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config159.txt b/src/Tatouage/configs/config159.txt new file mode 100644 index 0000000..03a2f9c --- /dev/null +++ b/src/Tatouage/configs/config159.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config16.txt b/src/Tatouage/configs/config16.txt new file mode 100644 index 0000000..b36205b --- /dev/null +++ b/src/Tatouage/configs/config16.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config160.txt b/src/Tatouage/configs/config160.txt new file mode 100644 index 0000000..9da8a01 --- /dev/null +++ b/src/Tatouage/configs/config160.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config161.txt b/src/Tatouage/configs/config161.txt new file mode 100644 index 0000000..483ce97 --- /dev/null +++ b/src/Tatouage/configs/config161.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config162.txt b/src/Tatouage/configs/config162.txt new file mode 100644 index 0000000..2229a8f --- /dev/null +++ b/src/Tatouage/configs/config162.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config163.txt b/src/Tatouage/configs/config163.txt new file mode 100644 index 0000000..3b7882f --- /dev/null +++ b/src/Tatouage/configs/config163.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config164.txt b/src/Tatouage/configs/config164.txt new file mode 100644 index 0000000..8444023 --- /dev/null +++ b/src/Tatouage/configs/config164.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config165.txt b/src/Tatouage/configs/config165.txt new file mode 100644 index 0000000..82bee8a --- /dev/null +++ b/src/Tatouage/configs/config165.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config166.txt b/src/Tatouage/configs/config166.txt new file mode 100644 index 0000000..3d6405f --- /dev/null +++ b/src/Tatouage/configs/config166.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config167.txt b/src/Tatouage/configs/config167.txt new file mode 100644 index 0000000..577378c --- /dev/null +++ b/src/Tatouage/configs/config167.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config168.txt b/src/Tatouage/configs/config168.txt new file mode 100644 index 0000000..2d6f446 --- /dev/null +++ b/src/Tatouage/configs/config168.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config169.txt b/src/Tatouage/configs/config169.txt new file mode 100644 index 0000000..551af10 --- /dev/null +++ b/src/Tatouage/configs/config169.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config17.txt b/src/Tatouage/configs/config17.txt new file mode 100644 index 0000000..0c36408 --- /dev/null +++ b/src/Tatouage/configs/config17.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config170.txt b/src/Tatouage/configs/config170.txt new file mode 100644 index 0000000..ed7e9e4 --- /dev/null +++ b/src/Tatouage/configs/config170.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config171.txt b/src/Tatouage/configs/config171.txt new file mode 100644 index 0000000..ed162f7 --- /dev/null +++ b/src/Tatouage/configs/config171.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config172.txt b/src/Tatouage/configs/config172.txt new file mode 100644 index 0000000..183d836 --- /dev/null +++ b/src/Tatouage/configs/config172.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config173.txt b/src/Tatouage/configs/config173.txt new file mode 100644 index 0000000..49be774 --- /dev/null +++ b/src/Tatouage/configs/config173.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config174.txt b/src/Tatouage/configs/config174.txt new file mode 100644 index 0000000..643b2bc --- /dev/null +++ b/src/Tatouage/configs/config174.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config175.txt b/src/Tatouage/configs/config175.txt new file mode 100644 index 0000000..66b568f --- /dev/null +++ b/src/Tatouage/configs/config175.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config176.txt b/src/Tatouage/configs/config176.txt new file mode 100644 index 0000000..16d8557 --- /dev/null +++ b/src/Tatouage/configs/config176.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config177.txt b/src/Tatouage/configs/config177.txt new file mode 100644 index 0000000..6fc9af2 --- /dev/null +++ b/src/Tatouage/configs/config177.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config178.txt b/src/Tatouage/configs/config178.txt new file mode 100644 index 0000000..956d604 --- /dev/null +++ b/src/Tatouage/configs/config178.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config179.txt b/src/Tatouage/configs/config179.txt new file mode 100644 index 0000000..806a7c9 --- /dev/null +++ b/src/Tatouage/configs/config179.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config18.txt b/src/Tatouage/configs/config18.txt new file mode 100644 index 0000000..6d30f87 --- /dev/null +++ b/src/Tatouage/configs/config18.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config180.txt b/src/Tatouage/configs/config180.txt new file mode 100644 index 0000000..e19f9fd --- /dev/null +++ b/src/Tatouage/configs/config180.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config181.txt b/src/Tatouage/configs/config181.txt new file mode 100644 index 0000000..014a446 --- /dev/null +++ b/src/Tatouage/configs/config181.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config182.txt b/src/Tatouage/configs/config182.txt new file mode 100644 index 0000000..344af6e --- /dev/null +++ b/src/Tatouage/configs/config182.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config183.txt b/src/Tatouage/configs/config183.txt new file mode 100644 index 0000000..96dd2d0 --- /dev/null +++ b/src/Tatouage/configs/config183.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config184.txt b/src/Tatouage/configs/config184.txt new file mode 100644 index 0000000..ee14b8a --- /dev/null +++ b/src/Tatouage/configs/config184.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config185.txt b/src/Tatouage/configs/config185.txt new file mode 100644 index 0000000..845e0a8 --- /dev/null +++ b/src/Tatouage/configs/config185.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config186.txt b/src/Tatouage/configs/config186.txt new file mode 100644 index 0000000..db1bef9 --- /dev/null +++ b/src/Tatouage/configs/config186.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config187.txt b/src/Tatouage/configs/config187.txt new file mode 100644 index 0000000..f5ddc1f --- /dev/null +++ b/src/Tatouage/configs/config187.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config188.txt b/src/Tatouage/configs/config188.txt new file mode 100644 index 0000000..3cd80e1 --- /dev/null +++ b/src/Tatouage/configs/config188.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config189.txt b/src/Tatouage/configs/config189.txt new file mode 100644 index 0000000..047bdf1 --- /dev/null +++ b/src/Tatouage/configs/config189.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config19.txt b/src/Tatouage/configs/config19.txt new file mode 100644 index 0000000..981dceb --- /dev/null +++ b/src/Tatouage/configs/config19.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config190.txt b/src/Tatouage/configs/config190.txt new file mode 100644 index 0000000..628e20f --- /dev/null +++ b/src/Tatouage/configs/config190.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config191.txt b/src/Tatouage/configs/config191.txt new file mode 100644 index 0000000..b0dfc39 --- /dev/null +++ b/src/Tatouage/configs/config191.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config192.txt b/src/Tatouage/configs/config192.txt new file mode 100644 index 0000000..fe425e5 --- /dev/null +++ b/src/Tatouage/configs/config192.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config193.txt b/src/Tatouage/configs/config193.txt new file mode 100644 index 0000000..6e731dd --- /dev/null +++ b/src/Tatouage/configs/config193.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config194.txt b/src/Tatouage/configs/config194.txt new file mode 100644 index 0000000..6de9bb1 --- /dev/null +++ b/src/Tatouage/configs/config194.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config195.txt b/src/Tatouage/configs/config195.txt new file mode 100644 index 0000000..5e129d9 --- /dev/null +++ b/src/Tatouage/configs/config195.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config196.txt b/src/Tatouage/configs/config196.txt new file mode 100644 index 0000000..a9e1921 --- /dev/null +++ b/src/Tatouage/configs/config196.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config197.txt b/src/Tatouage/configs/config197.txt new file mode 100644 index 0000000..08cc209 --- /dev/null +++ b/src/Tatouage/configs/config197.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config198.txt b/src/Tatouage/configs/config198.txt new file mode 100644 index 0000000..b92370a --- /dev/null +++ b/src/Tatouage/configs/config198.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config199.txt b/src/Tatouage/configs/config199.txt new file mode 100644 index 0000000..e8c95a8 --- /dev/null +++ b/src/Tatouage/configs/config199.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config2.txt b/src/Tatouage/configs/config2.txt new file mode 100644 index 0000000..7471c63 --- /dev/null +++ b/src/Tatouage/configs/config2.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 30 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config20.txt b/src/Tatouage/configs/config20.txt new file mode 100644 index 0000000..97c1e2e --- /dev/null +++ b/src/Tatouage/configs/config20.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config200.txt b/src/Tatouage/configs/config200.txt new file mode 100644 index 0000000..2135037 --- /dev/null +++ b/src/Tatouage/configs/config200.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config201.txt b/src/Tatouage/configs/config201.txt new file mode 100644 index 0000000..8f9f531 --- /dev/null +++ b/src/Tatouage/configs/config201.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config202.txt b/src/Tatouage/configs/config202.txt new file mode 100644 index 0000000..4b38377 --- /dev/null +++ b/src/Tatouage/configs/config202.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config203.txt b/src/Tatouage/configs/config203.txt new file mode 100644 index 0000000..37e41d9 --- /dev/null +++ b/src/Tatouage/configs/config203.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config204.txt b/src/Tatouage/configs/config204.txt new file mode 100644 index 0000000..2201885 --- /dev/null +++ b/src/Tatouage/configs/config204.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config205.txt b/src/Tatouage/configs/config205.txt new file mode 100644 index 0000000..40ca075 --- /dev/null +++ b/src/Tatouage/configs/config205.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config206.txt b/src/Tatouage/configs/config206.txt new file mode 100644 index 0000000..3bc04f3 --- /dev/null +++ b/src/Tatouage/configs/config206.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config207.txt b/src/Tatouage/configs/config207.txt new file mode 100644 index 0000000..f68f811 --- /dev/null +++ b/src/Tatouage/configs/config207.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config208.txt b/src/Tatouage/configs/config208.txt new file mode 100644 index 0000000..6b4a6db --- /dev/null +++ b/src/Tatouage/configs/config208.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config209.txt b/src/Tatouage/configs/config209.txt new file mode 100644 index 0000000..0c12f96 --- /dev/null +++ b/src/Tatouage/configs/config209.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config21.txt b/src/Tatouage/configs/config21.txt new file mode 100644 index 0000000..908d325 --- /dev/null +++ b/src/Tatouage/configs/config21.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config210.txt b/src/Tatouage/configs/config210.txt new file mode 100644 index 0000000..d411f71 --- /dev/null +++ b/src/Tatouage/configs/config210.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config211.txt b/src/Tatouage/configs/config211.txt new file mode 100644 index 0000000..2973cdc --- /dev/null +++ b/src/Tatouage/configs/config211.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config212.txt b/src/Tatouage/configs/config212.txt new file mode 100644 index 0000000..c2618b1 --- /dev/null +++ b/src/Tatouage/configs/config212.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config213.txt b/src/Tatouage/configs/config213.txt new file mode 100644 index 0000000..97c85f9 --- /dev/null +++ b/src/Tatouage/configs/config213.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config214.txt b/src/Tatouage/configs/config214.txt new file mode 100644 index 0000000..d47185c --- /dev/null +++ b/src/Tatouage/configs/config214.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config215.txt b/src/Tatouage/configs/config215.txt new file mode 100644 index 0000000..cfef209 --- /dev/null +++ b/src/Tatouage/configs/config215.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config216.txt b/src/Tatouage/configs/config216.txt new file mode 100644 index 0000000..7f82caa --- /dev/null +++ b/src/Tatouage/configs/config216.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config217.txt b/src/Tatouage/configs/config217.txt new file mode 100644 index 0000000..87e83ad --- /dev/null +++ b/src/Tatouage/configs/config217.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config218.txt b/src/Tatouage/configs/config218.txt new file mode 100644 index 0000000..3438512 --- /dev/null +++ b/src/Tatouage/configs/config218.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config219.txt b/src/Tatouage/configs/config219.txt new file mode 100644 index 0000000..2b2babc --- /dev/null +++ b/src/Tatouage/configs/config219.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config22.txt b/src/Tatouage/configs/config22.txt new file mode 100644 index 0000000..9cf5cb2 --- /dev/null +++ b/src/Tatouage/configs/config22.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config220.txt b/src/Tatouage/configs/config220.txt new file mode 100644 index 0000000..0858944 --- /dev/null +++ b/src/Tatouage/configs/config220.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config221.txt b/src/Tatouage/configs/config221.txt new file mode 100644 index 0000000..8bad0aa --- /dev/null +++ b/src/Tatouage/configs/config221.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config222.txt b/src/Tatouage/configs/config222.txt new file mode 100644 index 0000000..721aed6 --- /dev/null +++ b/src/Tatouage/configs/config222.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config223.txt b/src/Tatouage/configs/config223.txt new file mode 100644 index 0000000..8ced19a --- /dev/null +++ b/src/Tatouage/configs/config223.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config224.txt b/src/Tatouage/configs/config224.txt new file mode 100644 index 0000000..e6ef099 --- /dev/null +++ b/src/Tatouage/configs/config224.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config225.txt b/src/Tatouage/configs/config225.txt new file mode 100644 index 0000000..466e60b --- /dev/null +++ b/src/Tatouage/configs/config225.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config226.txt b/src/Tatouage/configs/config226.txt new file mode 100644 index 0000000..c3605f3 --- /dev/null +++ b/src/Tatouage/configs/config226.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config227.txt b/src/Tatouage/configs/config227.txt new file mode 100644 index 0000000..eea834c --- /dev/null +++ b/src/Tatouage/configs/config227.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config228.txt b/src/Tatouage/configs/config228.txt new file mode 100644 index 0000000..ccaa731 --- /dev/null +++ b/src/Tatouage/configs/config228.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config229.txt b/src/Tatouage/configs/config229.txt new file mode 100644 index 0000000..b8d3bcc --- /dev/null +++ b/src/Tatouage/configs/config229.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config23.txt b/src/Tatouage/configs/config23.txt new file mode 100644 index 0000000..bbbfcf7 --- /dev/null +++ b/src/Tatouage/configs/config23.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config230.txt b/src/Tatouage/configs/config230.txt new file mode 100644 index 0000000..24ef555 --- /dev/null +++ b/src/Tatouage/configs/config230.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config231.txt b/src/Tatouage/configs/config231.txt new file mode 100644 index 0000000..bfd0875 --- /dev/null +++ b/src/Tatouage/configs/config231.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config232.txt b/src/Tatouage/configs/config232.txt new file mode 100644 index 0000000..13c15e5 --- /dev/null +++ b/src/Tatouage/configs/config232.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config233.txt b/src/Tatouage/configs/config233.txt new file mode 100644 index 0000000..6c864d7 --- /dev/null +++ b/src/Tatouage/configs/config233.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config234.txt b/src/Tatouage/configs/config234.txt new file mode 100644 index 0000000..4610e6b --- /dev/null +++ b/src/Tatouage/configs/config234.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config235.txt b/src/Tatouage/configs/config235.txt new file mode 100644 index 0000000..20e8d74 --- /dev/null +++ b/src/Tatouage/configs/config235.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config236.txt b/src/Tatouage/configs/config236.txt new file mode 100644 index 0000000..bf59325 --- /dev/null +++ b/src/Tatouage/configs/config236.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config237.txt b/src/Tatouage/configs/config237.txt new file mode 100644 index 0000000..f72cf9c --- /dev/null +++ b/src/Tatouage/configs/config237.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config238.txt b/src/Tatouage/configs/config238.txt new file mode 100644 index 0000000..bc3f6a3 --- /dev/null +++ b/src/Tatouage/configs/config238.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config239.txt b/src/Tatouage/configs/config239.txt new file mode 100644 index 0000000..3c25dcb --- /dev/null +++ b/src/Tatouage/configs/config239.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config24.txt b/src/Tatouage/configs/config24.txt new file mode 100644 index 0000000..3bdbf5e --- /dev/null +++ b/src/Tatouage/configs/config24.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config240.txt b/src/Tatouage/configs/config240.txt new file mode 100644 index 0000000..96d4649 --- /dev/null +++ b/src/Tatouage/configs/config240.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config241.txt b/src/Tatouage/configs/config241.txt new file mode 100644 index 0000000..d85b918 --- /dev/null +++ b/src/Tatouage/configs/config241.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config242.txt b/src/Tatouage/configs/config242.txt new file mode 100644 index 0000000..b2d3c04 --- /dev/null +++ b/src/Tatouage/configs/config242.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config243.txt b/src/Tatouage/configs/config243.txt new file mode 100644 index 0000000..e395153 --- /dev/null +++ b/src/Tatouage/configs/config243.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config244.txt b/src/Tatouage/configs/config244.txt new file mode 100644 index 0000000..fd4d696 --- /dev/null +++ b/src/Tatouage/configs/config244.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config245.txt b/src/Tatouage/configs/config245.txt new file mode 100644 index 0000000..147e44c --- /dev/null +++ b/src/Tatouage/configs/config245.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config246.txt b/src/Tatouage/configs/config246.txt new file mode 100644 index 0000000..42e6501 --- /dev/null +++ b/src/Tatouage/configs/config246.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config247.txt b/src/Tatouage/configs/config247.txt new file mode 100644 index 0000000..b38c50c --- /dev/null +++ b/src/Tatouage/configs/config247.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config248.txt b/src/Tatouage/configs/config248.txt new file mode 100644 index 0000000..13e6087 --- /dev/null +++ b/src/Tatouage/configs/config248.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config249.txt b/src/Tatouage/configs/config249.txt new file mode 100644 index 0000000..4e0f0e6 --- /dev/null +++ b/src/Tatouage/configs/config249.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config25.txt b/src/Tatouage/configs/config25.txt new file mode 100644 index 0000000..1ed47be --- /dev/null +++ b/src/Tatouage/configs/config25.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config250.txt b/src/Tatouage/configs/config250.txt new file mode 100644 index 0000000..8af7875 --- /dev/null +++ b/src/Tatouage/configs/config250.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config251.txt b/src/Tatouage/configs/config251.txt new file mode 100644 index 0000000..9b4e23e --- /dev/null +++ b/src/Tatouage/configs/config251.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config252.txt b/src/Tatouage/configs/config252.txt new file mode 100644 index 0000000..030b2ee --- /dev/null +++ b/src/Tatouage/configs/config252.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config253.txt b/src/Tatouage/configs/config253.txt new file mode 100644 index 0000000..683e180 --- /dev/null +++ b/src/Tatouage/configs/config253.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config254.txt b/src/Tatouage/configs/config254.txt new file mode 100644 index 0000000..221b96e --- /dev/null +++ b/src/Tatouage/configs/config254.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config255.txt b/src/Tatouage/configs/config255.txt new file mode 100644 index 0000000..1dafcea --- /dev/null +++ b/src/Tatouage/configs/config255.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config256.txt b/src/Tatouage/configs/config256.txt new file mode 100644 index 0000000..d228ec0 --- /dev/null +++ b/src/Tatouage/configs/config256.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config257.txt b/src/Tatouage/configs/config257.txt new file mode 100644 index 0000000..47e1a6c --- /dev/null +++ b/src/Tatouage/configs/config257.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config258.txt b/src/Tatouage/configs/config258.txt new file mode 100644 index 0000000..d755d3e --- /dev/null +++ b/src/Tatouage/configs/config258.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config259.txt b/src/Tatouage/configs/config259.txt new file mode 100644 index 0000000..4949e41 --- /dev/null +++ b/src/Tatouage/configs/config259.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config26.txt b/src/Tatouage/configs/config26.txt new file mode 100644 index 0000000..79cdffc --- /dev/null +++ b/src/Tatouage/configs/config26.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config260.txt b/src/Tatouage/configs/config260.txt new file mode 100644 index 0000000..3d55992 --- /dev/null +++ b/src/Tatouage/configs/config260.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config261.txt b/src/Tatouage/configs/config261.txt new file mode 100644 index 0000000..4b7f2ec --- /dev/null +++ b/src/Tatouage/configs/config261.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config262.txt b/src/Tatouage/configs/config262.txt new file mode 100644 index 0000000..fad9a72 --- /dev/null +++ b/src/Tatouage/configs/config262.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config263.txt b/src/Tatouage/configs/config263.txt new file mode 100644 index 0000000..9cb887f --- /dev/null +++ b/src/Tatouage/configs/config263.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config264.txt b/src/Tatouage/configs/config264.txt new file mode 100644 index 0000000..2013689 --- /dev/null +++ b/src/Tatouage/configs/config264.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config265.txt b/src/Tatouage/configs/config265.txt new file mode 100644 index 0000000..3f89997 --- /dev/null +++ b/src/Tatouage/configs/config265.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config266.txt b/src/Tatouage/configs/config266.txt new file mode 100644 index 0000000..92ea57c --- /dev/null +++ b/src/Tatouage/configs/config266.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config267.txt b/src/Tatouage/configs/config267.txt new file mode 100644 index 0000000..6a8f9fd --- /dev/null +++ b/src/Tatouage/configs/config267.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config268.txt b/src/Tatouage/configs/config268.txt new file mode 100644 index 0000000..c6d27f6 --- /dev/null +++ b/src/Tatouage/configs/config268.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config269.txt b/src/Tatouage/configs/config269.txt new file mode 100644 index 0000000..c443a16 --- /dev/null +++ b/src/Tatouage/configs/config269.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config27.txt b/src/Tatouage/configs/config27.txt new file mode 100644 index 0000000..1e7f767 --- /dev/null +++ b/src/Tatouage/configs/config27.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config270.txt b/src/Tatouage/configs/config270.txt new file mode 100644 index 0000000..3fe8a0b --- /dev/null +++ b/src/Tatouage/configs/config270.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config271.txt b/src/Tatouage/configs/config271.txt new file mode 100644 index 0000000..d48c7b1 --- /dev/null +++ b/src/Tatouage/configs/config271.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config272.txt b/src/Tatouage/configs/config272.txt new file mode 100644 index 0000000..e252048 --- /dev/null +++ b/src/Tatouage/configs/config272.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config273.txt b/src/Tatouage/configs/config273.txt new file mode 100644 index 0000000..5b66f91 --- /dev/null +++ b/src/Tatouage/configs/config273.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config274.txt b/src/Tatouage/configs/config274.txt new file mode 100644 index 0000000..a9a29ae --- /dev/null +++ b/src/Tatouage/configs/config274.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config275.txt b/src/Tatouage/configs/config275.txt new file mode 100644 index 0000000..18c38a3 --- /dev/null +++ b/src/Tatouage/configs/config275.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config276.txt b/src/Tatouage/configs/config276.txt new file mode 100644 index 0000000..d8e95f7 --- /dev/null +++ b/src/Tatouage/configs/config276.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config277.txt b/src/Tatouage/configs/config277.txt new file mode 100644 index 0000000..cf39042 --- /dev/null +++ b/src/Tatouage/configs/config277.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config278.txt b/src/Tatouage/configs/config278.txt new file mode 100644 index 0000000..d3bc1e8 --- /dev/null +++ b/src/Tatouage/configs/config278.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config279.txt b/src/Tatouage/configs/config279.txt new file mode 100644 index 0000000..de7f541 --- /dev/null +++ b/src/Tatouage/configs/config279.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config28.txt b/src/Tatouage/configs/config28.txt new file mode 100644 index 0000000..613d91c --- /dev/null +++ b/src/Tatouage/configs/config28.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config280.txt b/src/Tatouage/configs/config280.txt new file mode 100644 index 0000000..7824820 --- /dev/null +++ b/src/Tatouage/configs/config280.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config281.txt b/src/Tatouage/configs/config281.txt new file mode 100644 index 0000000..0339dde --- /dev/null +++ b/src/Tatouage/configs/config281.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config282.txt b/src/Tatouage/configs/config282.txt new file mode 100644 index 0000000..a408f86 --- /dev/null +++ b/src/Tatouage/configs/config282.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config283.txt b/src/Tatouage/configs/config283.txt new file mode 100644 index 0000000..ee0ff78 --- /dev/null +++ b/src/Tatouage/configs/config283.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config284.txt b/src/Tatouage/configs/config284.txt new file mode 100644 index 0000000..74d2107 --- /dev/null +++ b/src/Tatouage/configs/config284.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config285.txt b/src/Tatouage/configs/config285.txt new file mode 100644 index 0000000..4ab5f47 --- /dev/null +++ b/src/Tatouage/configs/config285.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config286.txt b/src/Tatouage/configs/config286.txt new file mode 100644 index 0000000..3db99e6 --- /dev/null +++ b/src/Tatouage/configs/config286.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config287.txt b/src/Tatouage/configs/config287.txt new file mode 100644 index 0000000..38e949a --- /dev/null +++ b/src/Tatouage/configs/config287.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config288.txt b/src/Tatouage/configs/config288.txt new file mode 100644 index 0000000..ab5ead7 --- /dev/null +++ b/src/Tatouage/configs/config288.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config289.txt b/src/Tatouage/configs/config289.txt new file mode 100644 index 0000000..a25eacc --- /dev/null +++ b/src/Tatouage/configs/config289.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config29.txt b/src/Tatouage/configs/config29.txt new file mode 100644 index 0000000..effaf59 --- /dev/null +++ b/src/Tatouage/configs/config29.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config290.txt b/src/Tatouage/configs/config290.txt new file mode 100644 index 0000000..6be6382 --- /dev/null +++ b/src/Tatouage/configs/config290.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config291.txt b/src/Tatouage/configs/config291.txt new file mode 100644 index 0000000..7ba34a2 --- /dev/null +++ b/src/Tatouage/configs/config291.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config292.txt b/src/Tatouage/configs/config292.txt new file mode 100644 index 0000000..7313d60 --- /dev/null +++ b/src/Tatouage/configs/config292.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config293.txt b/src/Tatouage/configs/config293.txt new file mode 100644 index 0000000..a8c01b9 --- /dev/null +++ b/src/Tatouage/configs/config293.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config294.txt b/src/Tatouage/configs/config294.txt new file mode 100644 index 0000000..11ab4e2 --- /dev/null +++ b/src/Tatouage/configs/config294.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config295.txt b/src/Tatouage/configs/config295.txt new file mode 100644 index 0000000..ec6c2be --- /dev/null +++ b/src/Tatouage/configs/config295.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config296.txt b/src/Tatouage/configs/config296.txt new file mode 100644 index 0000000..4767511 --- /dev/null +++ b/src/Tatouage/configs/config296.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config297.txt b/src/Tatouage/configs/config297.txt new file mode 100644 index 0000000..e395238 --- /dev/null +++ b/src/Tatouage/configs/config297.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config298.txt b/src/Tatouage/configs/config298.txt new file mode 100644 index 0000000..f6f7f0d --- /dev/null +++ b/src/Tatouage/configs/config298.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 2990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config299.txt b/src/Tatouage/configs/config299.txt new file mode 100644 index 0000000..6abe875 --- /dev/null +++ b/src/Tatouage/configs/config299.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config3.txt b/src/Tatouage/configs/config3.txt new file mode 100644 index 0000000..6c557e2 --- /dev/null +++ b/src/Tatouage/configs/config3.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 40 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config30.txt b/src/Tatouage/configs/config30.txt new file mode 100644 index 0000000..f81ca1e --- /dev/null +++ b/src/Tatouage/configs/config30.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config300.txt b/src/Tatouage/configs/config300.txt new file mode 100644 index 0000000..f19e576 --- /dev/null +++ b/src/Tatouage/configs/config300.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config301.txt b/src/Tatouage/configs/config301.txt new file mode 100644 index 0000000..d25118b --- /dev/null +++ b/src/Tatouage/configs/config301.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config302.txt b/src/Tatouage/configs/config302.txt new file mode 100644 index 0000000..906145c --- /dev/null +++ b/src/Tatouage/configs/config302.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config303.txt b/src/Tatouage/configs/config303.txt new file mode 100644 index 0000000..0c48bd8 --- /dev/null +++ b/src/Tatouage/configs/config303.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config304.txt b/src/Tatouage/configs/config304.txt new file mode 100644 index 0000000..be1ca21 --- /dev/null +++ b/src/Tatouage/configs/config304.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config305.txt b/src/Tatouage/configs/config305.txt new file mode 100644 index 0000000..72e1ac4 --- /dev/null +++ b/src/Tatouage/configs/config305.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config306.txt b/src/Tatouage/configs/config306.txt new file mode 100644 index 0000000..8598164 --- /dev/null +++ b/src/Tatouage/configs/config306.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config307.txt b/src/Tatouage/configs/config307.txt new file mode 100644 index 0000000..81fd4ee --- /dev/null +++ b/src/Tatouage/configs/config307.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config308.txt b/src/Tatouage/configs/config308.txt new file mode 100644 index 0000000..356bb0b --- /dev/null +++ b/src/Tatouage/configs/config308.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config309.txt b/src/Tatouage/configs/config309.txt new file mode 100644 index 0000000..10dc671 --- /dev/null +++ b/src/Tatouage/configs/config309.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config31.txt b/src/Tatouage/configs/config31.txt new file mode 100644 index 0000000..fdb0a3b --- /dev/null +++ b/src/Tatouage/configs/config31.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config310.txt b/src/Tatouage/configs/config310.txt new file mode 100644 index 0000000..0cc5887 --- /dev/null +++ b/src/Tatouage/configs/config310.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config311.txt b/src/Tatouage/configs/config311.txt new file mode 100644 index 0000000..561f8ff --- /dev/null +++ b/src/Tatouage/configs/config311.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config312.txt b/src/Tatouage/configs/config312.txt new file mode 100644 index 0000000..7ff6ac2 --- /dev/null +++ b/src/Tatouage/configs/config312.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config313.txt b/src/Tatouage/configs/config313.txt new file mode 100644 index 0000000..5a20ec5 --- /dev/null +++ b/src/Tatouage/configs/config313.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config314.txt b/src/Tatouage/configs/config314.txt new file mode 100644 index 0000000..07ee9e8 --- /dev/null +++ b/src/Tatouage/configs/config314.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config315.txt b/src/Tatouage/configs/config315.txt new file mode 100644 index 0000000..ae74235 --- /dev/null +++ b/src/Tatouage/configs/config315.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config316.txt b/src/Tatouage/configs/config316.txt new file mode 100644 index 0000000..090cb91 --- /dev/null +++ b/src/Tatouage/configs/config316.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config317.txt b/src/Tatouage/configs/config317.txt new file mode 100644 index 0000000..6740633 --- /dev/null +++ b/src/Tatouage/configs/config317.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config318.txt b/src/Tatouage/configs/config318.txt new file mode 100644 index 0000000..abb9bfd --- /dev/null +++ b/src/Tatouage/configs/config318.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config319.txt b/src/Tatouage/configs/config319.txt new file mode 100644 index 0000000..bcd9048 --- /dev/null +++ b/src/Tatouage/configs/config319.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config32.txt b/src/Tatouage/configs/config32.txt new file mode 100644 index 0000000..3a7da90 --- /dev/null +++ b/src/Tatouage/configs/config32.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config320.txt b/src/Tatouage/configs/config320.txt new file mode 100644 index 0000000..2b13e8f --- /dev/null +++ b/src/Tatouage/configs/config320.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config321.txt b/src/Tatouage/configs/config321.txt new file mode 100644 index 0000000..c926281 --- /dev/null +++ b/src/Tatouage/configs/config321.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config322.txt b/src/Tatouage/configs/config322.txt new file mode 100644 index 0000000..d3f7146 --- /dev/null +++ b/src/Tatouage/configs/config322.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config323.txt b/src/Tatouage/configs/config323.txt new file mode 100644 index 0000000..28fbaa8 --- /dev/null +++ b/src/Tatouage/configs/config323.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config324.txt b/src/Tatouage/configs/config324.txt new file mode 100644 index 0000000..dc6cb08 --- /dev/null +++ b/src/Tatouage/configs/config324.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config325.txt b/src/Tatouage/configs/config325.txt new file mode 100644 index 0000000..08538a1 --- /dev/null +++ b/src/Tatouage/configs/config325.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config326.txt b/src/Tatouage/configs/config326.txt new file mode 100644 index 0000000..5e0126a --- /dev/null +++ b/src/Tatouage/configs/config326.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config327.txt b/src/Tatouage/configs/config327.txt new file mode 100644 index 0000000..2e26df3 --- /dev/null +++ b/src/Tatouage/configs/config327.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config328.txt b/src/Tatouage/configs/config328.txt new file mode 100644 index 0000000..e935bb3 --- /dev/null +++ b/src/Tatouage/configs/config328.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config329.txt b/src/Tatouage/configs/config329.txt new file mode 100644 index 0000000..d7b51c9 --- /dev/null +++ b/src/Tatouage/configs/config329.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config33.txt b/src/Tatouage/configs/config33.txt new file mode 100644 index 0000000..d5927ab --- /dev/null +++ b/src/Tatouage/configs/config33.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config330.txt b/src/Tatouage/configs/config330.txt new file mode 100644 index 0000000..7188822 --- /dev/null +++ b/src/Tatouage/configs/config330.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config331.txt b/src/Tatouage/configs/config331.txt new file mode 100644 index 0000000..62ff172 --- /dev/null +++ b/src/Tatouage/configs/config331.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config332.txt b/src/Tatouage/configs/config332.txt new file mode 100644 index 0000000..a58d02a --- /dev/null +++ b/src/Tatouage/configs/config332.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config333.txt b/src/Tatouage/configs/config333.txt new file mode 100644 index 0000000..286b218 --- /dev/null +++ b/src/Tatouage/configs/config333.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config334.txt b/src/Tatouage/configs/config334.txt new file mode 100644 index 0000000..e19fb05 --- /dev/null +++ b/src/Tatouage/configs/config334.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config335.txt b/src/Tatouage/configs/config335.txt new file mode 100644 index 0000000..d1ebf3b --- /dev/null +++ b/src/Tatouage/configs/config335.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config336.txt b/src/Tatouage/configs/config336.txt new file mode 100644 index 0000000..73ac301 --- /dev/null +++ b/src/Tatouage/configs/config336.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config337.txt b/src/Tatouage/configs/config337.txt new file mode 100644 index 0000000..80b1cab --- /dev/null +++ b/src/Tatouage/configs/config337.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config338.txt b/src/Tatouage/configs/config338.txt new file mode 100644 index 0000000..841f967 --- /dev/null +++ b/src/Tatouage/configs/config338.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config339.txt b/src/Tatouage/configs/config339.txt new file mode 100644 index 0000000..d6a2795 --- /dev/null +++ b/src/Tatouage/configs/config339.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config34.txt b/src/Tatouage/configs/config34.txt new file mode 100644 index 0000000..0cc98bb --- /dev/null +++ b/src/Tatouage/configs/config34.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config340.txt b/src/Tatouage/configs/config340.txt new file mode 100644 index 0000000..95baca3 --- /dev/null +++ b/src/Tatouage/configs/config340.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config341.txt b/src/Tatouage/configs/config341.txt new file mode 100644 index 0000000..2ca7878 --- /dev/null +++ b/src/Tatouage/configs/config341.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config342.txt b/src/Tatouage/configs/config342.txt new file mode 100644 index 0000000..b8d4812 --- /dev/null +++ b/src/Tatouage/configs/config342.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config343.txt b/src/Tatouage/configs/config343.txt new file mode 100644 index 0000000..9f509ed --- /dev/null +++ b/src/Tatouage/configs/config343.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config344.txt b/src/Tatouage/configs/config344.txt new file mode 100644 index 0000000..4dd7932 --- /dev/null +++ b/src/Tatouage/configs/config344.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config345.txt b/src/Tatouage/configs/config345.txt new file mode 100644 index 0000000..af3a2ff --- /dev/null +++ b/src/Tatouage/configs/config345.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config346.txt b/src/Tatouage/configs/config346.txt new file mode 100644 index 0000000..d311279 --- /dev/null +++ b/src/Tatouage/configs/config346.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config347.txt b/src/Tatouage/configs/config347.txt new file mode 100644 index 0000000..bb314f1 --- /dev/null +++ b/src/Tatouage/configs/config347.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config348.txt b/src/Tatouage/configs/config348.txt new file mode 100644 index 0000000..34b0345 --- /dev/null +++ b/src/Tatouage/configs/config348.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config349.txt b/src/Tatouage/configs/config349.txt new file mode 100644 index 0000000..4e05d93 --- /dev/null +++ b/src/Tatouage/configs/config349.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config35.txt b/src/Tatouage/configs/config35.txt new file mode 100644 index 0000000..d66a53d --- /dev/null +++ b/src/Tatouage/configs/config35.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config350.txt b/src/Tatouage/configs/config350.txt new file mode 100644 index 0000000..b95f990 --- /dev/null +++ b/src/Tatouage/configs/config350.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config351.txt b/src/Tatouage/configs/config351.txt new file mode 100644 index 0000000..553e3cb --- /dev/null +++ b/src/Tatouage/configs/config351.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config352.txt b/src/Tatouage/configs/config352.txt new file mode 100644 index 0000000..7581b87 --- /dev/null +++ b/src/Tatouage/configs/config352.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config353.txt b/src/Tatouage/configs/config353.txt new file mode 100644 index 0000000..bd44fbd --- /dev/null +++ b/src/Tatouage/configs/config353.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config354.txt b/src/Tatouage/configs/config354.txt new file mode 100644 index 0000000..2e7b3a0 --- /dev/null +++ b/src/Tatouage/configs/config354.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config355.txt b/src/Tatouage/configs/config355.txt new file mode 100644 index 0000000..f76787e --- /dev/null +++ b/src/Tatouage/configs/config355.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config356.txt b/src/Tatouage/configs/config356.txt new file mode 100644 index 0000000..b441dc1 --- /dev/null +++ b/src/Tatouage/configs/config356.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config357.txt b/src/Tatouage/configs/config357.txt new file mode 100644 index 0000000..72867f9 --- /dev/null +++ b/src/Tatouage/configs/config357.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config358.txt b/src/Tatouage/configs/config358.txt new file mode 100644 index 0000000..15ef38c --- /dev/null +++ b/src/Tatouage/configs/config358.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config359.txt b/src/Tatouage/configs/config359.txt new file mode 100644 index 0000000..37e43cb --- /dev/null +++ b/src/Tatouage/configs/config359.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config36.txt b/src/Tatouage/configs/config36.txt new file mode 100644 index 0000000..aad72e8 --- /dev/null +++ b/src/Tatouage/configs/config36.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config360.txt b/src/Tatouage/configs/config360.txt new file mode 100644 index 0000000..77de461 --- /dev/null +++ b/src/Tatouage/configs/config360.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config361.txt b/src/Tatouage/configs/config361.txt new file mode 100644 index 0000000..1fb421c --- /dev/null +++ b/src/Tatouage/configs/config361.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config362.txt b/src/Tatouage/configs/config362.txt new file mode 100644 index 0000000..b14d475 --- /dev/null +++ b/src/Tatouage/configs/config362.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config363.txt b/src/Tatouage/configs/config363.txt new file mode 100644 index 0000000..b05c693 --- /dev/null +++ b/src/Tatouage/configs/config363.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config364.txt b/src/Tatouage/configs/config364.txt new file mode 100644 index 0000000..d77c9bf --- /dev/null +++ b/src/Tatouage/configs/config364.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config365.txt b/src/Tatouage/configs/config365.txt new file mode 100644 index 0000000..f7b6498 --- /dev/null +++ b/src/Tatouage/configs/config365.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config366.txt b/src/Tatouage/configs/config366.txt new file mode 100644 index 0000000..6d050fa --- /dev/null +++ b/src/Tatouage/configs/config366.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config367.txt b/src/Tatouage/configs/config367.txt new file mode 100644 index 0000000..8ec173d --- /dev/null +++ b/src/Tatouage/configs/config367.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config368.txt b/src/Tatouage/configs/config368.txt new file mode 100644 index 0000000..2be68a5 --- /dev/null +++ b/src/Tatouage/configs/config368.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config369.txt b/src/Tatouage/configs/config369.txt new file mode 100644 index 0000000..cbefdf1 --- /dev/null +++ b/src/Tatouage/configs/config369.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config37.txt b/src/Tatouage/configs/config37.txt new file mode 100644 index 0000000..41edd5a --- /dev/null +++ b/src/Tatouage/configs/config37.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config370.txt b/src/Tatouage/configs/config370.txt new file mode 100644 index 0000000..1f26ef1 --- /dev/null +++ b/src/Tatouage/configs/config370.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config371.txt b/src/Tatouage/configs/config371.txt new file mode 100644 index 0000000..636a854 --- /dev/null +++ b/src/Tatouage/configs/config371.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config372.txt b/src/Tatouage/configs/config372.txt new file mode 100644 index 0000000..af4fb5a --- /dev/null +++ b/src/Tatouage/configs/config372.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config373.txt b/src/Tatouage/configs/config373.txt new file mode 100644 index 0000000..66acb95 --- /dev/null +++ b/src/Tatouage/configs/config373.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config374.txt b/src/Tatouage/configs/config374.txt new file mode 100644 index 0000000..11a469f --- /dev/null +++ b/src/Tatouage/configs/config374.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config375.txt b/src/Tatouage/configs/config375.txt new file mode 100644 index 0000000..c17ecdf --- /dev/null +++ b/src/Tatouage/configs/config375.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config376.txt b/src/Tatouage/configs/config376.txt new file mode 100644 index 0000000..5257de9 --- /dev/null +++ b/src/Tatouage/configs/config376.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config377.txt b/src/Tatouage/configs/config377.txt new file mode 100644 index 0000000..4abca87 --- /dev/null +++ b/src/Tatouage/configs/config377.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config378.txt b/src/Tatouage/configs/config378.txt new file mode 100644 index 0000000..51f67a3 --- /dev/null +++ b/src/Tatouage/configs/config378.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config379.txt b/src/Tatouage/configs/config379.txt new file mode 100644 index 0000000..92329f5 --- /dev/null +++ b/src/Tatouage/configs/config379.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config38.txt b/src/Tatouage/configs/config38.txt new file mode 100644 index 0000000..b6fdbb7 --- /dev/null +++ b/src/Tatouage/configs/config38.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config380.txt b/src/Tatouage/configs/config380.txt new file mode 100644 index 0000000..8c442c9 --- /dev/null +++ b/src/Tatouage/configs/config380.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config381.txt b/src/Tatouage/configs/config381.txt new file mode 100644 index 0000000..c335035 --- /dev/null +++ b/src/Tatouage/configs/config381.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config382.txt b/src/Tatouage/configs/config382.txt new file mode 100644 index 0000000..b5b62b2 --- /dev/null +++ b/src/Tatouage/configs/config382.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config383.txt b/src/Tatouage/configs/config383.txt new file mode 100644 index 0000000..fa85014 --- /dev/null +++ b/src/Tatouage/configs/config383.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config384.txt b/src/Tatouage/configs/config384.txt new file mode 100644 index 0000000..415e2c4 --- /dev/null +++ b/src/Tatouage/configs/config384.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config385.txt b/src/Tatouage/configs/config385.txt new file mode 100644 index 0000000..5826cf1 --- /dev/null +++ b/src/Tatouage/configs/config385.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config386.txt b/src/Tatouage/configs/config386.txt new file mode 100644 index 0000000..1bcc237 --- /dev/null +++ b/src/Tatouage/configs/config386.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config387.txt b/src/Tatouage/configs/config387.txt new file mode 100644 index 0000000..6c91104 --- /dev/null +++ b/src/Tatouage/configs/config387.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config388.txt b/src/Tatouage/configs/config388.txt new file mode 100644 index 0000000..de92afa --- /dev/null +++ b/src/Tatouage/configs/config388.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config389.txt b/src/Tatouage/configs/config389.txt new file mode 100644 index 0000000..33cad07 --- /dev/null +++ b/src/Tatouage/configs/config389.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config39.txt b/src/Tatouage/configs/config39.txt new file mode 100644 index 0000000..863d50e --- /dev/null +++ b/src/Tatouage/configs/config39.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config390.txt b/src/Tatouage/configs/config390.txt new file mode 100644 index 0000000..530b8e9 --- /dev/null +++ b/src/Tatouage/configs/config390.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config391.txt b/src/Tatouage/configs/config391.txt new file mode 100644 index 0000000..caf3300 --- /dev/null +++ b/src/Tatouage/configs/config391.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config392.txt b/src/Tatouage/configs/config392.txt new file mode 100644 index 0000000..2779bc1 --- /dev/null +++ b/src/Tatouage/configs/config392.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config393.txt b/src/Tatouage/configs/config393.txt new file mode 100644 index 0000000..a4c8b38 --- /dev/null +++ b/src/Tatouage/configs/config393.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config394.txt b/src/Tatouage/configs/config394.txt new file mode 100644 index 0000000..1184508 --- /dev/null +++ b/src/Tatouage/configs/config394.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config395.txt b/src/Tatouage/configs/config395.txt new file mode 100644 index 0000000..56aaf7c --- /dev/null +++ b/src/Tatouage/configs/config395.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config396.txt b/src/Tatouage/configs/config396.txt new file mode 100644 index 0000000..4bddd7a --- /dev/null +++ b/src/Tatouage/configs/config396.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config397.txt b/src/Tatouage/configs/config397.txt new file mode 100644 index 0000000..7952cfd --- /dev/null +++ b/src/Tatouage/configs/config397.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config398.txt b/src/Tatouage/configs/config398.txt new file mode 100644 index 0000000..8360a46 --- /dev/null +++ b/src/Tatouage/configs/config398.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 3990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config399.txt b/src/Tatouage/configs/config399.txt new file mode 100644 index 0000000..3077c57 --- /dev/null +++ b/src/Tatouage/configs/config399.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config4.txt b/src/Tatouage/configs/config4.txt new file mode 100644 index 0000000..0d6d651 --- /dev/null +++ b/src/Tatouage/configs/config4.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 50 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config40.txt b/src/Tatouage/configs/config40.txt new file mode 100644 index 0000000..34dc25a --- /dev/null +++ b/src/Tatouage/configs/config40.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config400.txt b/src/Tatouage/configs/config400.txt new file mode 100644 index 0000000..2a27f0f --- /dev/null +++ b/src/Tatouage/configs/config400.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config401.txt b/src/Tatouage/configs/config401.txt new file mode 100644 index 0000000..c03fd9d --- /dev/null +++ b/src/Tatouage/configs/config401.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config402.txt b/src/Tatouage/configs/config402.txt new file mode 100644 index 0000000..fa92d7a --- /dev/null +++ b/src/Tatouage/configs/config402.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config403.txt b/src/Tatouage/configs/config403.txt new file mode 100644 index 0000000..aeae63b --- /dev/null +++ b/src/Tatouage/configs/config403.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config404.txt b/src/Tatouage/configs/config404.txt new file mode 100644 index 0000000..ddc945e --- /dev/null +++ b/src/Tatouage/configs/config404.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config405.txt b/src/Tatouage/configs/config405.txt new file mode 100644 index 0000000..dc456cb --- /dev/null +++ b/src/Tatouage/configs/config405.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config406.txt b/src/Tatouage/configs/config406.txt new file mode 100644 index 0000000..685eb47 --- /dev/null +++ b/src/Tatouage/configs/config406.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config407.txt b/src/Tatouage/configs/config407.txt new file mode 100644 index 0000000..8b04e2c --- /dev/null +++ b/src/Tatouage/configs/config407.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config408.txt b/src/Tatouage/configs/config408.txt new file mode 100644 index 0000000..07d6811 --- /dev/null +++ b/src/Tatouage/configs/config408.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config409.txt b/src/Tatouage/configs/config409.txt new file mode 100644 index 0000000..48f92c7 --- /dev/null +++ b/src/Tatouage/configs/config409.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config41.txt b/src/Tatouage/configs/config41.txt new file mode 100644 index 0000000..54ce9eb --- /dev/null +++ b/src/Tatouage/configs/config41.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config410.txt b/src/Tatouage/configs/config410.txt new file mode 100644 index 0000000..b02bb19 --- /dev/null +++ b/src/Tatouage/configs/config410.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config411.txt b/src/Tatouage/configs/config411.txt new file mode 100644 index 0000000..bf41212 --- /dev/null +++ b/src/Tatouage/configs/config411.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config412.txt b/src/Tatouage/configs/config412.txt new file mode 100644 index 0000000..9e6a8b3 --- /dev/null +++ b/src/Tatouage/configs/config412.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config413.txt b/src/Tatouage/configs/config413.txt new file mode 100644 index 0000000..5cbd9ce --- /dev/null +++ b/src/Tatouage/configs/config413.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config414.txt b/src/Tatouage/configs/config414.txt new file mode 100644 index 0000000..35bfa26 --- /dev/null +++ b/src/Tatouage/configs/config414.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config415.txt b/src/Tatouage/configs/config415.txt new file mode 100644 index 0000000..2e4e02b --- /dev/null +++ b/src/Tatouage/configs/config415.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config416.txt b/src/Tatouage/configs/config416.txt new file mode 100644 index 0000000..fbf5097 --- /dev/null +++ b/src/Tatouage/configs/config416.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config417.txt b/src/Tatouage/configs/config417.txt new file mode 100644 index 0000000..9d42175 --- /dev/null +++ b/src/Tatouage/configs/config417.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config418.txt b/src/Tatouage/configs/config418.txt new file mode 100644 index 0000000..476cd69 --- /dev/null +++ b/src/Tatouage/configs/config418.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config419.txt b/src/Tatouage/configs/config419.txt new file mode 100644 index 0000000..34a4ac1 --- /dev/null +++ b/src/Tatouage/configs/config419.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config42.txt b/src/Tatouage/configs/config42.txt new file mode 100644 index 0000000..3eb9518 --- /dev/null +++ b/src/Tatouage/configs/config42.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config420.txt b/src/Tatouage/configs/config420.txt new file mode 100644 index 0000000..9a5244f --- /dev/null +++ b/src/Tatouage/configs/config420.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config421.txt b/src/Tatouage/configs/config421.txt new file mode 100644 index 0000000..bcc5c7e --- /dev/null +++ b/src/Tatouage/configs/config421.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config422.txt b/src/Tatouage/configs/config422.txt new file mode 100644 index 0000000..3131711 --- /dev/null +++ b/src/Tatouage/configs/config422.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config423.txt b/src/Tatouage/configs/config423.txt new file mode 100644 index 0000000..b400ca0 --- /dev/null +++ b/src/Tatouage/configs/config423.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config424.txt b/src/Tatouage/configs/config424.txt new file mode 100644 index 0000000..afef25a --- /dev/null +++ b/src/Tatouage/configs/config424.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config425.txt b/src/Tatouage/configs/config425.txt new file mode 100644 index 0000000..e1a17bf --- /dev/null +++ b/src/Tatouage/configs/config425.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config426.txt b/src/Tatouage/configs/config426.txt new file mode 100644 index 0000000..4c98b4f --- /dev/null +++ b/src/Tatouage/configs/config426.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config427.txt b/src/Tatouage/configs/config427.txt new file mode 100644 index 0000000..a0e4786 --- /dev/null +++ b/src/Tatouage/configs/config427.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config428.txt b/src/Tatouage/configs/config428.txt new file mode 100644 index 0000000..8dd8258 --- /dev/null +++ b/src/Tatouage/configs/config428.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config429.txt b/src/Tatouage/configs/config429.txt new file mode 100644 index 0000000..a0e10e8 --- /dev/null +++ b/src/Tatouage/configs/config429.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config43.txt b/src/Tatouage/configs/config43.txt new file mode 100644 index 0000000..5fe6174 --- /dev/null +++ b/src/Tatouage/configs/config43.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config430.txt b/src/Tatouage/configs/config430.txt new file mode 100644 index 0000000..599bd5e --- /dev/null +++ b/src/Tatouage/configs/config430.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config431.txt b/src/Tatouage/configs/config431.txt new file mode 100644 index 0000000..a771034 --- /dev/null +++ b/src/Tatouage/configs/config431.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config432.txt b/src/Tatouage/configs/config432.txt new file mode 100644 index 0000000..c764396 --- /dev/null +++ b/src/Tatouage/configs/config432.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config433.txt b/src/Tatouage/configs/config433.txt new file mode 100644 index 0000000..0f9cfe7 --- /dev/null +++ b/src/Tatouage/configs/config433.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config434.txt b/src/Tatouage/configs/config434.txt new file mode 100644 index 0000000..915854c --- /dev/null +++ b/src/Tatouage/configs/config434.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config435.txt b/src/Tatouage/configs/config435.txt new file mode 100644 index 0000000..6898508 --- /dev/null +++ b/src/Tatouage/configs/config435.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config436.txt b/src/Tatouage/configs/config436.txt new file mode 100644 index 0000000..af230ab --- /dev/null +++ b/src/Tatouage/configs/config436.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config437.txt b/src/Tatouage/configs/config437.txt new file mode 100644 index 0000000..dc4271c --- /dev/null +++ b/src/Tatouage/configs/config437.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config438.txt b/src/Tatouage/configs/config438.txt new file mode 100644 index 0000000..72326b6 --- /dev/null +++ b/src/Tatouage/configs/config438.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config439.txt b/src/Tatouage/configs/config439.txt new file mode 100644 index 0000000..f194007 --- /dev/null +++ b/src/Tatouage/configs/config439.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config44.txt b/src/Tatouage/configs/config44.txt new file mode 100644 index 0000000..a4d3181 --- /dev/null +++ b/src/Tatouage/configs/config44.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config440.txt b/src/Tatouage/configs/config440.txt new file mode 100644 index 0000000..5003f10 --- /dev/null +++ b/src/Tatouage/configs/config440.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config441.txt b/src/Tatouage/configs/config441.txt new file mode 100644 index 0000000..c4d1713 --- /dev/null +++ b/src/Tatouage/configs/config441.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config442.txt b/src/Tatouage/configs/config442.txt new file mode 100644 index 0000000..91d09d2 --- /dev/null +++ b/src/Tatouage/configs/config442.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config443.txt b/src/Tatouage/configs/config443.txt new file mode 100644 index 0000000..090dd84 --- /dev/null +++ b/src/Tatouage/configs/config443.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config444.txt b/src/Tatouage/configs/config444.txt new file mode 100644 index 0000000..6903304 --- /dev/null +++ b/src/Tatouage/configs/config444.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config445.txt b/src/Tatouage/configs/config445.txt new file mode 100644 index 0000000..c9e6c93 --- /dev/null +++ b/src/Tatouage/configs/config445.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config446.txt b/src/Tatouage/configs/config446.txt new file mode 100644 index 0000000..da8e54c --- /dev/null +++ b/src/Tatouage/configs/config446.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config447.txt b/src/Tatouage/configs/config447.txt new file mode 100644 index 0000000..e653d21 --- /dev/null +++ b/src/Tatouage/configs/config447.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config448.txt b/src/Tatouage/configs/config448.txt new file mode 100644 index 0000000..aebb7d4 --- /dev/null +++ b/src/Tatouage/configs/config448.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config449.txt b/src/Tatouage/configs/config449.txt new file mode 100644 index 0000000..489946d --- /dev/null +++ b/src/Tatouage/configs/config449.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config45.txt b/src/Tatouage/configs/config45.txt new file mode 100644 index 0000000..1fa3e66 --- /dev/null +++ b/src/Tatouage/configs/config45.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config450.txt b/src/Tatouage/configs/config450.txt new file mode 100644 index 0000000..93242df --- /dev/null +++ b/src/Tatouage/configs/config450.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config451.txt b/src/Tatouage/configs/config451.txt new file mode 100644 index 0000000..fd005ba --- /dev/null +++ b/src/Tatouage/configs/config451.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config452.txt b/src/Tatouage/configs/config452.txt new file mode 100644 index 0000000..e2582e6 --- /dev/null +++ b/src/Tatouage/configs/config452.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config453.txt b/src/Tatouage/configs/config453.txt new file mode 100644 index 0000000..3d9cce6 --- /dev/null +++ b/src/Tatouage/configs/config453.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config454.txt b/src/Tatouage/configs/config454.txt new file mode 100644 index 0000000..1616292 --- /dev/null +++ b/src/Tatouage/configs/config454.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config455.txt b/src/Tatouage/configs/config455.txt new file mode 100644 index 0000000..dc4e331 --- /dev/null +++ b/src/Tatouage/configs/config455.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config456.txt b/src/Tatouage/configs/config456.txt new file mode 100644 index 0000000..9c2f094 --- /dev/null +++ b/src/Tatouage/configs/config456.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config457.txt b/src/Tatouage/configs/config457.txt new file mode 100644 index 0000000..7c6b320 --- /dev/null +++ b/src/Tatouage/configs/config457.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config458.txt b/src/Tatouage/configs/config458.txt new file mode 100644 index 0000000..7596879 --- /dev/null +++ b/src/Tatouage/configs/config458.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config459.txt b/src/Tatouage/configs/config459.txt new file mode 100644 index 0000000..19061cb --- /dev/null +++ b/src/Tatouage/configs/config459.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config46.txt b/src/Tatouage/configs/config46.txt new file mode 100644 index 0000000..a432fca --- /dev/null +++ b/src/Tatouage/configs/config46.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config460.txt b/src/Tatouage/configs/config460.txt new file mode 100644 index 0000000..97ba340 --- /dev/null +++ b/src/Tatouage/configs/config460.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config461.txt b/src/Tatouage/configs/config461.txt new file mode 100644 index 0000000..396765f --- /dev/null +++ b/src/Tatouage/configs/config461.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config462.txt b/src/Tatouage/configs/config462.txt new file mode 100644 index 0000000..c68d467 --- /dev/null +++ b/src/Tatouage/configs/config462.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config463.txt b/src/Tatouage/configs/config463.txt new file mode 100644 index 0000000..3a9e3ed --- /dev/null +++ b/src/Tatouage/configs/config463.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config464.txt b/src/Tatouage/configs/config464.txt new file mode 100644 index 0000000..f31e47a --- /dev/null +++ b/src/Tatouage/configs/config464.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config465.txt b/src/Tatouage/configs/config465.txt new file mode 100644 index 0000000..861e3d3 --- /dev/null +++ b/src/Tatouage/configs/config465.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config466.txt b/src/Tatouage/configs/config466.txt new file mode 100644 index 0000000..79e8644 --- /dev/null +++ b/src/Tatouage/configs/config466.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config467.txt b/src/Tatouage/configs/config467.txt new file mode 100644 index 0000000..f1cd5be --- /dev/null +++ b/src/Tatouage/configs/config467.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config468.txt b/src/Tatouage/configs/config468.txt new file mode 100644 index 0000000..850bd7d --- /dev/null +++ b/src/Tatouage/configs/config468.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config469.txt b/src/Tatouage/configs/config469.txt new file mode 100644 index 0000000..64b94b0 --- /dev/null +++ b/src/Tatouage/configs/config469.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config47.txt b/src/Tatouage/configs/config47.txt new file mode 100644 index 0000000..c20f884 --- /dev/null +++ b/src/Tatouage/configs/config47.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config470.txt b/src/Tatouage/configs/config470.txt new file mode 100644 index 0000000..92d70dc --- /dev/null +++ b/src/Tatouage/configs/config470.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config471.txt b/src/Tatouage/configs/config471.txt new file mode 100644 index 0000000..b4089c2 --- /dev/null +++ b/src/Tatouage/configs/config471.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config472.txt b/src/Tatouage/configs/config472.txt new file mode 100644 index 0000000..2094216 --- /dev/null +++ b/src/Tatouage/configs/config472.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config473.txt b/src/Tatouage/configs/config473.txt new file mode 100644 index 0000000..88d3079 --- /dev/null +++ b/src/Tatouage/configs/config473.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config474.txt b/src/Tatouage/configs/config474.txt new file mode 100644 index 0000000..22f8036 --- /dev/null +++ b/src/Tatouage/configs/config474.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config475.txt b/src/Tatouage/configs/config475.txt new file mode 100644 index 0000000..c4b360b --- /dev/null +++ b/src/Tatouage/configs/config475.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config476.txt b/src/Tatouage/configs/config476.txt new file mode 100644 index 0000000..78cb5f7 --- /dev/null +++ b/src/Tatouage/configs/config476.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config477.txt b/src/Tatouage/configs/config477.txt new file mode 100644 index 0000000..eff0492 --- /dev/null +++ b/src/Tatouage/configs/config477.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config478.txt b/src/Tatouage/configs/config478.txt new file mode 100644 index 0000000..9b2530e --- /dev/null +++ b/src/Tatouage/configs/config478.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config479.txt b/src/Tatouage/configs/config479.txt new file mode 100644 index 0000000..079585c --- /dev/null +++ b/src/Tatouage/configs/config479.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config48.txt b/src/Tatouage/configs/config48.txt new file mode 100644 index 0000000..28d17ca --- /dev/null +++ b/src/Tatouage/configs/config48.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config480.txt b/src/Tatouage/configs/config480.txt new file mode 100644 index 0000000..129eca1 --- /dev/null +++ b/src/Tatouage/configs/config480.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config481.txt b/src/Tatouage/configs/config481.txt new file mode 100644 index 0000000..7bb0cf0 --- /dev/null +++ b/src/Tatouage/configs/config481.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config482.txt b/src/Tatouage/configs/config482.txt new file mode 100644 index 0000000..cba3e36 --- /dev/null +++ b/src/Tatouage/configs/config482.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config483.txt b/src/Tatouage/configs/config483.txt new file mode 100644 index 0000000..47b2411 --- /dev/null +++ b/src/Tatouage/configs/config483.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config484.txt b/src/Tatouage/configs/config484.txt new file mode 100644 index 0000000..49c4e90 --- /dev/null +++ b/src/Tatouage/configs/config484.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config485.txt b/src/Tatouage/configs/config485.txt new file mode 100644 index 0000000..55e3152 --- /dev/null +++ b/src/Tatouage/configs/config485.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config486.txt b/src/Tatouage/configs/config486.txt new file mode 100644 index 0000000..e6c8ca7 --- /dev/null +++ b/src/Tatouage/configs/config486.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config487.txt b/src/Tatouage/configs/config487.txt new file mode 100644 index 0000000..24855bd --- /dev/null +++ b/src/Tatouage/configs/config487.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config488.txt b/src/Tatouage/configs/config488.txt new file mode 100644 index 0000000..d6689a2 --- /dev/null +++ b/src/Tatouage/configs/config488.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config489.txt b/src/Tatouage/configs/config489.txt new file mode 100644 index 0000000..b5a4fa3 --- /dev/null +++ b/src/Tatouage/configs/config489.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config49.txt b/src/Tatouage/configs/config49.txt new file mode 100644 index 0000000..cbc89f9 --- /dev/null +++ b/src/Tatouage/configs/config49.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config490.txt b/src/Tatouage/configs/config490.txt new file mode 100644 index 0000000..ca13ceb --- /dev/null +++ b/src/Tatouage/configs/config490.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config491.txt b/src/Tatouage/configs/config491.txt new file mode 100644 index 0000000..d2aa1f7 --- /dev/null +++ b/src/Tatouage/configs/config491.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config492.txt b/src/Tatouage/configs/config492.txt new file mode 100644 index 0000000..b8c8dfb --- /dev/null +++ b/src/Tatouage/configs/config492.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config493.txt b/src/Tatouage/configs/config493.txt new file mode 100644 index 0000000..d9a7973 --- /dev/null +++ b/src/Tatouage/configs/config493.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config494.txt b/src/Tatouage/configs/config494.txt new file mode 100644 index 0000000..064d293 --- /dev/null +++ b/src/Tatouage/configs/config494.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config495.txt b/src/Tatouage/configs/config495.txt new file mode 100644 index 0000000..2a77b1a --- /dev/null +++ b/src/Tatouage/configs/config495.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config496.txt b/src/Tatouage/configs/config496.txt new file mode 100644 index 0000000..55dcea3 --- /dev/null +++ b/src/Tatouage/configs/config496.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config497.txt b/src/Tatouage/configs/config497.txt new file mode 100644 index 0000000..a2fc69e --- /dev/null +++ b/src/Tatouage/configs/config497.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config498.txt b/src/Tatouage/configs/config498.txt new file mode 100644 index 0000000..3858cc2 --- /dev/null +++ b/src/Tatouage/configs/config498.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 4990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config499.txt b/src/Tatouage/configs/config499.txt new file mode 100644 index 0000000..a2e9b64 --- /dev/null +++ b/src/Tatouage/configs/config499.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config5.txt b/src/Tatouage/configs/config5.txt new file mode 100644 index 0000000..7f2dfa5 --- /dev/null +++ b/src/Tatouage/configs/config5.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 60 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config50.txt b/src/Tatouage/configs/config50.txt new file mode 100644 index 0000000..d131c0b --- /dev/null +++ b/src/Tatouage/configs/config50.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config500.txt b/src/Tatouage/configs/config500.txt new file mode 100644 index 0000000..012a7b8 --- /dev/null +++ b/src/Tatouage/configs/config500.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config501.txt b/src/Tatouage/configs/config501.txt new file mode 100644 index 0000000..11a2e7d --- /dev/null +++ b/src/Tatouage/configs/config501.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config502.txt b/src/Tatouage/configs/config502.txt new file mode 100644 index 0000000..d66a2fd --- /dev/null +++ b/src/Tatouage/configs/config502.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config503.txt b/src/Tatouage/configs/config503.txt new file mode 100644 index 0000000..3c1a323 --- /dev/null +++ b/src/Tatouage/configs/config503.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config504.txt b/src/Tatouage/configs/config504.txt new file mode 100644 index 0000000..2f30133 --- /dev/null +++ b/src/Tatouage/configs/config504.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config505.txt b/src/Tatouage/configs/config505.txt new file mode 100644 index 0000000..aeaa0c4 --- /dev/null +++ b/src/Tatouage/configs/config505.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config506.txt b/src/Tatouage/configs/config506.txt new file mode 100644 index 0000000..647f0d6 --- /dev/null +++ b/src/Tatouage/configs/config506.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config507.txt b/src/Tatouage/configs/config507.txt new file mode 100644 index 0000000..995e53c --- /dev/null +++ b/src/Tatouage/configs/config507.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config508.txt b/src/Tatouage/configs/config508.txt new file mode 100644 index 0000000..7aad74a --- /dev/null +++ b/src/Tatouage/configs/config508.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config509.txt b/src/Tatouage/configs/config509.txt new file mode 100644 index 0000000..13f4269 --- /dev/null +++ b/src/Tatouage/configs/config509.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config51.txt b/src/Tatouage/configs/config51.txt new file mode 100644 index 0000000..043f7c3 --- /dev/null +++ b/src/Tatouage/configs/config51.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config510.txt b/src/Tatouage/configs/config510.txt new file mode 100644 index 0000000..b5169fc --- /dev/null +++ b/src/Tatouage/configs/config510.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config511.txt b/src/Tatouage/configs/config511.txt new file mode 100644 index 0000000..ef8bc13 --- /dev/null +++ b/src/Tatouage/configs/config511.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config512.txt b/src/Tatouage/configs/config512.txt new file mode 100644 index 0000000..006676b --- /dev/null +++ b/src/Tatouage/configs/config512.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config513.txt b/src/Tatouage/configs/config513.txt new file mode 100644 index 0000000..826117b --- /dev/null +++ b/src/Tatouage/configs/config513.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config514.txt b/src/Tatouage/configs/config514.txt new file mode 100644 index 0000000..ec40453 --- /dev/null +++ b/src/Tatouage/configs/config514.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config515.txt b/src/Tatouage/configs/config515.txt new file mode 100644 index 0000000..146486c --- /dev/null +++ b/src/Tatouage/configs/config515.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config516.txt b/src/Tatouage/configs/config516.txt new file mode 100644 index 0000000..70722bf --- /dev/null +++ b/src/Tatouage/configs/config516.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config517.txt b/src/Tatouage/configs/config517.txt new file mode 100644 index 0000000..44fbecd --- /dev/null +++ b/src/Tatouage/configs/config517.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config518.txt b/src/Tatouage/configs/config518.txt new file mode 100644 index 0000000..d06d220 --- /dev/null +++ b/src/Tatouage/configs/config518.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config519.txt b/src/Tatouage/configs/config519.txt new file mode 100644 index 0000000..7b3ec22 --- /dev/null +++ b/src/Tatouage/configs/config519.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config52.txt b/src/Tatouage/configs/config52.txt new file mode 100644 index 0000000..ebac384 --- /dev/null +++ b/src/Tatouage/configs/config52.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config520.txt b/src/Tatouage/configs/config520.txt new file mode 100644 index 0000000..fa0cc0c --- /dev/null +++ b/src/Tatouage/configs/config520.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config521.txt b/src/Tatouage/configs/config521.txt new file mode 100644 index 0000000..b914a7b --- /dev/null +++ b/src/Tatouage/configs/config521.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config522.txt b/src/Tatouage/configs/config522.txt new file mode 100644 index 0000000..bec2c36 --- /dev/null +++ b/src/Tatouage/configs/config522.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config523.txt b/src/Tatouage/configs/config523.txt new file mode 100644 index 0000000..f39bd4b --- /dev/null +++ b/src/Tatouage/configs/config523.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config524.txt b/src/Tatouage/configs/config524.txt new file mode 100644 index 0000000..78809c6 --- /dev/null +++ b/src/Tatouage/configs/config524.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config525.txt b/src/Tatouage/configs/config525.txt new file mode 100644 index 0000000..b23cc4c --- /dev/null +++ b/src/Tatouage/configs/config525.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config526.txt b/src/Tatouage/configs/config526.txt new file mode 100644 index 0000000..a135a4e --- /dev/null +++ b/src/Tatouage/configs/config526.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config527.txt b/src/Tatouage/configs/config527.txt new file mode 100644 index 0000000..cc4e6b6 --- /dev/null +++ b/src/Tatouage/configs/config527.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config528.txt b/src/Tatouage/configs/config528.txt new file mode 100644 index 0000000..aa0ed35 --- /dev/null +++ b/src/Tatouage/configs/config528.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config529.txt b/src/Tatouage/configs/config529.txt new file mode 100644 index 0000000..b328b97 --- /dev/null +++ b/src/Tatouage/configs/config529.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config53.txt b/src/Tatouage/configs/config53.txt new file mode 100644 index 0000000..2e98422 --- /dev/null +++ b/src/Tatouage/configs/config53.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config530.txt b/src/Tatouage/configs/config530.txt new file mode 100644 index 0000000..050f2e6 --- /dev/null +++ b/src/Tatouage/configs/config530.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config531.txt b/src/Tatouage/configs/config531.txt new file mode 100644 index 0000000..d1ce678 --- /dev/null +++ b/src/Tatouage/configs/config531.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config532.txt b/src/Tatouage/configs/config532.txt new file mode 100644 index 0000000..30254f7 --- /dev/null +++ b/src/Tatouage/configs/config532.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config533.txt b/src/Tatouage/configs/config533.txt new file mode 100644 index 0000000..bf6ec60 --- /dev/null +++ b/src/Tatouage/configs/config533.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config534.txt b/src/Tatouage/configs/config534.txt new file mode 100644 index 0000000..71e684b --- /dev/null +++ b/src/Tatouage/configs/config534.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config535.txt b/src/Tatouage/configs/config535.txt new file mode 100644 index 0000000..0d59f01 --- /dev/null +++ b/src/Tatouage/configs/config535.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config536.txt b/src/Tatouage/configs/config536.txt new file mode 100644 index 0000000..5dc9c4c --- /dev/null +++ b/src/Tatouage/configs/config536.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config537.txt b/src/Tatouage/configs/config537.txt new file mode 100644 index 0000000..c3f7588 --- /dev/null +++ b/src/Tatouage/configs/config537.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config538.txt b/src/Tatouage/configs/config538.txt new file mode 100644 index 0000000..5deabe8 --- /dev/null +++ b/src/Tatouage/configs/config538.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config539.txt b/src/Tatouage/configs/config539.txt new file mode 100644 index 0000000..9ce9fd1 --- /dev/null +++ b/src/Tatouage/configs/config539.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config54.txt b/src/Tatouage/configs/config54.txt new file mode 100644 index 0000000..48cf3a1 --- /dev/null +++ b/src/Tatouage/configs/config54.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config540.txt b/src/Tatouage/configs/config540.txt new file mode 100644 index 0000000..9220df8 --- /dev/null +++ b/src/Tatouage/configs/config540.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config541.txt b/src/Tatouage/configs/config541.txt new file mode 100644 index 0000000..a04afe2 --- /dev/null +++ b/src/Tatouage/configs/config541.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config542.txt b/src/Tatouage/configs/config542.txt new file mode 100644 index 0000000..474d478 --- /dev/null +++ b/src/Tatouage/configs/config542.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config543.txt b/src/Tatouage/configs/config543.txt new file mode 100644 index 0000000..fef8be5 --- /dev/null +++ b/src/Tatouage/configs/config543.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config544.txt b/src/Tatouage/configs/config544.txt new file mode 100644 index 0000000..7f4226c --- /dev/null +++ b/src/Tatouage/configs/config544.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config545.txt b/src/Tatouage/configs/config545.txt new file mode 100644 index 0000000..5154137 --- /dev/null +++ b/src/Tatouage/configs/config545.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config546.txt b/src/Tatouage/configs/config546.txt new file mode 100644 index 0000000..70f0c88 --- /dev/null +++ b/src/Tatouage/configs/config546.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config547.txt b/src/Tatouage/configs/config547.txt new file mode 100644 index 0000000..15c8711 --- /dev/null +++ b/src/Tatouage/configs/config547.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config548.txt b/src/Tatouage/configs/config548.txt new file mode 100644 index 0000000..a8d30f5 --- /dev/null +++ b/src/Tatouage/configs/config548.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config549.txt b/src/Tatouage/configs/config549.txt new file mode 100644 index 0000000..8ac844e --- /dev/null +++ b/src/Tatouage/configs/config549.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config55.txt b/src/Tatouage/configs/config55.txt new file mode 100644 index 0000000..ddae4bf --- /dev/null +++ b/src/Tatouage/configs/config55.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config550.txt b/src/Tatouage/configs/config550.txt new file mode 100644 index 0000000..8396789 --- /dev/null +++ b/src/Tatouage/configs/config550.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config551.txt b/src/Tatouage/configs/config551.txt new file mode 100644 index 0000000..b614542 --- /dev/null +++ b/src/Tatouage/configs/config551.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config552.txt b/src/Tatouage/configs/config552.txt new file mode 100644 index 0000000..a5028a5 --- /dev/null +++ b/src/Tatouage/configs/config552.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config553.txt b/src/Tatouage/configs/config553.txt new file mode 100644 index 0000000..df74f69 --- /dev/null +++ b/src/Tatouage/configs/config553.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config554.txt b/src/Tatouage/configs/config554.txt new file mode 100644 index 0000000..0dafc00 --- /dev/null +++ b/src/Tatouage/configs/config554.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config555.txt b/src/Tatouage/configs/config555.txt new file mode 100644 index 0000000..a42b8c8 --- /dev/null +++ b/src/Tatouage/configs/config555.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config556.txt b/src/Tatouage/configs/config556.txt new file mode 100644 index 0000000..901fdb7 --- /dev/null +++ b/src/Tatouage/configs/config556.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config557.txt b/src/Tatouage/configs/config557.txt new file mode 100644 index 0000000..ca92ca7 --- /dev/null +++ b/src/Tatouage/configs/config557.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config558.txt b/src/Tatouage/configs/config558.txt new file mode 100644 index 0000000..2492287 --- /dev/null +++ b/src/Tatouage/configs/config558.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config559.txt b/src/Tatouage/configs/config559.txt new file mode 100644 index 0000000..09b7594 --- /dev/null +++ b/src/Tatouage/configs/config559.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config56.txt b/src/Tatouage/configs/config56.txt new file mode 100644 index 0000000..0619fd0 --- /dev/null +++ b/src/Tatouage/configs/config56.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config560.txt b/src/Tatouage/configs/config560.txt new file mode 100644 index 0000000..732e189 --- /dev/null +++ b/src/Tatouage/configs/config560.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config561.txt b/src/Tatouage/configs/config561.txt new file mode 100644 index 0000000..8588c1d --- /dev/null +++ b/src/Tatouage/configs/config561.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config562.txt b/src/Tatouage/configs/config562.txt new file mode 100644 index 0000000..5a25425 --- /dev/null +++ b/src/Tatouage/configs/config562.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config563.txt b/src/Tatouage/configs/config563.txt new file mode 100644 index 0000000..679e0d3 --- /dev/null +++ b/src/Tatouage/configs/config563.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config564.txt b/src/Tatouage/configs/config564.txt new file mode 100644 index 0000000..06ef75d --- /dev/null +++ b/src/Tatouage/configs/config564.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config565.txt b/src/Tatouage/configs/config565.txt new file mode 100644 index 0000000..2544a12 --- /dev/null +++ b/src/Tatouage/configs/config565.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config566.txt b/src/Tatouage/configs/config566.txt new file mode 100644 index 0000000..2de490b --- /dev/null +++ b/src/Tatouage/configs/config566.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config567.txt b/src/Tatouage/configs/config567.txt new file mode 100644 index 0000000..8788961 --- /dev/null +++ b/src/Tatouage/configs/config567.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config568.txt b/src/Tatouage/configs/config568.txt new file mode 100644 index 0000000..0a36c65 --- /dev/null +++ b/src/Tatouage/configs/config568.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config569.txt b/src/Tatouage/configs/config569.txt new file mode 100644 index 0000000..c04ee0a --- /dev/null +++ b/src/Tatouage/configs/config569.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config57.txt b/src/Tatouage/configs/config57.txt new file mode 100644 index 0000000..af50f60 --- /dev/null +++ b/src/Tatouage/configs/config57.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config570.txt b/src/Tatouage/configs/config570.txt new file mode 100644 index 0000000..7d01b64 --- /dev/null +++ b/src/Tatouage/configs/config570.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config571.txt b/src/Tatouage/configs/config571.txt new file mode 100644 index 0000000..0c00ec4 --- /dev/null +++ b/src/Tatouage/configs/config571.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config572.txt b/src/Tatouage/configs/config572.txt new file mode 100644 index 0000000..38e283b --- /dev/null +++ b/src/Tatouage/configs/config572.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config573.txt b/src/Tatouage/configs/config573.txt new file mode 100644 index 0000000..1105c2a --- /dev/null +++ b/src/Tatouage/configs/config573.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config574.txt b/src/Tatouage/configs/config574.txt new file mode 100644 index 0000000..0a0da2b --- /dev/null +++ b/src/Tatouage/configs/config574.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config575.txt b/src/Tatouage/configs/config575.txt new file mode 100644 index 0000000..563846c --- /dev/null +++ b/src/Tatouage/configs/config575.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config576.txt b/src/Tatouage/configs/config576.txt new file mode 100644 index 0000000..a38f053 --- /dev/null +++ b/src/Tatouage/configs/config576.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config577.txt b/src/Tatouage/configs/config577.txt new file mode 100644 index 0000000..74dd105 --- /dev/null +++ b/src/Tatouage/configs/config577.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config578.txt b/src/Tatouage/configs/config578.txt new file mode 100644 index 0000000..a277917 --- /dev/null +++ b/src/Tatouage/configs/config578.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config579.txt b/src/Tatouage/configs/config579.txt new file mode 100644 index 0000000..43a0c34 --- /dev/null +++ b/src/Tatouage/configs/config579.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config58.txt b/src/Tatouage/configs/config58.txt new file mode 100644 index 0000000..256802f --- /dev/null +++ b/src/Tatouage/configs/config58.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config580.txt b/src/Tatouage/configs/config580.txt new file mode 100644 index 0000000..0ff9f52 --- /dev/null +++ b/src/Tatouage/configs/config580.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config581.txt b/src/Tatouage/configs/config581.txt new file mode 100644 index 0000000..8fea1f1 --- /dev/null +++ b/src/Tatouage/configs/config581.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config582.txt b/src/Tatouage/configs/config582.txt new file mode 100644 index 0000000..e771b13 --- /dev/null +++ b/src/Tatouage/configs/config582.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config583.txt b/src/Tatouage/configs/config583.txt new file mode 100644 index 0000000..3ce0180 --- /dev/null +++ b/src/Tatouage/configs/config583.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config584.txt b/src/Tatouage/configs/config584.txt new file mode 100644 index 0000000..23a8110 --- /dev/null +++ b/src/Tatouage/configs/config584.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config585.txt b/src/Tatouage/configs/config585.txt new file mode 100644 index 0000000..7893a86 --- /dev/null +++ b/src/Tatouage/configs/config585.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config586.txt b/src/Tatouage/configs/config586.txt new file mode 100644 index 0000000..f63bcf9 --- /dev/null +++ b/src/Tatouage/configs/config586.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config587.txt b/src/Tatouage/configs/config587.txt new file mode 100644 index 0000000..30a0e6b --- /dev/null +++ b/src/Tatouage/configs/config587.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config588.txt b/src/Tatouage/configs/config588.txt new file mode 100644 index 0000000..b1c1e70 --- /dev/null +++ b/src/Tatouage/configs/config588.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config589.txt b/src/Tatouage/configs/config589.txt new file mode 100644 index 0000000..aea5686 --- /dev/null +++ b/src/Tatouage/configs/config589.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config59.txt b/src/Tatouage/configs/config59.txt new file mode 100644 index 0000000..a432353 --- /dev/null +++ b/src/Tatouage/configs/config59.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config590.txt b/src/Tatouage/configs/config590.txt new file mode 100644 index 0000000..5ecde21 --- /dev/null +++ b/src/Tatouage/configs/config590.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config591.txt b/src/Tatouage/configs/config591.txt new file mode 100644 index 0000000..71d9749 --- /dev/null +++ b/src/Tatouage/configs/config591.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config592.txt b/src/Tatouage/configs/config592.txt new file mode 100644 index 0000000..f74d1d4 --- /dev/null +++ b/src/Tatouage/configs/config592.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config593.txt b/src/Tatouage/configs/config593.txt new file mode 100644 index 0000000..75b7141 --- /dev/null +++ b/src/Tatouage/configs/config593.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config594.txt b/src/Tatouage/configs/config594.txt new file mode 100644 index 0000000..a596a13 --- /dev/null +++ b/src/Tatouage/configs/config594.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config595.txt b/src/Tatouage/configs/config595.txt new file mode 100644 index 0000000..718c1c3 --- /dev/null +++ b/src/Tatouage/configs/config595.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config596.txt b/src/Tatouage/configs/config596.txt new file mode 100644 index 0000000..07d0092 --- /dev/null +++ b/src/Tatouage/configs/config596.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config597.txt b/src/Tatouage/configs/config597.txt new file mode 100644 index 0000000..0834c70 --- /dev/null +++ b/src/Tatouage/configs/config597.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config598.txt b/src/Tatouage/configs/config598.txt new file mode 100644 index 0000000..f5bc45a --- /dev/null +++ b/src/Tatouage/configs/config598.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 5990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config599.txt b/src/Tatouage/configs/config599.txt new file mode 100644 index 0000000..129b747 --- /dev/null +++ b/src/Tatouage/configs/config599.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config6.txt b/src/Tatouage/configs/config6.txt new file mode 100644 index 0000000..f436f04 --- /dev/null +++ b/src/Tatouage/configs/config6.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 70 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config60.txt b/src/Tatouage/configs/config60.txt new file mode 100644 index 0000000..8e5f992 --- /dev/null +++ b/src/Tatouage/configs/config60.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config600.txt b/src/Tatouage/configs/config600.txt new file mode 100644 index 0000000..fcdb0fa --- /dev/null +++ b/src/Tatouage/configs/config600.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config601.txt b/src/Tatouage/configs/config601.txt new file mode 100644 index 0000000..ea461f0 --- /dev/null +++ b/src/Tatouage/configs/config601.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config602.txt b/src/Tatouage/configs/config602.txt new file mode 100644 index 0000000..a7fa8e5 --- /dev/null +++ b/src/Tatouage/configs/config602.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config603.txt b/src/Tatouage/configs/config603.txt new file mode 100644 index 0000000..8d190fd --- /dev/null +++ b/src/Tatouage/configs/config603.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config604.txt b/src/Tatouage/configs/config604.txt new file mode 100644 index 0000000..6e4163e --- /dev/null +++ b/src/Tatouage/configs/config604.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config605.txt b/src/Tatouage/configs/config605.txt new file mode 100644 index 0000000..f11b1ba --- /dev/null +++ b/src/Tatouage/configs/config605.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config606.txt b/src/Tatouage/configs/config606.txt new file mode 100644 index 0000000..17e6459 --- /dev/null +++ b/src/Tatouage/configs/config606.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config607.txt b/src/Tatouage/configs/config607.txt new file mode 100644 index 0000000..cf45cb0 --- /dev/null +++ b/src/Tatouage/configs/config607.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config608.txt b/src/Tatouage/configs/config608.txt new file mode 100644 index 0000000..7deeb32 --- /dev/null +++ b/src/Tatouage/configs/config608.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config609.txt b/src/Tatouage/configs/config609.txt new file mode 100644 index 0000000..ee83c5e --- /dev/null +++ b/src/Tatouage/configs/config609.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config61.txt b/src/Tatouage/configs/config61.txt new file mode 100644 index 0000000..50fabb2 --- /dev/null +++ b/src/Tatouage/configs/config61.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config610.txt b/src/Tatouage/configs/config610.txt new file mode 100644 index 0000000..e204367 --- /dev/null +++ b/src/Tatouage/configs/config610.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config611.txt b/src/Tatouage/configs/config611.txt new file mode 100644 index 0000000..c154ec8 --- /dev/null +++ b/src/Tatouage/configs/config611.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config612.txt b/src/Tatouage/configs/config612.txt new file mode 100644 index 0000000..0f55b8b --- /dev/null +++ b/src/Tatouage/configs/config612.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config613.txt b/src/Tatouage/configs/config613.txt new file mode 100644 index 0000000..ab0c0ee --- /dev/null +++ b/src/Tatouage/configs/config613.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config614.txt b/src/Tatouage/configs/config614.txt new file mode 100644 index 0000000..48f374e --- /dev/null +++ b/src/Tatouage/configs/config614.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config615.txt b/src/Tatouage/configs/config615.txt new file mode 100644 index 0000000..8007b30 --- /dev/null +++ b/src/Tatouage/configs/config615.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config616.txt b/src/Tatouage/configs/config616.txt new file mode 100644 index 0000000..005c573 --- /dev/null +++ b/src/Tatouage/configs/config616.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config617.txt b/src/Tatouage/configs/config617.txt new file mode 100644 index 0000000..04ec04e --- /dev/null +++ b/src/Tatouage/configs/config617.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config618.txt b/src/Tatouage/configs/config618.txt new file mode 100644 index 0000000..1123c1d --- /dev/null +++ b/src/Tatouage/configs/config618.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config619.txt b/src/Tatouage/configs/config619.txt new file mode 100644 index 0000000..40c4b6f --- /dev/null +++ b/src/Tatouage/configs/config619.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config62.txt b/src/Tatouage/configs/config62.txt new file mode 100644 index 0000000..511864e --- /dev/null +++ b/src/Tatouage/configs/config62.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config620.txt b/src/Tatouage/configs/config620.txt new file mode 100644 index 0000000..10f9af6 --- /dev/null +++ b/src/Tatouage/configs/config620.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config621.txt b/src/Tatouage/configs/config621.txt new file mode 100644 index 0000000..9316202 --- /dev/null +++ b/src/Tatouage/configs/config621.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config622.txt b/src/Tatouage/configs/config622.txt new file mode 100644 index 0000000..5870357 --- /dev/null +++ b/src/Tatouage/configs/config622.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config623.txt b/src/Tatouage/configs/config623.txt new file mode 100644 index 0000000..b142e27 --- /dev/null +++ b/src/Tatouage/configs/config623.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config624.txt b/src/Tatouage/configs/config624.txt new file mode 100644 index 0000000..5914ce3 --- /dev/null +++ b/src/Tatouage/configs/config624.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config625.txt b/src/Tatouage/configs/config625.txt new file mode 100644 index 0000000..b7ac067 --- /dev/null +++ b/src/Tatouage/configs/config625.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config626.txt b/src/Tatouage/configs/config626.txt new file mode 100644 index 0000000..8da5232 --- /dev/null +++ b/src/Tatouage/configs/config626.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config627.txt b/src/Tatouage/configs/config627.txt new file mode 100644 index 0000000..62ac50f --- /dev/null +++ b/src/Tatouage/configs/config627.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config628.txt b/src/Tatouage/configs/config628.txt new file mode 100644 index 0000000..1645a4c --- /dev/null +++ b/src/Tatouage/configs/config628.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config629.txt b/src/Tatouage/configs/config629.txt new file mode 100644 index 0000000..427fbfe --- /dev/null +++ b/src/Tatouage/configs/config629.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config63.txt b/src/Tatouage/configs/config63.txt new file mode 100644 index 0000000..42d9ef8 --- /dev/null +++ b/src/Tatouage/configs/config63.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config630.txt b/src/Tatouage/configs/config630.txt new file mode 100644 index 0000000..ce3cca0 --- /dev/null +++ b/src/Tatouage/configs/config630.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config631.txt b/src/Tatouage/configs/config631.txt new file mode 100644 index 0000000..5ff22a3 --- /dev/null +++ b/src/Tatouage/configs/config631.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config632.txt b/src/Tatouage/configs/config632.txt new file mode 100644 index 0000000..95d33c1 --- /dev/null +++ b/src/Tatouage/configs/config632.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config633.txt b/src/Tatouage/configs/config633.txt new file mode 100644 index 0000000..dd75efc --- /dev/null +++ b/src/Tatouage/configs/config633.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config634.txt b/src/Tatouage/configs/config634.txt new file mode 100644 index 0000000..2c4155a --- /dev/null +++ b/src/Tatouage/configs/config634.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config635.txt b/src/Tatouage/configs/config635.txt new file mode 100644 index 0000000..771e232 --- /dev/null +++ b/src/Tatouage/configs/config635.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config636.txt b/src/Tatouage/configs/config636.txt new file mode 100644 index 0000000..653bf41 --- /dev/null +++ b/src/Tatouage/configs/config636.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config637.txt b/src/Tatouage/configs/config637.txt new file mode 100644 index 0000000..7c98dd6 --- /dev/null +++ b/src/Tatouage/configs/config637.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config638.txt b/src/Tatouage/configs/config638.txt new file mode 100644 index 0000000..0ddd76b --- /dev/null +++ b/src/Tatouage/configs/config638.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config639.txt b/src/Tatouage/configs/config639.txt new file mode 100644 index 0000000..7547501 --- /dev/null +++ b/src/Tatouage/configs/config639.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config64.txt b/src/Tatouage/configs/config64.txt new file mode 100644 index 0000000..0df487a --- /dev/null +++ b/src/Tatouage/configs/config64.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config640.txt b/src/Tatouage/configs/config640.txt new file mode 100644 index 0000000..d6d60cb --- /dev/null +++ b/src/Tatouage/configs/config640.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config641.txt b/src/Tatouage/configs/config641.txt new file mode 100644 index 0000000..f5a3ee3 --- /dev/null +++ b/src/Tatouage/configs/config641.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config642.txt b/src/Tatouage/configs/config642.txt new file mode 100644 index 0000000..a5a745d --- /dev/null +++ b/src/Tatouage/configs/config642.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config643.txt b/src/Tatouage/configs/config643.txt new file mode 100644 index 0000000..72f38ee --- /dev/null +++ b/src/Tatouage/configs/config643.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config644.txt b/src/Tatouage/configs/config644.txt new file mode 100644 index 0000000..adada95 --- /dev/null +++ b/src/Tatouage/configs/config644.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config645.txt b/src/Tatouage/configs/config645.txt new file mode 100644 index 0000000..19461b8 --- /dev/null +++ b/src/Tatouage/configs/config645.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config646.txt b/src/Tatouage/configs/config646.txt new file mode 100644 index 0000000..f0f4902 --- /dev/null +++ b/src/Tatouage/configs/config646.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config647.txt b/src/Tatouage/configs/config647.txt new file mode 100644 index 0000000..b8e7576 --- /dev/null +++ b/src/Tatouage/configs/config647.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config648.txt b/src/Tatouage/configs/config648.txt new file mode 100644 index 0000000..0837b40 --- /dev/null +++ b/src/Tatouage/configs/config648.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config649.txt b/src/Tatouage/configs/config649.txt new file mode 100644 index 0000000..b828c3a --- /dev/null +++ b/src/Tatouage/configs/config649.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config65.txt b/src/Tatouage/configs/config65.txt new file mode 100644 index 0000000..22e9dd0 --- /dev/null +++ b/src/Tatouage/configs/config65.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config650.txt b/src/Tatouage/configs/config650.txt new file mode 100644 index 0000000..7774815 --- /dev/null +++ b/src/Tatouage/configs/config650.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config651.txt b/src/Tatouage/configs/config651.txt new file mode 100644 index 0000000..2032b88 --- /dev/null +++ b/src/Tatouage/configs/config651.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config652.txt b/src/Tatouage/configs/config652.txt new file mode 100644 index 0000000..3864168 --- /dev/null +++ b/src/Tatouage/configs/config652.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config653.txt b/src/Tatouage/configs/config653.txt new file mode 100644 index 0000000..acac867 --- /dev/null +++ b/src/Tatouage/configs/config653.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config654.txt b/src/Tatouage/configs/config654.txt new file mode 100644 index 0000000..5917cb6 --- /dev/null +++ b/src/Tatouage/configs/config654.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config655.txt b/src/Tatouage/configs/config655.txt new file mode 100644 index 0000000..7540d3d --- /dev/null +++ b/src/Tatouage/configs/config655.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config656.txt b/src/Tatouage/configs/config656.txt new file mode 100644 index 0000000..1d04771 --- /dev/null +++ b/src/Tatouage/configs/config656.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config657.txt b/src/Tatouage/configs/config657.txt new file mode 100644 index 0000000..1b9cc6e --- /dev/null +++ b/src/Tatouage/configs/config657.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config658.txt b/src/Tatouage/configs/config658.txt new file mode 100644 index 0000000..289e5e6 --- /dev/null +++ b/src/Tatouage/configs/config658.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config659.txt b/src/Tatouage/configs/config659.txt new file mode 100644 index 0000000..6847a26 --- /dev/null +++ b/src/Tatouage/configs/config659.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config66.txt b/src/Tatouage/configs/config66.txt new file mode 100644 index 0000000..43823eb --- /dev/null +++ b/src/Tatouage/configs/config66.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config660.txt b/src/Tatouage/configs/config660.txt new file mode 100644 index 0000000..5dda376 --- /dev/null +++ b/src/Tatouage/configs/config660.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config661.txt b/src/Tatouage/configs/config661.txt new file mode 100644 index 0000000..e7db20f --- /dev/null +++ b/src/Tatouage/configs/config661.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config662.txt b/src/Tatouage/configs/config662.txt new file mode 100644 index 0000000..b7a93ee --- /dev/null +++ b/src/Tatouage/configs/config662.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config663.txt b/src/Tatouage/configs/config663.txt new file mode 100644 index 0000000..bb7191c --- /dev/null +++ b/src/Tatouage/configs/config663.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config664.txt b/src/Tatouage/configs/config664.txt new file mode 100644 index 0000000..c2a13de --- /dev/null +++ b/src/Tatouage/configs/config664.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config665.txt b/src/Tatouage/configs/config665.txt new file mode 100644 index 0000000..91ba45d --- /dev/null +++ b/src/Tatouage/configs/config665.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config666.txt b/src/Tatouage/configs/config666.txt new file mode 100644 index 0000000..6fd47d6 --- /dev/null +++ b/src/Tatouage/configs/config666.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config667.txt b/src/Tatouage/configs/config667.txt new file mode 100644 index 0000000..d92ef91 --- /dev/null +++ b/src/Tatouage/configs/config667.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config668.txt b/src/Tatouage/configs/config668.txt new file mode 100644 index 0000000..4f8cf2e --- /dev/null +++ b/src/Tatouage/configs/config668.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config669.txt b/src/Tatouage/configs/config669.txt new file mode 100644 index 0000000..c8bef67 --- /dev/null +++ b/src/Tatouage/configs/config669.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config67.txt b/src/Tatouage/configs/config67.txt new file mode 100644 index 0000000..a7d02bc --- /dev/null +++ b/src/Tatouage/configs/config67.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config670.txt b/src/Tatouage/configs/config670.txt new file mode 100644 index 0000000..3894130 --- /dev/null +++ b/src/Tatouage/configs/config670.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config671.txt b/src/Tatouage/configs/config671.txt new file mode 100644 index 0000000..388e5ea --- /dev/null +++ b/src/Tatouage/configs/config671.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config672.txt b/src/Tatouage/configs/config672.txt new file mode 100644 index 0000000..4835a06 --- /dev/null +++ b/src/Tatouage/configs/config672.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config673.txt b/src/Tatouage/configs/config673.txt new file mode 100644 index 0000000..7f5390a --- /dev/null +++ b/src/Tatouage/configs/config673.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config674.txt b/src/Tatouage/configs/config674.txt new file mode 100644 index 0000000..b1e21fe --- /dev/null +++ b/src/Tatouage/configs/config674.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config675.txt b/src/Tatouage/configs/config675.txt new file mode 100644 index 0000000..01868d7 --- /dev/null +++ b/src/Tatouage/configs/config675.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config676.txt b/src/Tatouage/configs/config676.txt new file mode 100644 index 0000000..2df29be --- /dev/null +++ b/src/Tatouage/configs/config676.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config677.txt b/src/Tatouage/configs/config677.txt new file mode 100644 index 0000000..8415fc7 --- /dev/null +++ b/src/Tatouage/configs/config677.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config678.txt b/src/Tatouage/configs/config678.txt new file mode 100644 index 0000000..3b43f5e --- /dev/null +++ b/src/Tatouage/configs/config678.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config679.txt b/src/Tatouage/configs/config679.txt new file mode 100644 index 0000000..0adc0de --- /dev/null +++ b/src/Tatouage/configs/config679.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config68.txt b/src/Tatouage/configs/config68.txt new file mode 100644 index 0000000..f334335 --- /dev/null +++ b/src/Tatouage/configs/config68.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config680.txt b/src/Tatouage/configs/config680.txt new file mode 100644 index 0000000..dfcedb3 --- /dev/null +++ b/src/Tatouage/configs/config680.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config681.txt b/src/Tatouage/configs/config681.txt new file mode 100644 index 0000000..581c8c2 --- /dev/null +++ b/src/Tatouage/configs/config681.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config682.txt b/src/Tatouage/configs/config682.txt new file mode 100644 index 0000000..37d52b5 --- /dev/null +++ b/src/Tatouage/configs/config682.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config683.txt b/src/Tatouage/configs/config683.txt new file mode 100644 index 0000000..09553bd --- /dev/null +++ b/src/Tatouage/configs/config683.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config684.txt b/src/Tatouage/configs/config684.txt new file mode 100644 index 0000000..e0f6fc8 --- /dev/null +++ b/src/Tatouage/configs/config684.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config685.txt b/src/Tatouage/configs/config685.txt new file mode 100644 index 0000000..3b2ef7c --- /dev/null +++ b/src/Tatouage/configs/config685.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config686.txt b/src/Tatouage/configs/config686.txt new file mode 100644 index 0000000..c1af24c --- /dev/null +++ b/src/Tatouage/configs/config686.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config687.txt b/src/Tatouage/configs/config687.txt new file mode 100644 index 0000000..d3b0fe3 --- /dev/null +++ b/src/Tatouage/configs/config687.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config688.txt b/src/Tatouage/configs/config688.txt new file mode 100644 index 0000000..2488d02 --- /dev/null +++ b/src/Tatouage/configs/config688.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config689.txt b/src/Tatouage/configs/config689.txt new file mode 100644 index 0000000..7907960 --- /dev/null +++ b/src/Tatouage/configs/config689.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config69.txt b/src/Tatouage/configs/config69.txt new file mode 100644 index 0000000..aad3237 --- /dev/null +++ b/src/Tatouage/configs/config69.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config690.txt b/src/Tatouage/configs/config690.txt new file mode 100644 index 0000000..1bd6df0 --- /dev/null +++ b/src/Tatouage/configs/config690.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config691.txt b/src/Tatouage/configs/config691.txt new file mode 100644 index 0000000..cebe07c --- /dev/null +++ b/src/Tatouage/configs/config691.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config692.txt b/src/Tatouage/configs/config692.txt new file mode 100644 index 0000000..f1b335f --- /dev/null +++ b/src/Tatouage/configs/config692.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config693.txt b/src/Tatouage/configs/config693.txt new file mode 100644 index 0000000..0615a3a --- /dev/null +++ b/src/Tatouage/configs/config693.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config694.txt b/src/Tatouage/configs/config694.txt new file mode 100644 index 0000000..7f66b86 --- /dev/null +++ b/src/Tatouage/configs/config694.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config695.txt b/src/Tatouage/configs/config695.txt new file mode 100644 index 0000000..c837196 --- /dev/null +++ b/src/Tatouage/configs/config695.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config696.txt b/src/Tatouage/configs/config696.txt new file mode 100644 index 0000000..781a86a --- /dev/null +++ b/src/Tatouage/configs/config696.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config697.txt b/src/Tatouage/configs/config697.txt new file mode 100644 index 0000000..cbf35f9 --- /dev/null +++ b/src/Tatouage/configs/config697.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config698.txt b/src/Tatouage/configs/config698.txt new file mode 100644 index 0000000..8f14554 --- /dev/null +++ b/src/Tatouage/configs/config698.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 6990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config699.txt b/src/Tatouage/configs/config699.txt new file mode 100644 index 0000000..aa746d9 --- /dev/null +++ b/src/Tatouage/configs/config699.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config7.txt b/src/Tatouage/configs/config7.txt new file mode 100644 index 0000000..d90e970 --- /dev/null +++ b/src/Tatouage/configs/config7.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 80 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config70.txt b/src/Tatouage/configs/config70.txt new file mode 100644 index 0000000..915198f --- /dev/null +++ b/src/Tatouage/configs/config70.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config700.txt b/src/Tatouage/configs/config700.txt new file mode 100644 index 0000000..389a01a --- /dev/null +++ b/src/Tatouage/configs/config700.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config701.txt b/src/Tatouage/configs/config701.txt new file mode 100644 index 0000000..b87d68b --- /dev/null +++ b/src/Tatouage/configs/config701.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config702.txt b/src/Tatouage/configs/config702.txt new file mode 100644 index 0000000..3a047b3 --- /dev/null +++ b/src/Tatouage/configs/config702.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config703.txt b/src/Tatouage/configs/config703.txt new file mode 100644 index 0000000..946f67f --- /dev/null +++ b/src/Tatouage/configs/config703.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config704.txt b/src/Tatouage/configs/config704.txt new file mode 100644 index 0000000..9bfe686 --- /dev/null +++ b/src/Tatouage/configs/config704.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config705.txt b/src/Tatouage/configs/config705.txt new file mode 100644 index 0000000..cf8e9dd --- /dev/null +++ b/src/Tatouage/configs/config705.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config706.txt b/src/Tatouage/configs/config706.txt new file mode 100644 index 0000000..e810050 --- /dev/null +++ b/src/Tatouage/configs/config706.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config707.txt b/src/Tatouage/configs/config707.txt new file mode 100644 index 0000000..bda2a33 --- /dev/null +++ b/src/Tatouage/configs/config707.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config708.txt b/src/Tatouage/configs/config708.txt new file mode 100644 index 0000000..1fb8e09 --- /dev/null +++ b/src/Tatouage/configs/config708.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config709.txt b/src/Tatouage/configs/config709.txt new file mode 100644 index 0000000..83c4af8 --- /dev/null +++ b/src/Tatouage/configs/config709.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config71.txt b/src/Tatouage/configs/config71.txt new file mode 100644 index 0000000..a6cf809 --- /dev/null +++ b/src/Tatouage/configs/config71.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config710.txt b/src/Tatouage/configs/config710.txt new file mode 100644 index 0000000..91f92c4 --- /dev/null +++ b/src/Tatouage/configs/config710.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config711.txt b/src/Tatouage/configs/config711.txt new file mode 100644 index 0000000..9adad52 --- /dev/null +++ b/src/Tatouage/configs/config711.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config712.txt b/src/Tatouage/configs/config712.txt new file mode 100644 index 0000000..26b5895 --- /dev/null +++ b/src/Tatouage/configs/config712.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config713.txt b/src/Tatouage/configs/config713.txt new file mode 100644 index 0000000..2042f6b --- /dev/null +++ b/src/Tatouage/configs/config713.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config714.txt b/src/Tatouage/configs/config714.txt new file mode 100644 index 0000000..bcf387e --- /dev/null +++ b/src/Tatouage/configs/config714.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config715.txt b/src/Tatouage/configs/config715.txt new file mode 100644 index 0000000..f5522b3 --- /dev/null +++ b/src/Tatouage/configs/config715.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config716.txt b/src/Tatouage/configs/config716.txt new file mode 100644 index 0000000..127f5c3 --- /dev/null +++ b/src/Tatouage/configs/config716.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config717.txt b/src/Tatouage/configs/config717.txt new file mode 100644 index 0000000..d092c6a --- /dev/null +++ b/src/Tatouage/configs/config717.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config718.txt b/src/Tatouage/configs/config718.txt new file mode 100644 index 0000000..067e81c --- /dev/null +++ b/src/Tatouage/configs/config718.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config719.txt b/src/Tatouage/configs/config719.txt new file mode 100644 index 0000000..ce09d9c --- /dev/null +++ b/src/Tatouage/configs/config719.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config72.txt b/src/Tatouage/configs/config72.txt new file mode 100644 index 0000000..d7c4d54 --- /dev/null +++ b/src/Tatouage/configs/config72.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config720.txt b/src/Tatouage/configs/config720.txt new file mode 100644 index 0000000..2bf65f0 --- /dev/null +++ b/src/Tatouage/configs/config720.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config721.txt b/src/Tatouage/configs/config721.txt new file mode 100644 index 0000000..9783a50 --- /dev/null +++ b/src/Tatouage/configs/config721.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config722.txt b/src/Tatouage/configs/config722.txt new file mode 100644 index 0000000..fce7f45 --- /dev/null +++ b/src/Tatouage/configs/config722.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config723.txt b/src/Tatouage/configs/config723.txt new file mode 100644 index 0000000..e6c2589 --- /dev/null +++ b/src/Tatouage/configs/config723.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config724.txt b/src/Tatouage/configs/config724.txt new file mode 100644 index 0000000..849e687 --- /dev/null +++ b/src/Tatouage/configs/config724.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config725.txt b/src/Tatouage/configs/config725.txt new file mode 100644 index 0000000..7ddb759 --- /dev/null +++ b/src/Tatouage/configs/config725.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config726.txt b/src/Tatouage/configs/config726.txt new file mode 100644 index 0000000..285c139 --- /dev/null +++ b/src/Tatouage/configs/config726.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config727.txt b/src/Tatouage/configs/config727.txt new file mode 100644 index 0000000..e90ab5a --- /dev/null +++ b/src/Tatouage/configs/config727.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config728.txt b/src/Tatouage/configs/config728.txt new file mode 100644 index 0000000..770f8d5 --- /dev/null +++ b/src/Tatouage/configs/config728.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config729.txt b/src/Tatouage/configs/config729.txt new file mode 100644 index 0000000..ae55128 --- /dev/null +++ b/src/Tatouage/configs/config729.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config73.txt b/src/Tatouage/configs/config73.txt new file mode 100644 index 0000000..097aa89 --- /dev/null +++ b/src/Tatouage/configs/config73.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config730.txt b/src/Tatouage/configs/config730.txt new file mode 100644 index 0000000..d042dc5 --- /dev/null +++ b/src/Tatouage/configs/config730.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config731.txt b/src/Tatouage/configs/config731.txt new file mode 100644 index 0000000..93a428b --- /dev/null +++ b/src/Tatouage/configs/config731.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config732.txt b/src/Tatouage/configs/config732.txt new file mode 100644 index 0000000..232f379 --- /dev/null +++ b/src/Tatouage/configs/config732.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config733.txt b/src/Tatouage/configs/config733.txt new file mode 100644 index 0000000..7643819 --- /dev/null +++ b/src/Tatouage/configs/config733.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config734.txt b/src/Tatouage/configs/config734.txt new file mode 100644 index 0000000..97e7c94 --- /dev/null +++ b/src/Tatouage/configs/config734.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config735.txt b/src/Tatouage/configs/config735.txt new file mode 100644 index 0000000..871a23f --- /dev/null +++ b/src/Tatouage/configs/config735.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config736.txt b/src/Tatouage/configs/config736.txt new file mode 100644 index 0000000..70551b8 --- /dev/null +++ b/src/Tatouage/configs/config736.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config737.txt b/src/Tatouage/configs/config737.txt new file mode 100644 index 0000000..3c45a56 --- /dev/null +++ b/src/Tatouage/configs/config737.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config738.txt b/src/Tatouage/configs/config738.txt new file mode 100644 index 0000000..64a08be --- /dev/null +++ b/src/Tatouage/configs/config738.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config739.txt b/src/Tatouage/configs/config739.txt new file mode 100644 index 0000000..821349d --- /dev/null +++ b/src/Tatouage/configs/config739.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config74.txt b/src/Tatouage/configs/config74.txt new file mode 100644 index 0000000..a723207 --- /dev/null +++ b/src/Tatouage/configs/config74.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config740.txt b/src/Tatouage/configs/config740.txt new file mode 100644 index 0000000..66fb053 --- /dev/null +++ b/src/Tatouage/configs/config740.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config741.txt b/src/Tatouage/configs/config741.txt new file mode 100644 index 0000000..376ec4d --- /dev/null +++ b/src/Tatouage/configs/config741.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config742.txt b/src/Tatouage/configs/config742.txt new file mode 100644 index 0000000..f132e0d --- /dev/null +++ b/src/Tatouage/configs/config742.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config743.txt b/src/Tatouage/configs/config743.txt new file mode 100644 index 0000000..a2bee9f --- /dev/null +++ b/src/Tatouage/configs/config743.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config744.txt b/src/Tatouage/configs/config744.txt new file mode 100644 index 0000000..551c3fa --- /dev/null +++ b/src/Tatouage/configs/config744.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config745.txt b/src/Tatouage/configs/config745.txt new file mode 100644 index 0000000..5499630 --- /dev/null +++ b/src/Tatouage/configs/config745.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config746.txt b/src/Tatouage/configs/config746.txt new file mode 100644 index 0000000..268b897 --- /dev/null +++ b/src/Tatouage/configs/config746.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config747.txt b/src/Tatouage/configs/config747.txt new file mode 100644 index 0000000..f28007c --- /dev/null +++ b/src/Tatouage/configs/config747.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config748.txt b/src/Tatouage/configs/config748.txt new file mode 100644 index 0000000..93016ee --- /dev/null +++ b/src/Tatouage/configs/config748.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config749.txt b/src/Tatouage/configs/config749.txt new file mode 100644 index 0000000..ae93c1b --- /dev/null +++ b/src/Tatouage/configs/config749.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config75.txt b/src/Tatouage/configs/config75.txt new file mode 100644 index 0000000..3fbaebb --- /dev/null +++ b/src/Tatouage/configs/config75.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config750.txt b/src/Tatouage/configs/config750.txt new file mode 100644 index 0000000..a8098ac --- /dev/null +++ b/src/Tatouage/configs/config750.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config751.txt b/src/Tatouage/configs/config751.txt new file mode 100644 index 0000000..7fa89c9 --- /dev/null +++ b/src/Tatouage/configs/config751.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config752.txt b/src/Tatouage/configs/config752.txt new file mode 100644 index 0000000..37280ae --- /dev/null +++ b/src/Tatouage/configs/config752.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config753.txt b/src/Tatouage/configs/config753.txt new file mode 100644 index 0000000..a58376b --- /dev/null +++ b/src/Tatouage/configs/config753.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config754.txt b/src/Tatouage/configs/config754.txt new file mode 100644 index 0000000..0315266 --- /dev/null +++ b/src/Tatouage/configs/config754.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config755.txt b/src/Tatouage/configs/config755.txt new file mode 100644 index 0000000..b826e71 --- /dev/null +++ b/src/Tatouage/configs/config755.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config756.txt b/src/Tatouage/configs/config756.txt new file mode 100644 index 0000000..676ff41 --- /dev/null +++ b/src/Tatouage/configs/config756.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config757.txt b/src/Tatouage/configs/config757.txt new file mode 100644 index 0000000..ce47bbd --- /dev/null +++ b/src/Tatouage/configs/config757.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config758.txt b/src/Tatouage/configs/config758.txt new file mode 100644 index 0000000..cc61f22 --- /dev/null +++ b/src/Tatouage/configs/config758.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config759.txt b/src/Tatouage/configs/config759.txt new file mode 100644 index 0000000..7dc1d59 --- /dev/null +++ b/src/Tatouage/configs/config759.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config76.txt b/src/Tatouage/configs/config76.txt new file mode 100644 index 0000000..6827422 --- /dev/null +++ b/src/Tatouage/configs/config76.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config760.txt b/src/Tatouage/configs/config760.txt new file mode 100644 index 0000000..e46ef0d --- /dev/null +++ b/src/Tatouage/configs/config760.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config761.txt b/src/Tatouage/configs/config761.txt new file mode 100644 index 0000000..7cff119 --- /dev/null +++ b/src/Tatouage/configs/config761.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config762.txt b/src/Tatouage/configs/config762.txt new file mode 100644 index 0000000..c24e877 --- /dev/null +++ b/src/Tatouage/configs/config762.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config763.txt b/src/Tatouage/configs/config763.txt new file mode 100644 index 0000000..cf8abc9 --- /dev/null +++ b/src/Tatouage/configs/config763.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config764.txt b/src/Tatouage/configs/config764.txt new file mode 100644 index 0000000..c7ceac8 --- /dev/null +++ b/src/Tatouage/configs/config764.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config765.txt b/src/Tatouage/configs/config765.txt new file mode 100644 index 0000000..5929f87 --- /dev/null +++ b/src/Tatouage/configs/config765.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config766.txt b/src/Tatouage/configs/config766.txt new file mode 100644 index 0000000..a8bd557 --- /dev/null +++ b/src/Tatouage/configs/config766.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config767.txt b/src/Tatouage/configs/config767.txt new file mode 100644 index 0000000..dd9239d --- /dev/null +++ b/src/Tatouage/configs/config767.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config768.txt b/src/Tatouage/configs/config768.txt new file mode 100644 index 0000000..9cd6cca --- /dev/null +++ b/src/Tatouage/configs/config768.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config769.txt b/src/Tatouage/configs/config769.txt new file mode 100644 index 0000000..82095bf --- /dev/null +++ b/src/Tatouage/configs/config769.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config77.txt b/src/Tatouage/configs/config77.txt new file mode 100644 index 0000000..b339cef --- /dev/null +++ b/src/Tatouage/configs/config77.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config770.txt b/src/Tatouage/configs/config770.txt new file mode 100644 index 0000000..b7cec9b --- /dev/null +++ b/src/Tatouage/configs/config770.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config771.txt b/src/Tatouage/configs/config771.txt new file mode 100644 index 0000000..b3b2535 --- /dev/null +++ b/src/Tatouage/configs/config771.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config772.txt b/src/Tatouage/configs/config772.txt new file mode 100644 index 0000000..b93f04f --- /dev/null +++ b/src/Tatouage/configs/config772.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config773.txt b/src/Tatouage/configs/config773.txt new file mode 100644 index 0000000..f968570 --- /dev/null +++ b/src/Tatouage/configs/config773.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config774.txt b/src/Tatouage/configs/config774.txt new file mode 100644 index 0000000..1fb901f --- /dev/null +++ b/src/Tatouage/configs/config774.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config775.txt b/src/Tatouage/configs/config775.txt new file mode 100644 index 0000000..f31df1e --- /dev/null +++ b/src/Tatouage/configs/config775.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config776.txt b/src/Tatouage/configs/config776.txt new file mode 100644 index 0000000..9b3055c --- /dev/null +++ b/src/Tatouage/configs/config776.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config777.txt b/src/Tatouage/configs/config777.txt new file mode 100644 index 0000000..13ef7a7 --- /dev/null +++ b/src/Tatouage/configs/config777.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config778.txt b/src/Tatouage/configs/config778.txt new file mode 100644 index 0000000..99d312f --- /dev/null +++ b/src/Tatouage/configs/config778.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config779.txt b/src/Tatouage/configs/config779.txt new file mode 100644 index 0000000..fd30c44 --- /dev/null +++ b/src/Tatouage/configs/config779.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config78.txt b/src/Tatouage/configs/config78.txt new file mode 100644 index 0000000..c92cf2e --- /dev/null +++ b/src/Tatouage/configs/config78.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config780.txt b/src/Tatouage/configs/config780.txt new file mode 100644 index 0000000..2f77eee --- /dev/null +++ b/src/Tatouage/configs/config780.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config781.txt b/src/Tatouage/configs/config781.txt new file mode 100644 index 0000000..a20ae71 --- /dev/null +++ b/src/Tatouage/configs/config781.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config782.txt b/src/Tatouage/configs/config782.txt new file mode 100644 index 0000000..58f5f6a --- /dev/null +++ b/src/Tatouage/configs/config782.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config783.txt b/src/Tatouage/configs/config783.txt new file mode 100644 index 0000000..1b26ce7 --- /dev/null +++ b/src/Tatouage/configs/config783.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config784.txt b/src/Tatouage/configs/config784.txt new file mode 100644 index 0000000..6b03f09 --- /dev/null +++ b/src/Tatouage/configs/config784.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config785.txt b/src/Tatouage/configs/config785.txt new file mode 100644 index 0000000..be8f27f --- /dev/null +++ b/src/Tatouage/configs/config785.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config786.txt b/src/Tatouage/configs/config786.txt new file mode 100644 index 0000000..45d7780 --- /dev/null +++ b/src/Tatouage/configs/config786.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config787.txt b/src/Tatouage/configs/config787.txt new file mode 100644 index 0000000..3679d51 --- /dev/null +++ b/src/Tatouage/configs/config787.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config788.txt b/src/Tatouage/configs/config788.txt new file mode 100644 index 0000000..fde1765 --- /dev/null +++ b/src/Tatouage/configs/config788.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config789.txt b/src/Tatouage/configs/config789.txt new file mode 100644 index 0000000..89c165a --- /dev/null +++ b/src/Tatouage/configs/config789.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config79.txt b/src/Tatouage/configs/config79.txt new file mode 100644 index 0000000..12029a2 --- /dev/null +++ b/src/Tatouage/configs/config79.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config790.txt b/src/Tatouage/configs/config790.txt new file mode 100644 index 0000000..34a35c0 --- /dev/null +++ b/src/Tatouage/configs/config790.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config791.txt b/src/Tatouage/configs/config791.txt new file mode 100644 index 0000000..0ff3480 --- /dev/null +++ b/src/Tatouage/configs/config791.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config792.txt b/src/Tatouage/configs/config792.txt new file mode 100644 index 0000000..9b33af1 --- /dev/null +++ b/src/Tatouage/configs/config792.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config793.txt b/src/Tatouage/configs/config793.txt new file mode 100644 index 0000000..41603bf --- /dev/null +++ b/src/Tatouage/configs/config793.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config794.txt b/src/Tatouage/configs/config794.txt new file mode 100644 index 0000000..b8c7f86 --- /dev/null +++ b/src/Tatouage/configs/config794.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config795.txt b/src/Tatouage/configs/config795.txt new file mode 100644 index 0000000..f5a79d2 --- /dev/null +++ b/src/Tatouage/configs/config795.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config796.txt b/src/Tatouage/configs/config796.txt new file mode 100644 index 0000000..90c03a1 --- /dev/null +++ b/src/Tatouage/configs/config796.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config797.txt b/src/Tatouage/configs/config797.txt new file mode 100644 index 0000000..3c0c437 --- /dev/null +++ b/src/Tatouage/configs/config797.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config798.txt b/src/Tatouage/configs/config798.txt new file mode 100644 index 0000000..7c2b53b --- /dev/null +++ b/src/Tatouage/configs/config798.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 7990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config799.txt b/src/Tatouage/configs/config799.txt new file mode 100644 index 0000000..7af7db2 --- /dev/null +++ b/src/Tatouage/configs/config799.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config8.txt b/src/Tatouage/configs/config8.txt new file mode 100644 index 0000000..7777519 --- /dev/null +++ b/src/Tatouage/configs/config8.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 90 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config80.txt b/src/Tatouage/configs/config80.txt new file mode 100644 index 0000000..78aea81 --- /dev/null +++ b/src/Tatouage/configs/config80.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config800.txt b/src/Tatouage/configs/config800.txt new file mode 100644 index 0000000..c95b0f6 --- /dev/null +++ b/src/Tatouage/configs/config800.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config801.txt b/src/Tatouage/configs/config801.txt new file mode 100644 index 0000000..54e9da7 --- /dev/null +++ b/src/Tatouage/configs/config801.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config802.txt b/src/Tatouage/configs/config802.txt new file mode 100644 index 0000000..ea019ba --- /dev/null +++ b/src/Tatouage/configs/config802.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config803.txt b/src/Tatouage/configs/config803.txt new file mode 100644 index 0000000..190cd60 --- /dev/null +++ b/src/Tatouage/configs/config803.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config804.txt b/src/Tatouage/configs/config804.txt new file mode 100644 index 0000000..ea556bb --- /dev/null +++ b/src/Tatouage/configs/config804.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config805.txt b/src/Tatouage/configs/config805.txt new file mode 100644 index 0000000..2504add --- /dev/null +++ b/src/Tatouage/configs/config805.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config806.txt b/src/Tatouage/configs/config806.txt new file mode 100644 index 0000000..b879e61 --- /dev/null +++ b/src/Tatouage/configs/config806.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config807.txt b/src/Tatouage/configs/config807.txt new file mode 100644 index 0000000..241c81c --- /dev/null +++ b/src/Tatouage/configs/config807.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config808.txt b/src/Tatouage/configs/config808.txt new file mode 100644 index 0000000..3b13787 --- /dev/null +++ b/src/Tatouage/configs/config808.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config809.txt b/src/Tatouage/configs/config809.txt new file mode 100644 index 0000000..045174b --- /dev/null +++ b/src/Tatouage/configs/config809.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config81.txt b/src/Tatouage/configs/config81.txt new file mode 100644 index 0000000..3d3fa87 --- /dev/null +++ b/src/Tatouage/configs/config81.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config810.txt b/src/Tatouage/configs/config810.txt new file mode 100644 index 0000000..7547c00 --- /dev/null +++ b/src/Tatouage/configs/config810.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config811.txt b/src/Tatouage/configs/config811.txt new file mode 100644 index 0000000..be078da --- /dev/null +++ b/src/Tatouage/configs/config811.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config812.txt b/src/Tatouage/configs/config812.txt new file mode 100644 index 0000000..a977eb6 --- /dev/null +++ b/src/Tatouage/configs/config812.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config813.txt b/src/Tatouage/configs/config813.txt new file mode 100644 index 0000000..073a94b --- /dev/null +++ b/src/Tatouage/configs/config813.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config814.txt b/src/Tatouage/configs/config814.txt new file mode 100644 index 0000000..c39f705 --- /dev/null +++ b/src/Tatouage/configs/config814.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config815.txt b/src/Tatouage/configs/config815.txt new file mode 100644 index 0000000..1fb16a2 --- /dev/null +++ b/src/Tatouage/configs/config815.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config816.txt b/src/Tatouage/configs/config816.txt new file mode 100644 index 0000000..4569d6a --- /dev/null +++ b/src/Tatouage/configs/config816.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config817.txt b/src/Tatouage/configs/config817.txt new file mode 100644 index 0000000..6caead7 --- /dev/null +++ b/src/Tatouage/configs/config817.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config818.txt b/src/Tatouage/configs/config818.txt new file mode 100644 index 0000000..0ad0b9f --- /dev/null +++ b/src/Tatouage/configs/config818.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config819.txt b/src/Tatouage/configs/config819.txt new file mode 100644 index 0000000..ed23f95 --- /dev/null +++ b/src/Tatouage/configs/config819.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config82.txt b/src/Tatouage/configs/config82.txt new file mode 100644 index 0000000..f503496 --- /dev/null +++ b/src/Tatouage/configs/config82.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config820.txt b/src/Tatouage/configs/config820.txt new file mode 100644 index 0000000..2b071b1 --- /dev/null +++ b/src/Tatouage/configs/config820.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config821.txt b/src/Tatouage/configs/config821.txt new file mode 100644 index 0000000..dd5dba3 --- /dev/null +++ b/src/Tatouage/configs/config821.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config822.txt b/src/Tatouage/configs/config822.txt new file mode 100644 index 0000000..664e649 --- /dev/null +++ b/src/Tatouage/configs/config822.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config823.txt b/src/Tatouage/configs/config823.txt new file mode 100644 index 0000000..1a492ae --- /dev/null +++ b/src/Tatouage/configs/config823.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config824.txt b/src/Tatouage/configs/config824.txt new file mode 100644 index 0000000..78abb25 --- /dev/null +++ b/src/Tatouage/configs/config824.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config825.txt b/src/Tatouage/configs/config825.txt new file mode 100644 index 0000000..97f7ed3 --- /dev/null +++ b/src/Tatouage/configs/config825.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config826.txt b/src/Tatouage/configs/config826.txt new file mode 100644 index 0000000..7ada567 --- /dev/null +++ b/src/Tatouage/configs/config826.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config827.txt b/src/Tatouage/configs/config827.txt new file mode 100644 index 0000000..4b1ed7f --- /dev/null +++ b/src/Tatouage/configs/config827.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config828.txt b/src/Tatouage/configs/config828.txt new file mode 100644 index 0000000..a40884e --- /dev/null +++ b/src/Tatouage/configs/config828.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config829.txt b/src/Tatouage/configs/config829.txt new file mode 100644 index 0000000..3668118 --- /dev/null +++ b/src/Tatouage/configs/config829.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config83.txt b/src/Tatouage/configs/config83.txt new file mode 100644 index 0000000..039c771 --- /dev/null +++ b/src/Tatouage/configs/config83.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config830.txt b/src/Tatouage/configs/config830.txt new file mode 100644 index 0000000..2c75861 --- /dev/null +++ b/src/Tatouage/configs/config830.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config831.txt b/src/Tatouage/configs/config831.txt new file mode 100644 index 0000000..7951022 --- /dev/null +++ b/src/Tatouage/configs/config831.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config832.txt b/src/Tatouage/configs/config832.txt new file mode 100644 index 0000000..ee58368 --- /dev/null +++ b/src/Tatouage/configs/config832.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config833.txt b/src/Tatouage/configs/config833.txt new file mode 100644 index 0000000..bc26d45 --- /dev/null +++ b/src/Tatouage/configs/config833.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config834.txt b/src/Tatouage/configs/config834.txt new file mode 100644 index 0000000..e2544ce --- /dev/null +++ b/src/Tatouage/configs/config834.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config835.txt b/src/Tatouage/configs/config835.txt new file mode 100644 index 0000000..232bd98 --- /dev/null +++ b/src/Tatouage/configs/config835.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config836.txt b/src/Tatouage/configs/config836.txt new file mode 100644 index 0000000..c010ef9 --- /dev/null +++ b/src/Tatouage/configs/config836.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config837.txt b/src/Tatouage/configs/config837.txt new file mode 100644 index 0000000..8c94f11 --- /dev/null +++ b/src/Tatouage/configs/config837.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config838.txt b/src/Tatouage/configs/config838.txt new file mode 100644 index 0000000..dea0865 --- /dev/null +++ b/src/Tatouage/configs/config838.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config839.txt b/src/Tatouage/configs/config839.txt new file mode 100644 index 0000000..04bcfe7 --- /dev/null +++ b/src/Tatouage/configs/config839.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config84.txt b/src/Tatouage/configs/config84.txt new file mode 100644 index 0000000..2f1521e --- /dev/null +++ b/src/Tatouage/configs/config84.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config840.txt b/src/Tatouage/configs/config840.txt new file mode 100644 index 0000000..e6a8226 --- /dev/null +++ b/src/Tatouage/configs/config840.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config841.txt b/src/Tatouage/configs/config841.txt new file mode 100644 index 0000000..12923c3 --- /dev/null +++ b/src/Tatouage/configs/config841.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config842.txt b/src/Tatouage/configs/config842.txt new file mode 100644 index 0000000..9199476 --- /dev/null +++ b/src/Tatouage/configs/config842.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config843.txt b/src/Tatouage/configs/config843.txt new file mode 100644 index 0000000..3e8fe13 --- /dev/null +++ b/src/Tatouage/configs/config843.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config844.txt b/src/Tatouage/configs/config844.txt new file mode 100644 index 0000000..9608b0d --- /dev/null +++ b/src/Tatouage/configs/config844.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config845.txt b/src/Tatouage/configs/config845.txt new file mode 100644 index 0000000..31b8a4c --- /dev/null +++ b/src/Tatouage/configs/config845.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config846.txt b/src/Tatouage/configs/config846.txt new file mode 100644 index 0000000..8549756 --- /dev/null +++ b/src/Tatouage/configs/config846.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config847.txt b/src/Tatouage/configs/config847.txt new file mode 100644 index 0000000..84aa74c --- /dev/null +++ b/src/Tatouage/configs/config847.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config848.txt b/src/Tatouage/configs/config848.txt new file mode 100644 index 0000000..4e36829 --- /dev/null +++ b/src/Tatouage/configs/config848.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config849.txt b/src/Tatouage/configs/config849.txt new file mode 100644 index 0000000..393d8a0 --- /dev/null +++ b/src/Tatouage/configs/config849.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config85.txt b/src/Tatouage/configs/config85.txt new file mode 100644 index 0000000..fe397d5 --- /dev/null +++ b/src/Tatouage/configs/config85.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config850.txt b/src/Tatouage/configs/config850.txt new file mode 100644 index 0000000..0ef569c --- /dev/null +++ b/src/Tatouage/configs/config850.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config851.txt b/src/Tatouage/configs/config851.txt new file mode 100644 index 0000000..a894b98 --- /dev/null +++ b/src/Tatouage/configs/config851.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config852.txt b/src/Tatouage/configs/config852.txt new file mode 100644 index 0000000..9bd400b --- /dev/null +++ b/src/Tatouage/configs/config852.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config853.txt b/src/Tatouage/configs/config853.txt new file mode 100644 index 0000000..6fdc4dc --- /dev/null +++ b/src/Tatouage/configs/config853.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config854.txt b/src/Tatouage/configs/config854.txt new file mode 100644 index 0000000..88681c3 --- /dev/null +++ b/src/Tatouage/configs/config854.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config855.txt b/src/Tatouage/configs/config855.txt new file mode 100644 index 0000000..3a9ec73 --- /dev/null +++ b/src/Tatouage/configs/config855.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config856.txt b/src/Tatouage/configs/config856.txt new file mode 100644 index 0000000..833f59c --- /dev/null +++ b/src/Tatouage/configs/config856.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config857.txt b/src/Tatouage/configs/config857.txt new file mode 100644 index 0000000..8dc3e08 --- /dev/null +++ b/src/Tatouage/configs/config857.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config858.txt b/src/Tatouage/configs/config858.txt new file mode 100644 index 0000000..74b0d70 --- /dev/null +++ b/src/Tatouage/configs/config858.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config859.txt b/src/Tatouage/configs/config859.txt new file mode 100644 index 0000000..94f50d4 --- /dev/null +++ b/src/Tatouage/configs/config859.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config86.txt b/src/Tatouage/configs/config86.txt new file mode 100644 index 0000000..4d6d215 --- /dev/null +++ b/src/Tatouage/configs/config86.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config860.txt b/src/Tatouage/configs/config860.txt new file mode 100644 index 0000000..6244c53 --- /dev/null +++ b/src/Tatouage/configs/config860.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config861.txt b/src/Tatouage/configs/config861.txt new file mode 100644 index 0000000..aaf6f67 --- /dev/null +++ b/src/Tatouage/configs/config861.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config862.txt b/src/Tatouage/configs/config862.txt new file mode 100644 index 0000000..76b9e79 --- /dev/null +++ b/src/Tatouage/configs/config862.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config863.txt b/src/Tatouage/configs/config863.txt new file mode 100644 index 0000000..0c01935 --- /dev/null +++ b/src/Tatouage/configs/config863.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config864.txt b/src/Tatouage/configs/config864.txt new file mode 100644 index 0000000..12bff83 --- /dev/null +++ b/src/Tatouage/configs/config864.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config865.txt b/src/Tatouage/configs/config865.txt new file mode 100644 index 0000000..fd6579e --- /dev/null +++ b/src/Tatouage/configs/config865.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config866.txt b/src/Tatouage/configs/config866.txt new file mode 100644 index 0000000..a702c1e --- /dev/null +++ b/src/Tatouage/configs/config866.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config867.txt b/src/Tatouage/configs/config867.txt new file mode 100644 index 0000000..b153be1 --- /dev/null +++ b/src/Tatouage/configs/config867.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config868.txt b/src/Tatouage/configs/config868.txt new file mode 100644 index 0000000..e53c427 --- /dev/null +++ b/src/Tatouage/configs/config868.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config869.txt b/src/Tatouage/configs/config869.txt new file mode 100644 index 0000000..5f25068 --- /dev/null +++ b/src/Tatouage/configs/config869.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config87.txt b/src/Tatouage/configs/config87.txt new file mode 100644 index 0000000..0b3939f --- /dev/null +++ b/src/Tatouage/configs/config87.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config870.txt b/src/Tatouage/configs/config870.txt new file mode 100644 index 0000000..5b843b9 --- /dev/null +++ b/src/Tatouage/configs/config870.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config871.txt b/src/Tatouage/configs/config871.txt new file mode 100644 index 0000000..c0fd721 --- /dev/null +++ b/src/Tatouage/configs/config871.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config872.txt b/src/Tatouage/configs/config872.txt new file mode 100644 index 0000000..72e2bd5 --- /dev/null +++ b/src/Tatouage/configs/config872.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config873.txt b/src/Tatouage/configs/config873.txt new file mode 100644 index 0000000..875014a --- /dev/null +++ b/src/Tatouage/configs/config873.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config874.txt b/src/Tatouage/configs/config874.txt new file mode 100644 index 0000000..55b0fea --- /dev/null +++ b/src/Tatouage/configs/config874.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config875.txt b/src/Tatouage/configs/config875.txt new file mode 100644 index 0000000..bc1c1bb --- /dev/null +++ b/src/Tatouage/configs/config875.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config876.txt b/src/Tatouage/configs/config876.txt new file mode 100644 index 0000000..1689733 --- /dev/null +++ b/src/Tatouage/configs/config876.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config877.txt b/src/Tatouage/configs/config877.txt new file mode 100644 index 0000000..eff4e05 --- /dev/null +++ b/src/Tatouage/configs/config877.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config878.txt b/src/Tatouage/configs/config878.txt new file mode 100644 index 0000000..853dd4f --- /dev/null +++ b/src/Tatouage/configs/config878.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config879.txt b/src/Tatouage/configs/config879.txt new file mode 100644 index 0000000..18b6391 --- /dev/null +++ b/src/Tatouage/configs/config879.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config88.txt b/src/Tatouage/configs/config88.txt new file mode 100644 index 0000000..f03ed61 --- /dev/null +++ b/src/Tatouage/configs/config88.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config880.txt b/src/Tatouage/configs/config880.txt new file mode 100644 index 0000000..5b27e00 --- /dev/null +++ b/src/Tatouage/configs/config880.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config881.txt b/src/Tatouage/configs/config881.txt new file mode 100644 index 0000000..9614777 --- /dev/null +++ b/src/Tatouage/configs/config881.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config882.txt b/src/Tatouage/configs/config882.txt new file mode 100644 index 0000000..29f9d30 --- /dev/null +++ b/src/Tatouage/configs/config882.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config883.txt b/src/Tatouage/configs/config883.txt new file mode 100644 index 0000000..02692a9 --- /dev/null +++ b/src/Tatouage/configs/config883.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config884.txt b/src/Tatouage/configs/config884.txt new file mode 100644 index 0000000..93f7beb --- /dev/null +++ b/src/Tatouage/configs/config884.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config885.txt b/src/Tatouage/configs/config885.txt new file mode 100644 index 0000000..8963b2c --- /dev/null +++ b/src/Tatouage/configs/config885.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config886.txt b/src/Tatouage/configs/config886.txt new file mode 100644 index 0000000..09510d8 --- /dev/null +++ b/src/Tatouage/configs/config886.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config887.txt b/src/Tatouage/configs/config887.txt new file mode 100644 index 0000000..726b360 --- /dev/null +++ b/src/Tatouage/configs/config887.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config888.txt b/src/Tatouage/configs/config888.txt new file mode 100644 index 0000000..934a9b4 --- /dev/null +++ b/src/Tatouage/configs/config888.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config889.txt b/src/Tatouage/configs/config889.txt new file mode 100644 index 0000000..c510e23 --- /dev/null +++ b/src/Tatouage/configs/config889.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config89.txt b/src/Tatouage/configs/config89.txt new file mode 100644 index 0000000..a8b4916 --- /dev/null +++ b/src/Tatouage/configs/config89.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config890.txt b/src/Tatouage/configs/config890.txt new file mode 100644 index 0000000..e63a918 --- /dev/null +++ b/src/Tatouage/configs/config890.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config891.txt b/src/Tatouage/configs/config891.txt new file mode 100644 index 0000000..e02edb3 --- /dev/null +++ b/src/Tatouage/configs/config891.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config892.txt b/src/Tatouage/configs/config892.txt new file mode 100644 index 0000000..6a1013a --- /dev/null +++ b/src/Tatouage/configs/config892.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config893.txt b/src/Tatouage/configs/config893.txt new file mode 100644 index 0000000..da44970 --- /dev/null +++ b/src/Tatouage/configs/config893.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config894.txt b/src/Tatouage/configs/config894.txt new file mode 100644 index 0000000..584dea1 --- /dev/null +++ b/src/Tatouage/configs/config894.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config895.txt b/src/Tatouage/configs/config895.txt new file mode 100644 index 0000000..c6f8d6b --- /dev/null +++ b/src/Tatouage/configs/config895.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config896.txt b/src/Tatouage/configs/config896.txt new file mode 100644 index 0000000..1361835 --- /dev/null +++ b/src/Tatouage/configs/config896.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config897.txt b/src/Tatouage/configs/config897.txt new file mode 100644 index 0000000..b28b1be --- /dev/null +++ b/src/Tatouage/configs/config897.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config898.txt b/src/Tatouage/configs/config898.txt new file mode 100644 index 0000000..db2372a --- /dev/null +++ b/src/Tatouage/configs/config898.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 8990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config899.txt b/src/Tatouage/configs/config899.txt new file mode 100644 index 0000000..e285537 --- /dev/null +++ b/src/Tatouage/configs/config899.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config9.txt b/src/Tatouage/configs/config9.txt new file mode 100644 index 0000000..3d009a0 --- /dev/null +++ b/src/Tatouage/configs/config9.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config90.txt b/src/Tatouage/configs/config90.txt new file mode 100644 index 0000000..1a7be32 --- /dev/null +++ b/src/Tatouage/configs/config90.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config900.txt b/src/Tatouage/configs/config900.txt new file mode 100644 index 0000000..51b1f31 --- /dev/null +++ b/src/Tatouage/configs/config900.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9010 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config901.txt b/src/Tatouage/configs/config901.txt new file mode 100644 index 0000000..a08ee5d --- /dev/null +++ b/src/Tatouage/configs/config901.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9020 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config902.txt b/src/Tatouage/configs/config902.txt new file mode 100644 index 0000000..4976dba --- /dev/null +++ b/src/Tatouage/configs/config902.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9030 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config903.txt b/src/Tatouage/configs/config903.txt new file mode 100644 index 0000000..93414d8 --- /dev/null +++ b/src/Tatouage/configs/config903.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9040 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config904.txt b/src/Tatouage/configs/config904.txt new file mode 100644 index 0000000..6ce709d --- /dev/null +++ b/src/Tatouage/configs/config904.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9050 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config905.txt b/src/Tatouage/configs/config905.txt new file mode 100644 index 0000000..8682081 --- /dev/null +++ b/src/Tatouage/configs/config905.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9060 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config906.txt b/src/Tatouage/configs/config906.txt new file mode 100644 index 0000000..a062007 --- /dev/null +++ b/src/Tatouage/configs/config906.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9070 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config907.txt b/src/Tatouage/configs/config907.txt new file mode 100644 index 0000000..94916c5 --- /dev/null +++ b/src/Tatouage/configs/config907.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9080 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config908.txt b/src/Tatouage/configs/config908.txt new file mode 100644 index 0000000..04aa9a6 --- /dev/null +++ b/src/Tatouage/configs/config908.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9090 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config909.txt b/src/Tatouage/configs/config909.txt new file mode 100644 index 0000000..83d3211 --- /dev/null +++ b/src/Tatouage/configs/config909.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9100 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config91.txt b/src/Tatouage/configs/config91.txt new file mode 100644 index 0000000..eeb6999 --- /dev/null +++ b/src/Tatouage/configs/config91.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config910.txt b/src/Tatouage/configs/config910.txt new file mode 100644 index 0000000..052e5c7 --- /dev/null +++ b/src/Tatouage/configs/config910.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9110 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config911.txt b/src/Tatouage/configs/config911.txt new file mode 100644 index 0000000..786d724 --- /dev/null +++ b/src/Tatouage/configs/config911.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9120 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config912.txt b/src/Tatouage/configs/config912.txt new file mode 100644 index 0000000..ab82c28 --- /dev/null +++ b/src/Tatouage/configs/config912.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9130 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config913.txt b/src/Tatouage/configs/config913.txt new file mode 100644 index 0000000..adaec58 --- /dev/null +++ b/src/Tatouage/configs/config913.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9140 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config914.txt b/src/Tatouage/configs/config914.txt new file mode 100644 index 0000000..5e58f44 --- /dev/null +++ b/src/Tatouage/configs/config914.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9150 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config915.txt b/src/Tatouage/configs/config915.txt new file mode 100644 index 0000000..a87a2bd --- /dev/null +++ b/src/Tatouage/configs/config915.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9160 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config916.txt b/src/Tatouage/configs/config916.txt new file mode 100644 index 0000000..c6023b4 --- /dev/null +++ b/src/Tatouage/configs/config916.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9170 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config917.txt b/src/Tatouage/configs/config917.txt new file mode 100644 index 0000000..d61f85e --- /dev/null +++ b/src/Tatouage/configs/config917.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9180 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config918.txt b/src/Tatouage/configs/config918.txt new file mode 100644 index 0000000..1d6c7e9 --- /dev/null +++ b/src/Tatouage/configs/config918.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9190 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config919.txt b/src/Tatouage/configs/config919.txt new file mode 100644 index 0000000..2a84291 --- /dev/null +++ b/src/Tatouage/configs/config919.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9200 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config92.txt b/src/Tatouage/configs/config92.txt new file mode 100644 index 0000000..293ebdb --- /dev/null +++ b/src/Tatouage/configs/config92.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config920.txt b/src/Tatouage/configs/config920.txt new file mode 100644 index 0000000..2147be1 --- /dev/null +++ b/src/Tatouage/configs/config920.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9210 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config921.txt b/src/Tatouage/configs/config921.txt new file mode 100644 index 0000000..1d26743 --- /dev/null +++ b/src/Tatouage/configs/config921.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9220 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config922.txt b/src/Tatouage/configs/config922.txt new file mode 100644 index 0000000..f14ef69 --- /dev/null +++ b/src/Tatouage/configs/config922.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9230 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config923.txt b/src/Tatouage/configs/config923.txt new file mode 100644 index 0000000..2dc21c6 --- /dev/null +++ b/src/Tatouage/configs/config923.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9240 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config924.txt b/src/Tatouage/configs/config924.txt new file mode 100644 index 0000000..d1e9d99 --- /dev/null +++ b/src/Tatouage/configs/config924.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9250 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config925.txt b/src/Tatouage/configs/config925.txt new file mode 100644 index 0000000..751b50f --- /dev/null +++ b/src/Tatouage/configs/config925.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9260 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config926.txt b/src/Tatouage/configs/config926.txt new file mode 100644 index 0000000..d825332 --- /dev/null +++ b/src/Tatouage/configs/config926.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9270 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config927.txt b/src/Tatouage/configs/config927.txt new file mode 100644 index 0000000..83d71f3 --- /dev/null +++ b/src/Tatouage/configs/config927.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9280 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config928.txt b/src/Tatouage/configs/config928.txt new file mode 100644 index 0000000..8ad760c --- /dev/null +++ b/src/Tatouage/configs/config928.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9290 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config929.txt b/src/Tatouage/configs/config929.txt new file mode 100644 index 0000000..d2afbdf --- /dev/null +++ b/src/Tatouage/configs/config929.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9300 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config93.txt b/src/Tatouage/configs/config93.txt new file mode 100644 index 0000000..9494839 --- /dev/null +++ b/src/Tatouage/configs/config93.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config930.txt b/src/Tatouage/configs/config930.txt new file mode 100644 index 0000000..e74d81d --- /dev/null +++ b/src/Tatouage/configs/config930.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9310 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config931.txt b/src/Tatouage/configs/config931.txt new file mode 100644 index 0000000..02e6cb4 --- /dev/null +++ b/src/Tatouage/configs/config931.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9320 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config932.txt b/src/Tatouage/configs/config932.txt new file mode 100644 index 0000000..a14df87 --- /dev/null +++ b/src/Tatouage/configs/config932.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9330 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config933.txt b/src/Tatouage/configs/config933.txt new file mode 100644 index 0000000..10c04eb --- /dev/null +++ b/src/Tatouage/configs/config933.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9340 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config934.txt b/src/Tatouage/configs/config934.txt new file mode 100644 index 0000000..42ecee1 --- /dev/null +++ b/src/Tatouage/configs/config934.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9350 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config935.txt b/src/Tatouage/configs/config935.txt new file mode 100644 index 0000000..ea5c692 --- /dev/null +++ b/src/Tatouage/configs/config935.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9360 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config936.txt b/src/Tatouage/configs/config936.txt new file mode 100644 index 0000000..f6dcb8c --- /dev/null +++ b/src/Tatouage/configs/config936.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9370 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config937.txt b/src/Tatouage/configs/config937.txt new file mode 100644 index 0000000..cee5f3b --- /dev/null +++ b/src/Tatouage/configs/config937.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9380 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config938.txt b/src/Tatouage/configs/config938.txt new file mode 100644 index 0000000..72f4804 --- /dev/null +++ b/src/Tatouage/configs/config938.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9390 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config939.txt b/src/Tatouage/configs/config939.txt new file mode 100644 index 0000000..fb81965 --- /dev/null +++ b/src/Tatouage/configs/config939.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9400 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config94.txt b/src/Tatouage/configs/config94.txt new file mode 100644 index 0000000..0617fd8 --- /dev/null +++ b/src/Tatouage/configs/config94.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config940.txt b/src/Tatouage/configs/config940.txt new file mode 100644 index 0000000..b64a80e --- /dev/null +++ b/src/Tatouage/configs/config940.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9410 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config941.txt b/src/Tatouage/configs/config941.txt new file mode 100644 index 0000000..7ffc03a --- /dev/null +++ b/src/Tatouage/configs/config941.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9420 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config942.txt b/src/Tatouage/configs/config942.txt new file mode 100644 index 0000000..a7a7fb4 --- /dev/null +++ b/src/Tatouage/configs/config942.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9430 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config943.txt b/src/Tatouage/configs/config943.txt new file mode 100644 index 0000000..ce6c8c2 --- /dev/null +++ b/src/Tatouage/configs/config943.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9440 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config944.txt b/src/Tatouage/configs/config944.txt new file mode 100644 index 0000000..cede12e --- /dev/null +++ b/src/Tatouage/configs/config944.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9450 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config945.txt b/src/Tatouage/configs/config945.txt new file mode 100644 index 0000000..7b49ace --- /dev/null +++ b/src/Tatouage/configs/config945.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9460 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config946.txt b/src/Tatouage/configs/config946.txt new file mode 100644 index 0000000..0ec2f3b --- /dev/null +++ b/src/Tatouage/configs/config946.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9470 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config947.txt b/src/Tatouage/configs/config947.txt new file mode 100644 index 0000000..0bde34a --- /dev/null +++ b/src/Tatouage/configs/config947.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9480 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config948.txt b/src/Tatouage/configs/config948.txt new file mode 100644 index 0000000..b7025c5 --- /dev/null +++ b/src/Tatouage/configs/config948.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9490 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config949.txt b/src/Tatouage/configs/config949.txt new file mode 100644 index 0000000..9d426af --- /dev/null +++ b/src/Tatouage/configs/config949.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9500 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config95.txt b/src/Tatouage/configs/config95.txt new file mode 100644 index 0000000..00995b0 --- /dev/null +++ b/src/Tatouage/configs/config95.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config950.txt b/src/Tatouage/configs/config950.txt new file mode 100644 index 0000000..1045baf --- /dev/null +++ b/src/Tatouage/configs/config950.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9510 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config951.txt b/src/Tatouage/configs/config951.txt new file mode 100644 index 0000000..538674a --- /dev/null +++ b/src/Tatouage/configs/config951.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9520 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config952.txt b/src/Tatouage/configs/config952.txt new file mode 100644 index 0000000..b3e9fa9 --- /dev/null +++ b/src/Tatouage/configs/config952.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9530 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config953.txt b/src/Tatouage/configs/config953.txt new file mode 100644 index 0000000..4eeb657 --- /dev/null +++ b/src/Tatouage/configs/config953.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9540 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config954.txt b/src/Tatouage/configs/config954.txt new file mode 100644 index 0000000..37345f1 --- /dev/null +++ b/src/Tatouage/configs/config954.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9550 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config955.txt b/src/Tatouage/configs/config955.txt new file mode 100644 index 0000000..cc60d44 --- /dev/null +++ b/src/Tatouage/configs/config955.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9560 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config956.txt b/src/Tatouage/configs/config956.txt new file mode 100644 index 0000000..7d88bbb --- /dev/null +++ b/src/Tatouage/configs/config956.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9570 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config957.txt b/src/Tatouage/configs/config957.txt new file mode 100644 index 0000000..726ff1d --- /dev/null +++ b/src/Tatouage/configs/config957.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9580 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config958.txt b/src/Tatouage/configs/config958.txt new file mode 100644 index 0000000..a95d850 --- /dev/null +++ b/src/Tatouage/configs/config958.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9590 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config959.txt b/src/Tatouage/configs/config959.txt new file mode 100644 index 0000000..4b86ee0 --- /dev/null +++ b/src/Tatouage/configs/config959.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9600 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config96.txt b/src/Tatouage/configs/config96.txt new file mode 100644 index 0000000..04c9607 --- /dev/null +++ b/src/Tatouage/configs/config96.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config960.txt b/src/Tatouage/configs/config960.txt new file mode 100644 index 0000000..cc27372 --- /dev/null +++ b/src/Tatouage/configs/config960.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9610 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config961.txt b/src/Tatouage/configs/config961.txt new file mode 100644 index 0000000..30383ac --- /dev/null +++ b/src/Tatouage/configs/config961.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9620 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config962.txt b/src/Tatouage/configs/config962.txt new file mode 100644 index 0000000..53dfe02 --- /dev/null +++ b/src/Tatouage/configs/config962.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9630 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config963.txt b/src/Tatouage/configs/config963.txt new file mode 100644 index 0000000..681c9e3 --- /dev/null +++ b/src/Tatouage/configs/config963.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9640 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config964.txt b/src/Tatouage/configs/config964.txt new file mode 100644 index 0000000..64cafc5 --- /dev/null +++ b/src/Tatouage/configs/config964.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9650 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config965.txt b/src/Tatouage/configs/config965.txt new file mode 100644 index 0000000..466c7f2 --- /dev/null +++ b/src/Tatouage/configs/config965.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9660 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config966.txt b/src/Tatouage/configs/config966.txt new file mode 100644 index 0000000..f70ccdc --- /dev/null +++ b/src/Tatouage/configs/config966.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9670 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config967.txt b/src/Tatouage/configs/config967.txt new file mode 100644 index 0000000..efdf477 --- /dev/null +++ b/src/Tatouage/configs/config967.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9680 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config968.txt b/src/Tatouage/configs/config968.txt new file mode 100644 index 0000000..e46c53e --- /dev/null +++ b/src/Tatouage/configs/config968.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9690 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config969.txt b/src/Tatouage/configs/config969.txt new file mode 100644 index 0000000..6e068f6 --- /dev/null +++ b/src/Tatouage/configs/config969.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9700 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config97.txt b/src/Tatouage/configs/config97.txt new file mode 100644 index 0000000..682f562 --- /dev/null +++ b/src/Tatouage/configs/config97.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config970.txt b/src/Tatouage/configs/config970.txt new file mode 100644 index 0000000..b28620a --- /dev/null +++ b/src/Tatouage/configs/config970.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9710 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config971.txt b/src/Tatouage/configs/config971.txt new file mode 100644 index 0000000..8a430bf --- /dev/null +++ b/src/Tatouage/configs/config971.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9720 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config972.txt b/src/Tatouage/configs/config972.txt new file mode 100644 index 0000000..e00e237 --- /dev/null +++ b/src/Tatouage/configs/config972.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9730 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config973.txt b/src/Tatouage/configs/config973.txt new file mode 100644 index 0000000..1f586b8 --- /dev/null +++ b/src/Tatouage/configs/config973.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9740 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config974.txt b/src/Tatouage/configs/config974.txt new file mode 100644 index 0000000..d5f68a8 --- /dev/null +++ b/src/Tatouage/configs/config974.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9750 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config975.txt b/src/Tatouage/configs/config975.txt new file mode 100644 index 0000000..d0c3e92 --- /dev/null +++ b/src/Tatouage/configs/config975.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9760 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config976.txt b/src/Tatouage/configs/config976.txt new file mode 100644 index 0000000..2eeb5bd --- /dev/null +++ b/src/Tatouage/configs/config976.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9770 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config977.txt b/src/Tatouage/configs/config977.txt new file mode 100644 index 0000000..e2ab5a9 --- /dev/null +++ b/src/Tatouage/configs/config977.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9780 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config978.txt b/src/Tatouage/configs/config978.txt new file mode 100644 index 0000000..e4d9c7d --- /dev/null +++ b/src/Tatouage/configs/config978.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9790 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config979.txt b/src/Tatouage/configs/config979.txt new file mode 100644 index 0000000..7c556cf --- /dev/null +++ b/src/Tatouage/configs/config979.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9800 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config98.txt b/src/Tatouage/configs/config98.txt new file mode 100644 index 0000000..7285114 --- /dev/null +++ b/src/Tatouage/configs/config98.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config980.txt b/src/Tatouage/configs/config980.txt new file mode 100644 index 0000000..12c051d --- /dev/null +++ b/src/Tatouage/configs/config980.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9810 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config981.txt b/src/Tatouage/configs/config981.txt new file mode 100644 index 0000000..2b97cd9 --- /dev/null +++ b/src/Tatouage/configs/config981.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9820 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config982.txt b/src/Tatouage/configs/config982.txt new file mode 100644 index 0000000..0acd82e --- /dev/null +++ b/src/Tatouage/configs/config982.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9830 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config983.txt b/src/Tatouage/configs/config983.txt new file mode 100644 index 0000000..35fb148 --- /dev/null +++ b/src/Tatouage/configs/config983.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9840 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config984.txt b/src/Tatouage/configs/config984.txt new file mode 100644 index 0000000..dbda053 --- /dev/null +++ b/src/Tatouage/configs/config984.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9850 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config985.txt b/src/Tatouage/configs/config985.txt new file mode 100644 index 0000000..18e9d89 --- /dev/null +++ b/src/Tatouage/configs/config985.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9860 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config986.txt b/src/Tatouage/configs/config986.txt new file mode 100644 index 0000000..e202ff1 --- /dev/null +++ b/src/Tatouage/configs/config986.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9870 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config987.txt b/src/Tatouage/configs/config987.txt new file mode 100644 index 0000000..1e92aec --- /dev/null +++ b/src/Tatouage/configs/config987.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9880 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config988.txt b/src/Tatouage/configs/config988.txt new file mode 100644 index 0000000..7597a7a --- /dev/null +++ b/src/Tatouage/configs/config988.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9890 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config989.txt b/src/Tatouage/configs/config989.txt new file mode 100644 index 0000000..7ba2591 --- /dev/null +++ b/src/Tatouage/configs/config989.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9900 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config99.txt b/src/Tatouage/configs/config99.txt new file mode 100644 index 0000000..d4ad9c4 --- /dev/null +++ b/src/Tatouage/configs/config99.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 1000 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config990.txt b/src/Tatouage/configs/config990.txt new file mode 100644 index 0000000..d551774 --- /dev/null +++ b/src/Tatouage/configs/config990.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9910 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config991.txt b/src/Tatouage/configs/config991.txt new file mode 100644 index 0000000..8355b46 --- /dev/null +++ b/src/Tatouage/configs/config991.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9920 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config992.txt b/src/Tatouage/configs/config992.txt new file mode 100644 index 0000000..06dd7c2 --- /dev/null +++ b/src/Tatouage/configs/config992.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9930 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config993.txt b/src/Tatouage/configs/config993.txt new file mode 100644 index 0000000..643b432 --- /dev/null +++ b/src/Tatouage/configs/config993.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9940 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config994.txt b/src/Tatouage/configs/config994.txt new file mode 100644 index 0000000..227a431 --- /dev/null +++ b/src/Tatouage/configs/config994.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9950 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config995.txt b/src/Tatouage/configs/config995.txt new file mode 100644 index 0000000..de83108 --- /dev/null +++ b/src/Tatouage/configs/config995.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9960 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config996.txt b/src/Tatouage/configs/config996.txt new file mode 100644 index 0000000..f6778bc --- /dev/null +++ b/src/Tatouage/configs/config996.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9970 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config997.txt b/src/Tatouage/configs/config997.txt new file mode 100644 index 0000000..a642533 --- /dev/null +++ b/src/Tatouage/configs/config997.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9980 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/configs/config998.txt b/src/Tatouage/configs/config998.txt new file mode 100644 index 0000000..bdbccea --- /dev/null +++ b/src/Tatouage/configs/config998.txt @@ -0,0 +1,40 @@ +[GENERAL] +authentification = False +watermark = resultat.txt +resultat = False +repertoire_images = images +repertoire_temporaire = tempo +repertoire_resultat = resultats + +[INSERTION] +lsb = [6,7,8] + +[ATTAQUE] +attaque = True +type = decoupage + +[DECOUPAGE] +taille = 30 +position = (0,0) + +[ROTATION] +angle = 2 +nombre = 1 + +[EVALUATION] +type = differences + +[DIFFERENCES] +seuil = 9990 + +[CHIFFREMENT_INSERTION] +mu = 4 +xo = 0.4 + +[CHIFFREMENT_EXTRACTION] +mu = 4 +xo = 0.4 + +[EXTRACTION] +lsb = [6,7,8] + diff --git a/src/Tatouage/coucou.py b/src/Tatouage/coucou.py new file mode 100644 index 0000000..e8bcb59 --- /dev/null +++ b/src/Tatouage/coucou.py @@ -0,0 +1 @@ +print "toto" diff --git a/src/Tatouage/dd.jpg b/src/Tatouage/dd.jpg new file mode 100644 index 0000000..3da80ab Binary files /dev/null and b/src/Tatouage/dd.jpg differ diff --git a/src/Tatouage/evaluation.py b/src/Tatouage/evaluation.py new file mode 100644 index 0000000..2af3d37 --- /dev/null +++ b/src/Tatouage/evaluation.py @@ -0,0 +1,143 @@ +#-*- coding:utf-8 -*- +from ImageChops import difference +from Image import * +import ImageStat + +from sys import exit +from os import system +from pyx import * + + +class Evaluation: + ''' + Classe permettant l'évaluation du marquage. Les deux images doivent être de + type Image + ''' + + def __init__(self, image1 = None, image2 = None): + ''' + Constructeur. + Les deux images doivent être de type Image ! + ''' + self._image1 = image1 + self._image2 = image2 + # TODO Tester l'appartenance à Image + assert self._image1.mode == self._image2.mode + assert self._image1.size == self._image2.size + + + def _EQM(self): + eqm = 0 + for k in range(self._image1.size[0]): + for l in range(self._image1.size[1]): + eqm+=(self._image1.getpixel((k,l)) - \ + self._image2.getpixel((k,l)))**2 + return float(eqm)/self._image1.size[0]/self._image1.size[1] + + + def _bitsParCoef(self): + if self._image1.mode == '1': + return 1 + elif self._image1.mode == 'L': + return 8 + else: + raise ValueError("Mode non supporté pour l'évaluation") + + + def PSNR(self): + ''' + Retourne le PSNR entre deux images. + ''' + from math import log + densite = 2**self._bitsParCoef()-1 + if self._EQM()!=0: + return 10*log(densite**2/self._EQM(),10) + else: + return "Infini" + + + def differences(self): + ''' + Renvoie le nombre de coefficients différents, + vu comme un pourcentage. + ''' + compteur = 0 + for k in range(self._image1.size[0]): + for l in range(self._image1.size[1]): + if self._image1.getpixel((k,l)) != self._image2.getpixel((k,l)): + compteur+=1 + return 100*float(compteur)/self._image1.size[0]/self._image1.size[1] + + + def visualisationDifferences(self, facteur = 0, nom = ''): + ''' + Visualise les différences, avec Image + ''' + extreme = self.differencesExtremales()[1] + if extreme == 0: + leFacteur = 0 + elif facteur*extreme > 255: + raise ValueError('Facteur de visualisation trop élevé') + exit(1) + elif facteur == 0: + leFacteur = 255/extreme + else: + leFacteur = facteur + print 'Facteur de visualisation : ', leFacteur + if nom !='': + difference(self._image1,self._image2).point(lambda x:leFacteur*x).save(nom) + difference(self._image1,self._image2).point(lambda x:leFacteur*x).show() + dd = list(difference(self._image1,self._image2).point(lambda x:leFacteur*x).getdata()) + print "Nombre de différences",len(dd)-dd.count(0),"sur",len(dd) + + + + def differenceMoyenne(self): + ''' + Renvoie la différence moyenne entre les images + ''' + stats = ImageStat.Stat(difference(self._image1, + self._image2).histogram()) + if self._image1.mode == '1': + return float(stats.mean[0])/255 + else: + return stats.mean[0] + + + def differencesExtremales(self): + ''' + Renvoie le minimum et le maximum des différences des images + ''' + stats = ImageStat.Stat(difference(self._image1, + self._image2).histogram()) + if self._image1.mode == '1': + return (int(float(stats.extrema[0][0])/255), + int(float(stats.extrema[0][1])/255)) + else: + return stats.extrema[0][0], stats.extrema[0][1] + + + def _differencesHistogramme(self): + ''' + Histogramme des différences, pour differencesHistoVisu + ''' + histo = difference(self._image1, self._image2).histogram() + liste = [] + for l in range(1,self.differencesExtremales()[1]+1): + liste.append((l,histo[l])) + return liste + + + def differencesHistoVisu(self): + ''' + Affiche l'histrogramme des différences, avec PyX + ''' + liste = [] + for k in self._differencesHistogramme(): + liste.append((k[0],k[1])) + if len(liste) == 0: + raise ValueError("Aucune différence") + g = graph.graphxy(width=8, x=graph.axis.bar()) + g.plot(graph.data.points(liste, xname=0, y=2),[graph.style.bar()]) + g.writeEPSfile('histoDiff.eps') + system('evince histoDiff.eps') diff --git a/src/Tatouage/genere_configs.py b/src/Tatouage/genere_configs.py new file mode 100644 index 0000000..abd3b5a --- /dev/null +++ b/src/Tatouage/genere_configs.py @@ -0,0 +1,59 @@ +import ConfigParser +from os import system + +try: + system("rm -fr configs/") +except: + pass + +system("mkdir configs/") + +cpt = 0 +for k in range(10,10000,10): + config = ConfigParser.ConfigParser() + + config.add_section("GENERAL") + config.set("GENERAL", "authentification", "False") + config.set("GENERAL", "watermark", "resultat.txt") + config.set("GENERAL", "resultat", "False") + config.set("GENERAL", "repertoire_images", "images") + config.set("GENERAL", "repertoire_temporaire", "tempo") + config.set("GENERAL", "repertoire_resultat", "resultats") + + config.add_section("INSERTION") + config.set("INSERTION", "LSB", "[6,7,8]") + + config.add_section("ATTAQUE") + config.set("ATTAQUE", "attaque", "True") + config.set("ATTAQUE", "type", "decoupage") + + config.add_section("DECOUPAGE") + config.set("DECOUPAGE", "taille", "30") + config.set("DECOUPAGE", "position", "(0,0)") + + config.add_section("ROTATION") + config.set("ROTATION", "angle", "2") + config.set("ROTATION", "nombre", "1") + + config.add_section("EVALUATION") + config.set("EVALUATION", "type", "differences") + + config.add_section("DIFFERENCES") + config.set("DIFFERENCES", "seuil", str(k)) + + config.add_section("CHIFFREMENT_INSERTION") + config.set("CHIFFREMENT_INSERTION", "mu", "4") + config.set("CHIFFREMENT_INSERTION", "Xo", "0.4") + + config.add_section("CHIFFREMENT_EXTRACTION") + config.set("CHIFFREMENT_EXTRACTION", "mu", "4") + config.set("CHIFFREMENT_EXTRACTION", "Xo", "0.4") + + config.add_section("EXTRACTION") + config.set("EXTRACTION", "LSB", "[6,7,8]") + + fichier = open("configs/config"+str(cpt)+".txt", 'w') + cpt += 1 + config.write(fichier) + fichier.close() + diff --git a/src/Tatouage/image_chiffree.png b/src/Tatouage/image_chiffree.png new file mode 100644 index 0000000..d6bb74c Binary files /dev/null and b/src/Tatouage/image_chiffree.png differ diff --git a/src/Tatouage/images/dd.jpg b/src/Tatouage/images/dd.jpg new file mode 100644 index 0000000..9a2cb6d Binary files /dev/null and b/src/Tatouage/images/dd.jpg differ diff --git a/src/Tatouage/images/lena.png b/src/Tatouage/images/lena.png new file mode 100644 index 0000000..d82c3d4 Binary files /dev/null and b/src/Tatouage/images/lena.png differ diff --git a/src/Tatouage/images/lena_attaquee.png b/src/Tatouage/images/lena_attaquee.png new file mode 100644 index 0000000..d16ebed Binary files /dev/null and b/src/Tatouage/images/lena_attaquee.png differ diff --git a/src/Tatouage/images/lena_marquee.png b/src/Tatouage/images/lena_marquee.png new file mode 100644 index 0000000..7fcf5d0 Binary files /dev/null and b/src/Tatouage/images/lena_marquee.png differ diff --git a/src/Tatouage/images/lenatemp.png b/src/Tatouage/images/lenatemp.png new file mode 100644 index 0000000..c6af15b Binary files /dev/null and b/src/Tatouage/images/lenatemp.png differ diff --git a/src/Tatouage/invader.png b/src/Tatouage/invader.png new file mode 100644 index 0000000..75c6769 Binary files /dev/null and b/src/Tatouage/invader.png differ diff --git a/src/Tatouage/invader_chiffre.png b/src/Tatouage/invader_chiffre.png new file mode 100644 index 0000000..da8709e Binary files /dev/null and b/src/Tatouage/invader_chiffre.png differ diff --git a/src/Tatouage/lena.png b/src/Tatouage/lena.png new file mode 100644 index 0000000..d82c3d4 Binary files /dev/null and b/src/Tatouage/lena.png differ diff --git a/src/Tatouage/lena_demarque.png b/src/Tatouage/lena_demarque.png new file mode 100644 index 0000000..c6af15b Binary files /dev/null and b/src/Tatouage/lena_demarque.png differ diff --git a/src/Tatouage/lena_diff.png b/src/Tatouage/lena_diff.png new file mode 100644 index 0000000..9f68f29 Binary files /dev/null and b/src/Tatouage/lena_diff.png differ diff --git a/src/Tatouage/lena_marque.png b/src/Tatouage/lena_marque.png new file mode 100644 index 0000000..c49d5c3 Binary files /dev/null and b/src/Tatouage/lena_marque.png differ diff --git a/src/Tatouage/lena_marque_attaque.png b/src/Tatouage/lena_marque_attaque.png new file mode 100644 index 0000000..5b949ba Binary files /dev/null and b/src/Tatouage/lena_marque_attaque.png differ diff --git a/src/Tatouage/outilsBase.py b/src/Tatouage/outilsBase.py new file mode 100644 index 0000000..f12f85f --- /dev/null +++ b/src/Tatouage/outilsBase.py @@ -0,0 +1,95 @@ +#-*- coding:utf-8 -*- +import string +from numpy import * + +def conversion(nombre, base, epsilon = 0.00001 ): + ''' Soit nombre écrit en base 10, le retourne en base base''' + if not 2 <= base <= 36: + raise ValueError, "La base doit être entre 2 et 36" + if not base == 2 and '.' in str(nombre): + raise ValueError, "La partie décimale n'est pas gérée pour les bases\ + différentes de 2." + # IMPROVE : Convertir aussi la partie décimale, quand la base n'est pas égale + # à 2. + abc = string.digits + string.letters + result = '' + if nombre < 0: + nombre = -nombre + sign = '-' + else: + sign = '' + if '.' in str(nombre): + entier,decimal = int(str(nombre).split('.')[0]),\ + float('.'+str(nombre).split('.')[1]) + else: + entier,decimal = int(str(nombre)),0 + while entier !=0 : + entier, rdigit = divmod( entier, base ) + result = abc[rdigit] + result + flotante, decimalBin = 1./float(base),'' + while flotante > epsilon : + if decimal >= flotante: + decimalBin+='1' + decimal-=flotante + else : + decimalBin+='0' + flotante = flotante/float(base) + if '1' in decimalBin : + reste = '.'+decimalBin + while reste[-1]=='0': + reste = reste[:-1] + else : + reste = '' + return sign + result + reste + + +def getBit(X,pos): + '''Récupère le bit en position pos de X. + Par exemple, getBit(8,1) = 0, puisque le bit le plus à droite de 8 = 1000 est 0. + On fera attention à ce que : + - on compte à partir du point, + - l'élément juste à gauche du point est en position 1, + - celui juste à droite est en position -1.''' + assert pos != 0 + entier = conversion(X,2) + if '.' in entier: + entier, decimal = entier.split('.') + if decimal == '0': + decimal = '' + else: + decimal = '' + if '-' in entier: + entier = entier.replace('-','') + entier = entier.zfill(abs(pos)) + decimal = (decimal+'0'*abs(pos))[:max(len(decimal),abs(pos))] + + return int(entier[len(entier)-pos]) if pos >0 else int(decimal[-pos-1]) + + +def setBit(X,pos,y): + '''Fixe le bit pos de X à la valeur y. + Le fonctionnement est similaire à getBit : + - on compte à partir du point, + - l'élément juste à gauche du point est en position 1, + - celui juste à droite est en position -1.''' + assert pos != 0 + entier = conversion(X,2) + if '.' in entier: + entier, decimal = entier.split('.') + else: + decimal = '' + entier = list(entier.zfill(abs(pos))) + decimal = list((decimal+'0'*abs(pos))[:max(len(decimal),abs(pos))]) + if pos>0: + entier[len(entier)-pos]=str(int(y)) + else: + decimal[-pos-1] = str(int(y)) + if decimal == []: + return int(''.join(entier),2) + else: + S=0 + for k in range(len(decimal)): + S += 1./2**(k+1)*int(decimal[k]) + return float(str(int(''.join(entier),2))+'.'+str(S).split('.')[1]) + + diff --git a/src/Tatouage/resultat.txt b/src/Tatouage/resultat.txt new file mode 100644 index 0000000..a02bc03 --- /dev/null +++ b/src/Tatouage/resultat.txt @@ -0,0 +1 @@ +PSNR = 21.6995167538 \ No newline at end of file diff --git a/src/Tatouage/resultats/resultat.txt b/src/Tatouage/resultats/resultat.txt new file mode 100644 index 0000000..3ccb1ff --- /dev/null +++ b/src/Tatouage/resultats/resultat.txt @@ -0,0 +1,2 @@ +PSNR = 21.6995167538 +Nombre de différences (entre lena et lena démarque) :900 sur 65536. diff --git a/src/Tatouage/script1.py b/src/Tatouage/script1.py new file mode 100644 index 0000000..f8ba837 --- /dev/null +++ b/src/Tatouage/script1.py @@ -0,0 +1,332 @@ +#-*- coding:utf-8 -*- +###################################################################### +# Ce script permet d'insérer une image NB dans une image, et de le récupérer. +# L'insertion est de type Doublement. Les étapes sont les suivantes : +# - On demande à l'utilisateur l'image à insérer. +# - On la chiffre +# - On demande la fenêtre d'insertion. +# - On effectue l'insertion en substituant, dans la fenêtre, le bit du +# message encodé à celui préexistant. +# +# On propose alors diverses attaques. +# +# Puis, on passe à l'extraction... +# - On récupère les bits du code, par soustraction avec l'image +# d'origine. +# Cette méthode ne nécessite donc pas l'image d'origine pour récupérer la marque. +###################################################################### + +import binascii +import struct +import Image as im +import ImageStat + +from ImageChops import difference +from math import sqrt +from numpy import array +from os import system, listdir +from sys import argv +from BitVector import BitVector +from copy import deepcopy +from ConfigParser import ConfigParser + +from outilsBase import getBit, setBit, conversion +from attaque import Attaque +from suite import Doublement +from chiffrement_image import Chiffrement +from coefficients import Coefficients +from evaluation import Evaluation + + +OK = 100 +PAS_OK = 99 + + +def f(L): + return [int(not k) for k in L] + + + +class Spatial_Doublement: + + _bits_par_mode = {'1' : 1, 'L' : 8} + + + def __init__(self, hote = '', watermark = '', + config = None, + mu = None, Xo = None, + Resultat = 'resultat.txt', + authentification = None, + x0 = None, y0 = None, + LSB = None, + iterations_chiffrement = None): + ''' + Constructeur. + + Récupère le code à insérer, et les paramètres d'insertion. + ''' + + # Initialisation + self._watermark = watermark + self._liste = [] + self._hote = hote + self._resultat = open(Resultat,'w') + self._authentification = authentification + self._x0, self._y0 = x0,y0 + self._iterations = iterations_chiffrement + self._config = config + + if LSB != None: + self._bits_faibles = LSB + + # Chiffrement + unChiffrement = Chiffrement(fichier_image = self._watermark, + mu = mu, Xo = Xo, + authentification = self._authentification, + iterations = self._iterations) + + unChiffrement.chiffrement() + [self._mu, self._Xo] = unChiffrement.get_parametres() + self._iterations = unChiffrement.get_iterations() + + self._strategie = unChiffrement.get_strategie() + self._watermark = unChiffrement.get_image() + + + # Récupération des bits de l'image chiffrée + self._code = [k/255 for k in list(self._watermark.getdata())] + + # Récupération des paramètres d'insertion + self._get_parametres_insertion() + + + + + + + + def _get_parametres_insertion(self): + ''' + Récupère les paramètres d'insertion, à savoir le pixel de début de + doublement. + ''' + + ''' + if self._authentification == None: + self._authentification = eval(raw_input("Authentification (True/False) ? ")) + if self._authentification: + self._bits_forts = eval(raw_input("Liste des MSB : ")) + ''' + + if self._x0 == None: + # Rectangle d'insertion + print "Début du marquage ? " + self._x0, self._y0 = eval(raw_input("Réponse : ")) + + if '_bits_faibles' not in dir(self): + self._bits_faibles = eval(raw_input("Liste des LSB : ")) + + #taille = im.open('lena.png').size[0] + print "\nCapacité d'insertion :",len(self._bits_faibles)*taille*taille + self._x1, self._y1 = taille, taille + + + + + + + + + + def get_strategie(self): + ''' + Récupère la stratégie des itérations chaotiques. + ''' + hote = im.open(self._hote) + N = hote.size[0] + N *= hote.size[1] + N *= len(self._bits_faibles) + + ''' + if self._authentification: + msc = Coefficients().getAllCoefs(self._hote, self._bits_forts) + bits = BitVector(bitstring = self._code) ^ msc + + else: + bits = BitVector(bitstring = self._code) + doublement = Doublement(1, N, + generateur = Coefficients().bit2coef(bits, N))''' + + doublement = Doublement(1, N, generateur = self._strategie) + + suite = doublement.iterateur() + while True: + yield suite.next() + + + + + + def insertion(self, nom = ''): + ''' + L'insertion, à proprement parlé. + + On commence par regarder si l'image hote est suffisament grande. Puis, + on réalise l'insertion, on montre l'image marquée, et on la sauvegarde + dans lena_marque.png. + ''' + # Initialisation + hote = im.open(self._hote) + mode = self._bits_par_mode[hote.mode] + image = [] + for k in range(hote.size[0]): + for l in range(hote.size[1]): + texte = conversion(hote.getpixel((k,l)),2).zfill(mode) + image += [int(texte[mode-x]) for x in self._bits_faibles] + + + # L'insertion + strat = self.get_strategie() + X = set() + if len(image)%4 == 0: + image.append(0) + + for x in range(len(self._code)): + suivant = strat.next() + #y = f(image) + #image[suivant] = y[suivant] + image[suivant] = int(not image[suivant]) + + # Reconstruction de l'image + image_nouvelle = im.new(hote.mode, hote.size) + compteur = 0 + for k in range(hote.size[0]): + for l in range(hote.size[1]): + x = [int(d) for d in conversion(hote.getpixel((k,l)),2).zfill(mode)] + for m in self._bits_faibles: + x[mode-m] = image[compteur] + compteur += 1 + x = ''.join([str(t) for t in x]) + image_nouvelle.putpixel((k,l), int(x,2)) + + # Affichage et sauvegarde de l'hôte marqué + #print "On montre l'image, que l'on sauvegarde ensuite" + image_nouvelle.save(nom) + #image_nouvelle.show() + #raw_input(" (Appuyer sur une touche pour continuer)") + + uneEva = Evaluation(im.open(self._hote), im.open(nom)) + #print "Différences Lena/Lena marque" + #uneEva.visualisationDifferences() + #raw_input("Differences") + self._resultat.write("PSNR = "+str(uneEva.PSNR())) + + + + + def extraction(self, hote = '', original = None, + watermark = None, LSB = None, mu = None, + Xo = None): + ''' + Réalise l'extraction de l'image. + + On récupère le code extrait, qui est la chaîne de bits du message encodé + par Reed-Solomon. + ''' + #print "\n================== Extraction ==================" + #print "Hote, dans laquelle réaliser l'insertion : ",hote + + uneAction = Spatial_Doublement(hote = hote, + watermark = watermark, + mu = mu, + Xo = Xo, + LSB = LSB, + authentification = self._authentification, + x0 = self._x0, y0 = self._y0, + iterations_chiffrement = self._iterations) + + #print "Sauvegarde dans lena_demarque.png" + tempo_="tempo_"+argv[3]+".png" + uneAction.insertion(nom = tempo_) + + image1 = im.open(original) + image2 = im.open(tempo_) + + if self._config.get('EVALUATION','type') == "differences": + compteur = 0 + diff = difference(image1, image2) + for k in range(image1.size[0]): + for l in range(image1.size[0]): + if diff.getpixel((k,l)) >0 : + compteur += 1 + dd = "\nNombre de différences (entre lena et lena démarque) :"+str(compteur)+" sur " + dd += str(image1.size[0]*image1.size[1])+'.\n' + self._resultat.write(dd) + if compteur < self._config.getfloat("DIFFERENCES","seuil"): + print "OK" + exit(OK) + else: + print "PAS OK" + exit(PAS_OK) + + + + + + + +if __name__ == '__main__': + config = ConfigParser() + config.read([argv[1]]) + + repertoire_images = config.get('GENERAL','repertoire_images')+'/' + repertoire_temporaire = config.get('GENERAL','repertoire_temporaire')+'/' + + if repertoire_temporaire not in listdir('.'): + system("mkdir "+repertoire_temporaire) + + nom = ''.join(argv[2].split('.')[:-1]) + extension = argv[2].lstrip(nom) + + image_hote = repertoire_images+argv[2] + image_marquee = repertoire_temporaire+nom+"_marquee"+extension + image_attaquee = repertoire_temporaire+nom+"_attaquee"+extension + + authentification = config.getboolean('GENERAL','authentification') + WATERMARK = config.get('GENERAL','watermark') + + Resultat = config.get('GENERAL','repertoire_resultat')+'/'+config.get('GENERAL','resultat') + + uneAction = Spatial_Doublement(hote = image_hote, + watermark = WATERMARK, + config = config, + LSB = eval(config.get('INSERTION','LSB')), + mu = config.getfloat("CHIFFREMENT_INSERTION","mu"), + Xo = config.getfloat("CHIFFREMENT_INSERTION","Xo"), + authentification = authentification, + x0 = 1, y0 = 1, + Resultat = Resultat, + iterations_chiffrement = 20000) + uneAction.insertion(nom = image_marquee) + + # Attaque éventuelle + if config.getboolean('ATTAQUE','attaque'): + uneAttaque = Attaque(nom = image_marquee, + configuration = argv[1]) + #uneAttaque.show() + uneAttaque.save(image_attaquee) + hote = image_attaquee + else: + hote = image_marquee + + # Extraction et evaluation + uneAction.extraction(hote = hote, + original = image_hote, + mu = config.getfloat("CHIFFREMENT_EXTRACTION","mu"), + Xo = config.getfloat("CHIFFREMENT_EXTRACTION","Xo"), + LSB = eval(config.get('EXTRACTION','LSB')), + watermark = WATERMARK) + + # Nettoyage + system("rm tempo_"+argv[3]+".png") + system("rm "+repertoire_temporaire+"*") diff --git a/src/Tatouage/script2.py b/src/Tatouage/script2.py new file mode 100644 index 0000000..253e88e --- /dev/null +++ b/src/Tatouage/script2.py @@ -0,0 +1,344 @@ +#-*- coding:utf-8 -*- +###################################################################### +# Ce script permet d'insérer une image NB dans une image, et de le récupérer. +# L'insertion est de type Doublement. Les étapes sont les suivantes : +# - On demande à l'utilisateur l'image à insérer. +# - On la chiffre +# - On demande la fenêtre d'insertion. +# - On effectue l'insertion en substituant, dans la fenêtre, le bit du +# message encodé à celui préexistant. +# +# On propose alors diverses attaques. +# +# Puis, on passe à l'extraction... +# - On récupère les bits du code, par soustraction avec l'image +# d'origine. +# Cette méthode ne nécessite donc pas l'image d'origine pour récupérer la marque. +###################################################################### + +import binascii +import struct +import Image as im +import ImageStat +import os +from os.path import basename +from ImageChops import difference +from math import sqrt +from numpy import array +from os import system, listdir +from sys import argv +from BitVector import BitVector +from copy import deepcopy +from ConfigParser import ConfigParser + +from outilsBase import getBit, setBit, conversion +from attaque import Attaque +from suite import Doublement +from chiffrement_image import Chiffrement +from coefficients import Coefficients +from evaluation import Evaluation + + +OK = 100 +PAS_OK = 99 + + +def f(L): + return [int(not k) for k in L] + + + +class Spatial_Doublement: + + _bits_par_mode = {'1' : 1, 'L' : 8} + + + def __init__(self, hote = 'lena.png', watermark = '', + config = None, + mu = None, Xo = None, + Resultat = 'resultat.txt', + authentification = None, + x0 = None, y0 = None, + LSB = None, + iterations_chiffrement = None): + ''' + Constructeur. + + Récupère le code à insérer, et les paramètres d'insertion. + ''' + + # Initialisation + self._watermark = watermark + self._liste = [] + self._hote = hote + self._resultat = open(Resultat,'w') + self._authentification = authentification + self._x0, self._y0 = x0,y0 + self._iterations = iterations_chiffrement + self._config = config + + if LSB != None: + self._bits_faibles = LSB + + # Chiffrement + unChiffrement = Chiffrement(fichier_image = self._watermark, + mu = mu, Xo = Xo, + authentification = self._authentification, + iterations = self._iterations) + + unChiffrement.chiffrement() + [self._mu, self._Xo] = unChiffrement.get_parametres() + self._iterations = unChiffrement.get_iterations() + + self._strategie = unChiffrement.get_strategie() + self._watermark = unChiffrement.get_image() + + + # Récupération des bits de l'image chiffrée + self._code = [k/255 for k in list(self._watermark.getdata())] + + # Récupération des paramètres d'insertion + self._get_parametres_insertion() + + + + + + + + def _get_parametres_insertion(self): + ''' + Récupère les paramètres d'insertion, à savoir le pixel de début de + doublement. + ''' + + ''' + if self._authentification == None: + self._authentification = eval(raw_input("Authentification (True/False) ? ")) + if self._authentification: + self._bits_forts = eval(raw_input("Liste des MSB : ")) + ''' + + if self._x0 == None: + # Rectangle d'insertion + print "Début du marquage ? " + self._x0, self._y0 = eval(raw_input("Réponse : ")) + + if '_bits_faibles' not in dir(self): + self._bits_faibles = eval(raw_input("Liste des LSB : ")) + + #taille = im.open('lena.png').size[0] + print "\nCapacité d'insertion :",len(self._bits_faibles)*taille*taille + self._x1, self._y1 = taille, taille + + + + + + + + + + def get_strategie(self): + ''' + Récupère la stratégie des itérations chaotiques. + ''' + hote = im.open(self._hote).convert('L') + N = hote.size[0] + N *= hote.size[1] + N *= len(self._bits_faibles) + + ''' + if self._authentification: + msc = Coefficients().getAllCoefs(self._hote, self._bits_forts) + bits = BitVector(bitstring = self._code) ^ msc + + else: + bits = BitVector(bitstring = self._code) + doublement = Doublement(1, N, + generateur = Coefficients().bit2coef(bits, N))''' + + doublement = Doublement(1, N, generateur = self._strategie) + + suite = doublement.iterateur() + while True: + yield suite.next() + + + + + + def insertion(self, nom = 'lena_marque.png'): + ''' + L'insertion, à proprement parlé. + + On commence par regarder si l'image hote est suffisament grande. Puis, + on réalise l'insertion, on montre l'image marquée, et on la sauvegarde + dans lena_marque.png. + ''' + # Initialisation + hote = im.open(self._hote).convert('L') + mode = self._bits_par_mode[hote.mode] + image = [] + for k in range(hote.size[0]): + for l in range(hote.size[1]): + texte = conversion(hote.getpixel((k,l)),2).zfill(mode) + image += [int(texte[mode-x]) for x in self._bits_faibles] + + + # L'insertion + strat = self.get_strategie() + X = set() + if len(image)%4 == 0: + image.append(0) + + for x in range(len(self._code)): + suivant = strat.next() + #y = f(image) + #image[suivant] = y[suivant] + image[suivant] = int(not image[suivant]) + + # Reconstruction de l'image + image_nouvelle = im.new(hote.mode, hote.size) + compteur = 0 + for k in range(hote.size[0]): + for l in range(hote.size[1]): + x = [int(d) for d in conversion(hote.getpixel((k,l)),2).zfill(mode)] + for m in self._bits_faibles: + x[mode-m] = image[compteur] + compteur += 1 + x = ''.join([str(t) for t in x]) + image_nouvelle.putpixel((k,l), int(x,2)) + + # Affichage et sauvegarde de l'hôte marqué + #print "On montre l'image, que l'on sauvegarde ensuite" + image_nouvelle.save(nom) + #image_nouvelle.show() + #raw_input(" (Appuyer sur une touche pour continuer)") + + uneEva = Evaluation(im.open(self._hote).convert('L'), im.open(nom).convert('L')) + #print "Différences Lena/Lena marque" + #uneEva.visualisationDifferences() + #raw_input("Differences") + self._resultat.write("PSNR = "+str(uneEva.PSNR())) + + + + def cleanup(self) : + #print("weche?") + system("rm tempo_"+argv[3]+".png") + vtmp=os.path.splitext(argv[2])[0] + + system("rm "+repertoire_temporaire+"/"+vtmp+"*") + + + def extraction(self, hote = 'lena_marque.png', original = None, + watermark = None, LSB = None, mu = None, + Xo = None): + ''' + Réalise l'extraction de l'image. + + On récupère le code extrait, qui est la chaîne de bits du message encodé + par Reed-Solomon. + ''' + #print "\n================== Extraction ==================" + #print "Hote, dans laquelle réaliser l'insertion : ",hote + + uneAction = Spatial_Doublement(hote = hote, + watermark = watermark, + mu = mu, + Xo = Xo, + LSB = LSB, + authentification = self._authentification, + x0 = self._x0, y0 = self._y0, + iterations_chiffrement = self._iterations) + + #print "Sauvegarde dans lena_demarque.png" + tempo_="tempo_"+argv[3]+".png" + uneAction.insertion(nom = tempo_) + + image1 = im.open(original).convert('L') + image2 = im.open(tempo_).convert('L') + + if self._config.get('EVALUATION','type') == "differences": + compteur = 0 + diff = difference(image1, image2) + for k in range(image1.size[0]): + for l in range(image1.size[0]): + if diff.getpixel((k,l)) >0 : + compteur += 1 + dd = "\nNombre de différences (entre lena et lena démarque) :"+str(compteur)+" sur " + dd += str(image1.size[0]*image1.size[1])+'.\n' + self._resultat.write(dd) + print compteur + if compteur < self._config.getfloat("DIFFERENCES","seuil"): + print "OK" + self.cleanup() + exit(OK) + else: + print "PAS OK" + self.cleanup() + exit(PAS_OK) + + + + + + + +if __name__ == '__main__': + config = ConfigParser() + config.read([argv[1]]) + + repertoire_images = config.get('GENERAL','repertoire_images')+'/' + repertoire_temporaire = config.get('GENERAL','repertoire_temporaire')+'/' + + if repertoire_temporaire not in listdir('.'): + system("mkdir -p "+repertoire_temporaire) + + nom = ''.join(argv[2].split('.')[:-1]) + extension = argv[2].lstrip(nom) + + image_hote = repertoire_images+argv[2] + image_marquee = repertoire_temporaire+nom+"_marquee"+extension + image_attaquee = repertoire_temporaire+nom+"_attaquee"+extension + + authentification = config.getboolean('GENERAL','authentification') + WATERMARK = config.get('GENERAL','watermark') + + Resultat = config.get('GENERAL','repertoire_resultat')+'/'+config.get('GENERAL','resultat') + + uneAction = Spatial_Doublement(hote = image_hote, + watermark = WATERMARK, + config = config, + LSB = eval(config.get('INSERTION','LSB')), + mu = config.getfloat("CHIFFREMENT_INSERTION","mu"), + Xo = config.getfloat("CHIFFREMENT_INSERTION","Xo"), + authentification = authentification, + x0 = 1, y0 = 1, + Resultat = Resultat, + iterations_chiffrement = 20000) + uneAction.insertion(nom = image_marquee) + + # Attaque éventuelle + if config.getboolean('ATTAQUE','attaque'): + uneAttaque = Attaque(nom = image_marquee, + configuration = argv[1]) + #uneAttaque.show() + uneAttaque.save(image_attaquee) + hote = image_attaquee + else: + hote = image_marquee + + # Extraction et evaluation + uneAction.extraction(hote = hote, + original = image_hote, + mu = config.getfloat("CHIFFREMENT_EXTRACTION","mu"), + Xo = config.getfloat("CHIFFREMENT_EXTRACTION","Xo"), + LSB = eval(config.get('EXTRACTION','LSB')), + watermark = WATERMARK) + + # Nettoyage + print("weche?") + system("rm -v tempo_"+argv[3]+".png") + system("rm -v "+repertoire_temporaire+"*") diff --git a/src/Tatouage/script_python_valeurs_ok b/src/Tatouage/script_python_valeurs_ok new file mode 100644 index 0000000..e69de29 diff --git a/src/Tatouage/suite.py b/src/Tatouage/suite.py new file mode 100644 index 0000000..1381605 --- /dev/null +++ b/src/Tatouage/suite.py @@ -0,0 +1,268 @@ +#-*- coding:utf-8 -*- +from BitVector import * +from sympy.mpmath import * + +mp.prec = 100 + +class Logistique: + ''' + La suite logistique. + + - On itère f(X) = mu.X.(1-X), à partir de x0. + - On regarde ensuite où se situe f(X) par rapport aux frontières... + - S'il se situe entre la frontière k et k+1, alors on retourne valeurs[k]. + + Exemple d'utilisation : + + suiteLogistique = Logistique(0.65,4) + Un = suiteLogistique.iterateur() + print Un.next() + + ''' + + def __init__(self, x0, mu, frontiere = [0.5], valeurs = [0,1]): + '''Constructeur.''' + if len(frontiere)+1!=len(valeurs): + raise ValueError("La valeur de retour doit\ + être égale à la valeur frontière +1.") + self._x = mpf(str(x0)) + self._mu = mpf(str(mu)) + self._frontiere = frontiere + self._valeurs = valeurs + + + def iterateur(self): + '''Crée un générator.''' + while True: + k=0 + while self._x > self._frontiere[k]: + k+=1 + if k==len(self._frontiere): + break + yield self._valeurs[k] + self._x = self._mu*self._x*(1-self._x) + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return BitVector(bitlist = l) + + + + +class Uns: + ''' Suite de uns ''' + def __init__(self): + '''Constructeur.''' + pass + + def iterateur(self): + ''' generator de la suite de uns.''' + while True: + yield 1 + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return BitVector(bitlist = l) + + + + +class Arnold: + ''' Le chat d'arnold : + X[n+1] = (X[n] + Y[N])%N + Y[n+1] = (X[n] + 2*Y[N])%N. + + Les arguments de ce constructeur sont le couple initial, et le + modulo N. + ''' + + def __init__(self, (x0,y0), N, l = 1, dim = 2): + '''Constructeur.''' + assert x0 >= 0 and y0 >= 0 + assert x0 < N and y0 < N + assert dim in [1, 2] + + self._x, self._y = x0, y0 + self._l = l + self._N = N + self._dim = dim + + + def iterateur(self): + '''Generator de la suite Chat d'Arnold. Possède une version 1 dimension : + au lieu de retourner le couple (x,y), on retourne x*N+y. + ''' + if self._dim == 2: + while True: + yield (self._x,self._y) + x, y = self._x, self._y + self._x = (x + y)%self._N + self._y = (self._l*x + (self._l+1)*y)%self._N + elif self._dim ==1 : + while True: + yield self._x*self._N + self._y + x, y = self._x, self._y + self._x = (x + y)%self._N + self._y = (self._l*x + (self._l+1)*y)%self._N + + + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return l + + + + +class TelQuel: + ''' + Renvoie la suite des coefficients, tel quel. + + Par exemple, + * TelQuel(2, 5) : 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, + 0, 1, 2, ... + * TelQuel((2, 3), (4, 5)) : (2, 3), (3, 3), (0, 4), (1, 4), + (2, 4), (3, 4), (0, 0), (1, 0), + (2, 0), (3, 0) + * TelQuel((2, 3), (4, 5), sens = 'indirect') : (2, 3), + (2,4), (2, 5), (3, 2), (3, 3)... + Un booléen (boucle), fixé à True par défaut, permet d'arrêter les + itérations une fois que l'ensemble des coefficients a été atteints, + quand il est mis à False. + ''' + def __init__(self, debut, fin, sens = 'direct', boucle = True, termes = 0, + pas = 1): + ''' + Constructeur. + ''' + self._boucle = boucle + self._compteur = 0 + self._termes = termes + self._pas = pas + if isinstance(debut, int): + assert isinstance(fin, int) + self._debut = (debut,) + self._fin = (fin,) + else: + self._debut = tuple(debut) + self._fin = tuple(fin) + assert len(self._debut) == len(self._fin) + self._direct = sens == 'direct' + + + def iterateur(self): + y = self._debut + z = self._fin + x = list(y) + while True: + if len(x) == 1: + yield x[0] + else: + yield tuple(x) + if self._direct: + vecteur = range(len(x)) + else: + vecteur = range(len(x)-1,-1,-1) + for k in vecteur: + x[k] = (x[k] + self._pas)%z[k] + if x[k]!=0: + break + if not self._boucle: + if tuple(x) == self._debut: + raise StopIteration + self._compteur +=1 + if self._compteur == self._termes: + raise StopIteration + + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return l + + + + +class Doublement: + ''' Retourne un générateur : U[n+1] = (2*U[n] + V[n] + n)%N + + Dans ce qui précède : + - Une option peut être passée au constructeur pour ne pas + avoir le +n. + - V est un générateur ou une liste : + * Si c'est un générateur, on boucle éternellement, + * Si c'est une liste, on met 0 quand on est arrivé à + la fin de la liste. + - Si V n'est pas fourni au constructeur, alors V[n] = 0. + + Le modulo peut être soit un entier, soit un tuple. + ''' + + def __init__(self, U0, modulo, generateur = [], plusN = True): + ''' + Constructeur. + ''' + self._compteur = -1 + self._plusN = plusN + self._modulo = modulo + if isinstance(modulo, int): + self._modulo = (self._modulo,) + if isinstance(U0, int): + self._U = [U0]*len(self._modulo) + else: + self._U = U0 + if isinstance(generateur, list) : + self._generateur = self._genere(generateur) + else : + self._generateur = generateur + + + def _genere(self, liste): + while True : + if self._compteur < len(liste): + yield liste[self._compteur] + else: + yield 0 + + + def iterateur(self): + Vn = self._generateur + while True : + L = [] + for k in range(len(self._modulo)): + L.append(self._U[k]) + self._compteur += 1 + self._U[k] = 2*self._U[k] + Vn.next() + if self._plusN: + self._U[k] += self._compteur + self._U[k] %= self._modulo[k] + if len(L) == 1: + yield L[0] + else: + yield tuple(L) + + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return l + + diff --git a/src/Tatouage/tempo.png b/src/Tatouage/tempo.png new file mode 100644 index 0000000..c6af15b Binary files /dev/null and b/src/Tatouage/tempo.png differ diff --git a/src/Tatouage/tempo/dd_attaquee.jpg b/src/Tatouage/tempo/dd_attaquee.jpg new file mode 100644 index 0000000..cc5cd8a Binary files /dev/null and b/src/Tatouage/tempo/dd_attaquee.jpg differ diff --git a/src/Tatouage/tempo/dd_marquee.jpg b/src/Tatouage/tempo/dd_marquee.jpg new file mode 100644 index 0000000..dad5f29 Binary files /dev/null and b/src/Tatouage/tempo/dd_marquee.jpg differ diff --git a/src/Tatouage/tempo_1.png b/src/Tatouage/tempo_1.png new file mode 100644 index 0000000..0c05654 Binary files /dev/null and b/src/Tatouage/tempo_1.png differ diff --git a/src/test_nouvelles_fonctions/.outilsBase.py.swp b/src/test_nouvelles_fonctions/.outilsBase.py.swp new file mode 100644 index 0000000..4bd73f2 Binary files /dev/null and b/src/test_nouvelles_fonctions/.outilsBase.py.swp differ diff --git a/src/test_nouvelles_fonctions/Resultats.txt b/src/test_nouvelles_fonctions/Resultats.txt new file mode 100644 index 0000000..691212f --- /dev/null +++ b/src/test_nouvelles_fonctions/Resultats.txt @@ -0,0 +1,46 @@ +================== Chiffrement ================== +Affichage de l'hôte marqué +Différences (facteur de 127.5) +Valeur moyenne des différences : 0.0203247070312 +Médiane des différences : 0 +Valeurs extrémales : (0, 2) +Somme des différences : 5328.0 +Valeur efficace : 0.142832072647 +Ecart-type : 0.141378595483 + +================== Chiffrement ================== +Combien d'itérations ? 20000 + +Quel mu pour la suite logistique ? 4 +Quel Xo ? 0.65 +Quelle matrice DWT affecter ? A1 +Début de l'insertion ? (1,1) +Authentification ? False +Liste des LSB ? [2] +Minimum, mediane et maximum : -2.5 -3.0517578125e-05 1.5 +RMS : 0.018528970665 + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +================== Chiffrement ================== +Affichage de l'hôte marqué +Différences (facteur de 127.5) +Valeur moyenne des différences : 0.0203247070312 +Médiane des différences : 0 +Valeurs extrémales : (0, 2) +Somme des différences : 5328.0 +Valeur efficace : 0.142832072647 +Ecart-type : 0.141378595483 + +================== Chiffrement ================== +Combien d'itérations ? 20000 + +Quel mu pour la suite logistique ? 3.99987 +Quel Xo ? 0.64 +Quelle matrice DWT affecter ? A1 +Début de l'insertion ? (11,13) +Authentification ? False +Liste des LSB ? [2] +Minimum, mediane et maximum : -2.0 -0.000152587890625 2.0 +RMS : 0.351182520348 diff --git a/src/test_nouvelles_fonctions/chiffrement_image.py b/src/test_nouvelles_fonctions/chiffrement_image.py new file mode 100644 index 0000000..ed4cb43 --- /dev/null +++ b/src/test_nouvelles_fonctions/chiffrement_image.py @@ -0,0 +1,106 @@ +#-*-coding:utf8-*- +# +# On reprend tout le chiffrement. On souhaite chiffrer, par itérations +# chaotiques, des images. + +import Image as im +from numpy import array +from outilsBase import conversion +from BitVector import BitVector +from math import log + +class Chiffrement: + + _bits_par_coef = { '1' : 1, 'L' : 8, 'RGB' : 8} + + def __init__(self, fichier_image = 'lena.png', iterations = None, + mu = None, Xo = None): + if iterations == None: + self._iterations = input("Combien d'itérations ? ") + else: + self._iterations = iterations + print "Nombre d'itérations : ",self._iterations + + self._image = im.open(fichier_image) + self._mode = self._image.mode + liste = list(self._image.getdata()) + + + if self._mode == '1': + liste = [k/255 for k in liste] + elif self._mode == 'RGB': + liste2 = [] + for k in liste: + liste2 += k + liste = liste2 + + self._systeme = [conversion(k,2).zfill(self._bits_par_coef[self._mode]) for k in liste] + self._systeme = ''.join(self._systeme) + self._systeme = BitVector(bitstring = self._systeme) + + self._strategie = [] + + self._mu = mu + if not self._mu: + self._mu = input("\nQuel mu pour la suite logistique ? ") + else: + print "mu = ",self._mu + + self._X = Xo + if not self._X: + self._X = input("Quel Xo ? ") + else: + print "Xo = ",self._X + + + + + + + def chiffrement(self): + # Suite de bits à partir de la suite logistique + code = '' + self._taille = int(log(len(self._systeme),2))+1 + + for k in range(self._iterations*self._taille): + Y = 0 if self._X<0.5 else 1 + self._X = self._mu*self._X*(1-self._X) + code += str(Y) + if len(code)%self._taille == 0: + code = int(code,2) + if code < len(self._systeme): + self._systeme[code] = not self._systeme[code] + self._strategie.append(code) + code = '' + + + + + def get_image(self): + image2 = im.new(self._mode, self._image.size) + (x,y) = self._image.size + compteur = 0 + for k in range(x): + for l in range(y): + coef = '' + for m in range(self._bits_par_coef[self._mode]): + coef += str(self._systeme[compteur]) + compteur += 1 + valeur = int(coef,2) + if self._mode == '1': + valeur *= 255 + image2.putpixel((l,k),valeur) + return image2 + + + + def get_strategie(self): + return self._strategie + + + +if __name__ == '__main__': + ch = Chiffrement(fichier_image = 'invader.png', iterations = 10000) + ch.chiffrement() + print "Strategie : ", ch.get_strategie()[:10] + ch.get_image().save('invader_chiffre.png') diff --git a/src/test_nouvelles_fonctions/coefficients.py b/src/test_nouvelles_fonctions/coefficients.py new file mode 100644 index 0000000..0ce5282 --- /dev/null +++ b/src/test_nouvelles_fonctions/coefficients.py @@ -0,0 +1,115 @@ +#-*- coding:utf-8 -*- +from math import log +from random import randint +import Image as im +from outilsBase import getBit, setBit +from BitVector import BitVector + +class Coefficients: + + def __init__(self): + ''' + Constructeur. + ''' + pass + + + def bit2coef(self, generateurOuBitVector, limite): + ''' Transforme une suite de bits en suite de nombres. + On fixe la limite, ie le plus grand nombre accepté, et la méthode + retourne des entiers inférieurs à limite, obtenus en concaténant le + bon nombre de bits. + ''' + assert isinstance(limite, int) + if isinstance(generateurOuBitVector, BitVector) : + nbBits = int(log(limite,2)) + compteur = 0 + motBits = '' + while True: + motBits += str(generateurOuBitVector[compteur %\ + len(generateurOuBitVector)]) + compteur += 1 + if compteur % nbBits == 0: + yield int(motBits, 2) + motBits = '' + + else : + assert isinstance(generateurOuBitVector, object) + nbBits = int(log(limite,2)) + compteur = 0 + motBits = '' + while True: + motBits += str(generateurOuBitVector.next()) + compteur += 1 + if compteur % nbBits == 0: + yield int(motBits, 2) + motBits = '' + + + def getCoef(self, fichier = '', positionsBits = []): + ''' + Retourne les bits de poids forts de l'image. + + On boucle indéfiniment. + ''' + image = im.open(fichier) + x, y = 0, 0 + while True: + coef = image.getpixel((x,y)) + for k in positionsBits: + yield getBit(coef, k) + x += 1 + if x == image.size[0]: + x = 0 + y += 1 + if y == image.size[1]: + y = 0 + + + def getAllCoefs(self, fichier = '', positionsBits = [], nombre = 0): + ''' + Retourne un BitVector des bits de positionsBits de l'image. + ''' + # IMPROVE Ce qui suit ne colle que pour des images + image = im.open(fichier) + x, y = 0, 0 + L = [] + compteur = 1 + while True : + coef = image.getpixel((x,y)) + for k in positionsBits: + L.append(getBit(coef, k)) + compteur += 1 + x += 1 + if x == image.size[0]: + x = 0 + y += 1 + if y == image.size[1]: + #if y == image.size[1] or (nombre != 0 and compteur > nombre) : + break + + return BitVector(bitlist = L) + + + def putAllCoefs(self, fichier = '', vecteur = None, positionBits = []): + ''' + Remplace, dans fichier, les bits correspondant à la position + prositionBits par ceux de vecteur. + + Le retour est un objet Image. + ''' + image = im.open(fichier) + retour = im.new(image.mode, image.size) + assert image.size[0]*image.size[1]*len(positionBits) == len(vecteur) + compteur = 0 + for x in range(image.size[0]): + for y in range(image.size[1]): + coef = image.getpixel((y,x)) + for k in positionBits: + coef = setBit(coef, k, vecteur[compteur]) + compteur += 1 + retour.putpixel((y,x), coef) + return retour + + + diff --git a/src/test_nouvelles_fonctions/dwt_marquage.py b/src/test_nouvelles_fonctions/dwt_marquage.py new file mode 100644 index 0000000..a2bd7aa --- /dev/null +++ b/src/test_nouvelles_fonctions/dwt_marquage.py @@ -0,0 +1,139 @@ +#-*-coding:utf8-*- +import Image as im +import pywt +from numpy import * + + +class Marquage_DWT: + + _matrices_DWT = {'A1' : None, + 'H1' : None, 'D1' : None, 'V1' : None, + 'A2' : None, + 'H2' : None, 'D2' : None, 'V2' : None, + 'A3' : None, + 'H4' : None, 'D3' : None, 'V3' : None + } + + def __init__(self, hote = 'lena.png', famille = 'db1'): + ''' + Constructeur + ''' + self._hote = im.open(hote) + + self._hote_marque = im.new(self._hote.mode, + self._hote.size) + self._hote_marque.putdata(self._hote.getdata()) + + self._matrice_hote = array(self._hote.getdata()).\ + reshape(self._hote.size) + + self._famille = famille + + self._get_matrices() + + + + + def _get_matrices(self): + + A1,(H1,V1,D1) = pywt.wavedec2\ + (self._matrice_hote, + self._famille, + level = 1) + + self._matrices_DWT['A1'] = A1 + self._matrices_DWT['H1'] = H1 + self._matrices_DWT['V1'] = V1 + self._matrices_DWT['D1'] = D1 + + A2,(H2,V2,D2),(H1,V1,D1) = pywt.wavedec2\ + (self._matrice_hote, + self._famille, + level = 2) + + self._matrices_DWT['A2'] = A2 + self._matrices_DWT['H2'] = H2 + self._matrices_DWT['V2'] = V2 + self._matrices_DWT['D2'] = D2 + + A3,(H3,V3,D3), (H2,V2,D2), (H1,V1,D1) = pywt.wavedec2\ + (self._matrice_hote, + self._famille, + level = 3) + + self._matrices_DWT['A3'] = A3 + self._matrices_DWT['H3'] = H3 + self._matrices_DWT['V3'] = V3 + self._matrices_DWT['D3'] = D3 + + + + def get_matrice_DWT(self, matrice): + assert matrice in self._matrices_DWT.keys() + return self._matrices_DWT[matrice] + + + def set_matrice_DWT(self, matrice, valeur): + assert matrice in self._matrices_DWT.keys() + self._matrices_DWT[matrice] = valeur + self._reconstruit_image(matrice) + + + def _reconstruit_image(self, matrice_modifiee): + if '1' in matrice_modifiee: + self._hote_marque.putdata(pywt.waverec2((\ + self._matrices_DWT['A1'], + (self._matrices_DWT['H1'], + self._matrices_DWT['V1'], + self._matrices_DWT['D1'])), + self._famille).flatten()) + elif '2' in matrice_modifiee: + self._hote_marque.putdata(pywt.waverec2((\ + self._matrices_DWT['A2'], + (self._matrices_DWT['H2'], + self._matrices_DWT['V2'], + self._matrices_DWT['D2']), + (self._matrices_DWT['H1'], + self._matrices_DWT['V1'], + self._matrices_DWT['D1'])), + self._famille).flatten()) + elif '3' in matrice_modifiee: + self._hote_marque.putdata(pywt.waverec2((\ + self._matrices_DWT['A3'], + (self._matrices_DWT['H3'], + self._matrices_DWT['V3'], + self._matrices_DWT['D3']), + (self._matrices_DWT['H2'], + self._matrices_DWT['V2'], + self._matrices_DWT['D2']), + (self._matrices_DWT['H1'], + self._matrices_DWT['V1'], + self._matrices_DWT['D1'])), + self._famille).flatten()) + + + def get_hote_marque(self): + return self._hote_marque + + +if __name__ == '__main__': + print "Mise à zéro des matrices d'approximation" + for k in ['A1','A2','A3']: + print " Matrice "+k + unMarquage = Marquage_DWT(hote = 'lena.png', + famille = 'db1') + matrice_nulle = zeros(unMarquage.get_matrice_DWT(k).shape) + unMarquage.set_matrice_DWT(k,matrice_nulle) + unMarquage.get_hote_marque().show() + raw_input(' (Appuyez sur une touche)') + + print + print "Mise à zéro des matrices de détail D" + for k in ['D1','D2','D3']: + print " Matrice "+k + unMarquage = Marquage_DWT(hote = 'lena.png', + famille = 'db1') + matrice_nulle = zeros(unMarquage.get_matrice_DWT(k).shape) + unMarquage.set_matrice_DWT(k,matrice_nulle) + unMarquage.get_hote_marque().show() + raw_input(' (Appuyez sur une touche)') diff --git a/src/test_nouvelles_fonctions/evaluation.py b/src/test_nouvelles_fonctions/evaluation.py new file mode 100644 index 0000000..2af3d37 --- /dev/null +++ b/src/test_nouvelles_fonctions/evaluation.py @@ -0,0 +1,143 @@ +#-*- coding:utf-8 -*- +from ImageChops import difference +from Image import * +import ImageStat + +from sys import exit +from os import system +from pyx import * + + +class Evaluation: + ''' + Classe permettant l'évaluation du marquage. Les deux images doivent être de + type Image + ''' + + def __init__(self, image1 = None, image2 = None): + ''' + Constructeur. + Les deux images doivent être de type Image ! + ''' + self._image1 = image1 + self._image2 = image2 + # TODO Tester l'appartenance à Image + assert self._image1.mode == self._image2.mode + assert self._image1.size == self._image2.size + + + def _EQM(self): + eqm = 0 + for k in range(self._image1.size[0]): + for l in range(self._image1.size[1]): + eqm+=(self._image1.getpixel((k,l)) - \ + self._image2.getpixel((k,l)))**2 + return float(eqm)/self._image1.size[0]/self._image1.size[1] + + + def _bitsParCoef(self): + if self._image1.mode == '1': + return 1 + elif self._image1.mode == 'L': + return 8 + else: + raise ValueError("Mode non supporté pour l'évaluation") + + + def PSNR(self): + ''' + Retourne le PSNR entre deux images. + ''' + from math import log + densite = 2**self._bitsParCoef()-1 + if self._EQM()!=0: + return 10*log(densite**2/self._EQM(),10) + else: + return "Infini" + + + def differences(self): + ''' + Renvoie le nombre de coefficients différents, + vu comme un pourcentage. + ''' + compteur = 0 + for k in range(self._image1.size[0]): + for l in range(self._image1.size[1]): + if self._image1.getpixel((k,l)) != self._image2.getpixel((k,l)): + compteur+=1 + return 100*float(compteur)/self._image1.size[0]/self._image1.size[1] + + + def visualisationDifferences(self, facteur = 0, nom = ''): + ''' + Visualise les différences, avec Image + ''' + extreme = self.differencesExtremales()[1] + if extreme == 0: + leFacteur = 0 + elif facteur*extreme > 255: + raise ValueError('Facteur de visualisation trop élevé') + exit(1) + elif facteur == 0: + leFacteur = 255/extreme + else: + leFacteur = facteur + print 'Facteur de visualisation : ', leFacteur + if nom !='': + difference(self._image1,self._image2).point(lambda x:leFacteur*x).save(nom) + difference(self._image1,self._image2).point(lambda x:leFacteur*x).show() + dd = list(difference(self._image1,self._image2).point(lambda x:leFacteur*x).getdata()) + print "Nombre de différences",len(dd)-dd.count(0),"sur",len(dd) + + + + def differenceMoyenne(self): + ''' + Renvoie la différence moyenne entre les images + ''' + stats = ImageStat.Stat(difference(self._image1, + self._image2).histogram()) + if self._image1.mode == '1': + return float(stats.mean[0])/255 + else: + return stats.mean[0] + + + def differencesExtremales(self): + ''' + Renvoie le minimum et le maximum des différences des images + ''' + stats = ImageStat.Stat(difference(self._image1, + self._image2).histogram()) + if self._image1.mode == '1': + return (int(float(stats.extrema[0][0])/255), + int(float(stats.extrema[0][1])/255)) + else: + return stats.extrema[0][0], stats.extrema[0][1] + + + def _differencesHistogramme(self): + ''' + Histogramme des différences, pour differencesHistoVisu + ''' + histo = difference(self._image1, self._image2).histogram() + liste = [] + for l in range(1,self.differencesExtremales()[1]+1): + liste.append((l,histo[l])) + return liste + + + def differencesHistoVisu(self): + ''' + Affiche l'histrogramme des différences, avec PyX + ''' + liste = [] + for k in self._differencesHistogramme(): + liste.append((k[0],k[1])) + if len(liste) == 0: + raise ValueError("Aucune différence") + g = graph.graphxy(width=8, x=graph.axis.bar()) + g.plot(graph.data.points(liste, xname=0, y=2),[graph.style.bar()]) + g.writeEPSfile('histoDiff.eps') + system('evince histoDiff.eps') diff --git a/src/test_nouvelles_fonctions/filigrane32.png b/src/test_nouvelles_fonctions/filigrane32.png new file mode 100644 index 0000000..5d64680 Binary files /dev/null and b/src/test_nouvelles_fonctions/filigrane32.png differ diff --git a/src/test_nouvelles_fonctions/image_chiffree.png b/src/test_nouvelles_fonctions/image_chiffree.png new file mode 100644 index 0000000..fbcac22 Binary files /dev/null and b/src/test_nouvelles_fonctions/image_chiffree.png differ diff --git a/src/test_nouvelles_fonctions/invader.png b/src/test_nouvelles_fonctions/invader.png new file mode 100644 index 0000000..ebf3bf2 Binary files /dev/null and b/src/test_nouvelles_fonctions/invader.png differ diff --git a/src/test_nouvelles_fonctions/lena.png b/src/test_nouvelles_fonctions/lena.png new file mode 100644 index 0000000..d82c3d4 Binary files /dev/null and b/src/test_nouvelles_fonctions/lena.png differ diff --git a/src/test_nouvelles_fonctions/lena512.jpg b/src/test_nouvelles_fonctions/lena512.jpg new file mode 100644 index 0000000..a551726 Binary files /dev/null and b/src/test_nouvelles_fonctions/lena512.jpg differ diff --git a/src/test_nouvelles_fonctions/lena512marque.jpg b/src/test_nouvelles_fonctions/lena512marque.jpg new file mode 100644 index 0000000..f0ba1cb Binary files /dev/null and b/src/test_nouvelles_fonctions/lena512marque.jpg differ diff --git a/src/test_nouvelles_fonctions/lena512marque.png b/src/test_nouvelles_fonctions/lena512marque.png new file mode 100644 index 0000000..f5295af Binary files /dev/null and b/src/test_nouvelles_fonctions/lena512marque.png differ diff --git a/src/test_nouvelles_fonctions/lena_demarque.png b/src/test_nouvelles_fonctions/lena_demarque.png new file mode 100644 index 0000000..f55ec6b Binary files /dev/null and b/src/test_nouvelles_fonctions/lena_demarque.png differ diff --git a/src/test_nouvelles_fonctions/lena_dwt_shift.pdf b/src/test_nouvelles_fonctions/lena_dwt_shift.pdf new file mode 100644 index 0000000..8808f58 Binary files /dev/null and b/src/test_nouvelles_fonctions/lena_dwt_shift.pdf differ diff --git a/src/test_nouvelles_fonctions/lena_marque.png b/src/test_nouvelles_fonctions/lena_marque.png new file mode 100644 index 0000000..f7e5e34 Binary files /dev/null and b/src/test_nouvelles_fonctions/lena_marque.png differ diff --git a/src/test_nouvelles_fonctions/outilsBase.py b/src/test_nouvelles_fonctions/outilsBase.py new file mode 100644 index 0000000..0715056 --- /dev/null +++ b/src/test_nouvelles_fonctions/outilsBase.py @@ -0,0 +1,97 @@ +#-*- coding:utf-8 -*- +import string +from numpy import * + +def conversion(nombre, base, epsilon = 0.00001 ): + ''' Soit nombre écrit en base 10, le retourne en base base''' + if not 2 <= base <= 36: + raise ValueError, "La base doit être entre 2 et 36" + if not base == 2 and '.' in str(nombre): + raise ValueError, "La partie décimale n'est pas gérée pour les bases\ + différentes de 2." + # IMPROVE : Convertir aussi la partie décimale, quand la base n'est pas égale + # à 2. + abc = string.digits + string.letters + result = '' + if '-' in nombre: + nombre = nombre.replace('-','') + sign = '-' + else: + sign = '' + if '.' in str(nombre): + entier,decimal = int(str(nombre).split('.')[0]),\ + float('.'+str(nombre).split('.')[1]) + else: + entier,decimal = int(str(nombre)),0 + while entier !=0 : + entier, rdigit = divmod( entier, base ) + result = abc[rdigit] + result + flotante, decimalBin = 1./float(base),'' + while flotante > epsilon : + if decimal >= flotante: + decimalBin+='1' + decimal-=flotante + else : + decimalBin+='0' + flotante = flotante/float(base) + if '1' in decimalBin : + reste = '.'+decimalBin + while reste[-1]=='0': + reste = reste[:-1] + else : + reste = '' + if result == '': + result = '0' + return sign + result + reste + + +def getBit(X,pos): + '''Récupère le bit en position pos de X. + Par exemple, getBit(8,1) = 0, puisque le bit le plus à droite de 8 = 1000 est 0. + On fera attention à ce que : + - on compte à partir du point, + - l'élément juste à gauche du point est en position 1, + - celui juste à droite est en position -1.''' + assert pos != 0 + entier = conversion(X,2) + if '.' in entier: + entier, decimal = entier.split('.') + if decimal == '0': + decimal = '' + else: + decimal = '' + if '-' in entier: + entier = entier.replace('-','') + entier = entier.zfill(abs(pos)) + decimal = (decimal+'0'*abs(pos))[:max(len(decimal),abs(pos))] + + return int(entier[len(entier)-pos]) if pos >0 else int(decimal[-pos-1]) + + +def setBit(X,pos,y): + '''Fixe le bit pos de X à la valeur y. + Le fonctionnement est similaire à getBit : + - on compte à partir du point, + - l'élément juste à gauche du point est en position 1, + - celui juste à droite est en position -1.''' + assert pos != 0 + entier = conversion(X,2) + if '.' in entier: + entier, decimal = entier.split('.') + else: + decimal = '' + entier = list(entier.zfill(abs(pos))) + decimal = list((decimal+'0'*abs(pos))[:max(len(decimal),abs(pos))]) + if pos>0: + entier[len(entier)-pos]=str(int(y)) + else: + decimal[-pos-1] = str(int(y)) + if decimal == []: + return int(''.join(entier),2) + else: + S=0 + for k in range(len(decimal)): + S += 1./2**(k+1)*int(decimal[k]) + return float(str(int(''.join(entier),2))+'.'+str(S).split('.')[1]) + + diff --git a/src/test_nouvelles_fonctions/pywt/.svn/all-wcprops b/src/test_nouvelles_fonctions/pywt/.svn/all-wcprops new file mode 100644 index 0000000..587b2ca --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/all-wcprops @@ -0,0 +1,53 @@ +K 25 +svn:wc:ra_dav:version-url +V 49 +/svn/multiresolution/!svn/ver/139/pywt/trunk/pywt +END +functions.py +K 25 +svn:wc:ra_dav:version-url +V 62 +/svn/multiresolution/!svn/ver/139/pywt/trunk/pywt/functions.py +END +thresholding.py +K 25 +svn:wc:ra_dav:version-url +V 65 +/svn/multiresolution/!svn/ver/117/pywt/trunk/pywt/thresholding.py +END +__init__.py +K 25 +svn:wc:ra_dav:version-url +V 61 +/svn/multiresolution/!svn/ver/136/pywt/trunk/pywt/__init__.py +END +wavelet_packets.py +K 25 +svn:wc:ra_dav:version-url +V 68 +/svn/multiresolution/!svn/ver/134/pywt/trunk/pywt/wavelet_packets.py +END +multilevel.py +K 25 +svn:wc:ra_dav:version-url +V 63 +/svn/multiresolution/!svn/ver/117/pywt/trunk/pywt/multilevel.py +END +multidim.py +K 25 +svn:wc:ra_dav:version-url +V 61 +/svn/multiresolution/!svn/ver/117/pywt/trunk/pywt/multidim.py +END +release_details.py +K 25 +svn:wc:ra_dav:version-url +V 68 +/svn/multiresolution/!svn/ver/118/pywt/trunk/pywt/release_details.py +END +numerix.py +K 25 +svn:wc:ra_dav:version-url +V 60 +/svn/multiresolution/!svn/ver/117/pywt/trunk/pywt/numerix.py +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/dir-prop-base b/src/test_nouvelles_fonctions/pywt/.svn/dir-prop-base new file mode 100644 index 0000000..4cc643b --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/dir-prop-base @@ -0,0 +1,6 @@ +K 10 +svn:ignore +V 6 +*.pyc + +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/entries b/src/test_nouvelles_fonctions/pywt/.svn/entries new file mode 100644 index 0000000..ed3e444 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/entries @@ -0,0 +1,300 @@ +9 + +dir +139 +http://wavelets.scipy.org/svn/multiresolution/pywt/trunk/pywt +http://wavelets.scipy.org/svn/multiresolution + + + +2009-05-16T14:19:55.765584Z +139 +filipw +has-props + +svn:special svn:externals svn:needs-lock + + + + + + + + + + + +993dc4b6-72fc-0310-9b3e-91fa30ebc9a8 + +functions.py +file + + + + +2009-09-19T09:10:17.048725Z +08ce82953c267ba3e22251d4b5bbc3c7 +2009-05-16T14:19:55.765584Z +139 +filipw +has-props + + + + + + + + + + + + + + + + + + + + +4986 + +thresholding.py +file + + + + +2009-09-19T09:10:17.048725Z +4fb98ba3aecf3fe9dc48bcb29dd6b7b4 +2009-05-02T20:25:59.434036Z +117 +filipw +has-props + + + + + + + + + + + + + + + + + + + + +1290 + +__init__.py +file + + + + +2009-09-19T09:10:17.048725Z +781468f671136f25826b776a33f1f871 +2009-05-10T21:49:35.499106Z +136 +filipw +has-props + + + + + + + + + + + + + + + + + + + + +809 + +wavelet_packets.py +file + + + + +2009-09-19T09:10:17.052944Z +e57dc818fb962586ef9c7a9199ae0b6b +2009-05-10T21:45:10.012346Z +134 +filipw +has-props + + + + + + + + + + + + + + + + + + + + +19583 + +multilevel.py +file + + + + +2009-09-19T09:10:17.052944Z +d19539876e8b67afd9294e7726f8f461 +2009-05-02T20:25:59.434036Z +117 +filipw +has-props + + + + + + + + + + + + + + + + + + + + +3890 + +multidim.py +file + + + + +2009-09-19T09:10:17.052944Z +c774acce53bfcecaccfc3771bedf77f7 +2009-05-02T20:25:59.434036Z +117 +filipw +has-props + + + + + + + + + + + + + + + + + + + + +9107 + +release_details.py +file + + + + +2009-09-19T09:10:17.052944Z +9581746f6d520f6197f3a5495581c447 +2009-05-02T23:04:31.009052Z +118 +filipw +has-props + + + + + + + + + + + + + + + + + + + + +1586 + +numerix.py +file + + + + +2009-09-19T09:10:17.056945Z +bb66a8951a5941103b09beeacb106fac +2009-05-02T20:25:59.434036Z +117 +filipw +has-props + + + + + + + + + + + + + + + + + + + + +1738 + diff --git a/src/test_nouvelles_fonctions/pywt/.svn/format b/src/test_nouvelles_fonctions/pywt/.svn/format new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/format @@ -0,0 +1 @@ +9 diff --git a/src/test_nouvelles_fonctions/pywt/.svn/prop-base/__init__.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/__init__.py.svn-base new file mode 100644 index 0000000..bbcbf92 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/__init__.py.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 6 +native +K 12 +svn:keywords +V 72 +Author LastChangedBy Date LastChangedDate Rev Revision LastChangedRev Id +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/prop-base/functions.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/functions.py.svn-base new file mode 100644 index 0000000..bbcbf92 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/functions.py.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 6 +native +K 12 +svn:keywords +V 72 +Author LastChangedBy Date LastChangedDate Rev Revision LastChangedRev Id +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/prop-base/multidim.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/multidim.py.svn-base new file mode 100644 index 0000000..bbcbf92 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/multidim.py.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 6 +native +K 12 +svn:keywords +V 72 +Author LastChangedBy Date LastChangedDate Rev Revision LastChangedRev Id +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/prop-base/multilevel.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/multilevel.py.svn-base new file mode 100644 index 0000000..bbcbf92 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/multilevel.py.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 6 +native +K 12 +svn:keywords +V 72 +Author LastChangedBy Date LastChangedDate Rev Revision LastChangedRev Id +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/prop-base/numerix.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/numerix.py.svn-base new file mode 100644 index 0000000..bbcbf92 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/numerix.py.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 6 +native +K 12 +svn:keywords +V 72 +Author LastChangedBy Date LastChangedDate Rev Revision LastChangedRev Id +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/prop-base/release_details.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/release_details.py.svn-base new file mode 100644 index 0000000..bbcbf92 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/release_details.py.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 6 +native +K 12 +svn:keywords +V 72 +Author LastChangedBy Date LastChangedDate Rev Revision LastChangedRev Id +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/prop-base/thresholding.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/thresholding.py.svn-base new file mode 100644 index 0000000..bbcbf92 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/thresholding.py.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 6 +native +K 12 +svn:keywords +V 72 +Author LastChangedBy Date LastChangedDate Rev Revision LastChangedRev Id +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/prop-base/wavelet_packets.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/wavelet_packets.py.svn-base new file mode 100644 index 0000000..bbcbf92 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/prop-base/wavelet_packets.py.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 6 +native +K 12 +svn:keywords +V 72 +Author LastChangedBy Date LastChangedDate Rev Revision LastChangedRev Id +END diff --git a/src/test_nouvelles_fonctions/pywt/.svn/text-base/__init__.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/text-base/__init__.py.svn-base new file mode 100644 index 0000000..76551a9 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/text-base/__init__.py.svn-base @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id$ + +""" +Discrete forward and inverse wavelet transform, stationary wavelet transform, +wavelet packets signal decomposition and reconstruction module. +""" + +from _pywt import * +from multilevel import * +from multidim import * +from wavelet_packets import * +from functions import * +import thresholding + +from release_details import version as __version__, author as __author__, license as __license__ +__all__ = [] +__all__ += _pywt.__all__ +__all__ += wavelet_packets.__all__ +__all__ += multilevel.__all__ +__all__ += multidim.__all__ +__all__ += functions.__all__ +__all__ += ['thresholding'] + +del multilevel, multidim, wavelet_packets diff --git a/src/test_nouvelles_fonctions/pywt/.svn/text-base/functions.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/text-base/functions.py.svn-base new file mode 100644 index 0000000..9858dab --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/text-base/functions.py.svn-base @@ -0,0 +1,149 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2008 Filip Wasilewski +# See COPYING for license details. + +# $Id$ + +""" +Other wavelet related functions. +""" + +__all__ = ["intwave", "centfrq", "scal2frq", "qmf", "orthfilt"] + +from math import sqrt + +from _pywt import Wavelet + +from numerix import asarray, array, float64 +from numerix import integrate +from numerix import argmax, mean +from numerix import fft + +WAVELET_CLASSES = (Wavelet) + + +def wavelet_for_name(name): + if not isinstance(name, basestring): + raise TypeError("Wavelet name must be of string type, not %s" % type(name)) + try: + wavelet = Wavelet(name) + except ValueError: + raise + #raise ValueError("Invalid wavelet name - %s." % name) + return wavelet + + +def intwave(wavelet, precision=8): + """ + intwave(wavelet, precision=8) -> [int_psi, x] - for orthogonal wavelets + intwave(wavelet, precision=8) -> [int_psi_d, int_psi_r, x] - for other wavelets + intwave((function_approx, x), precision=8) -> [int_function, x] - for (function approx., x grid) pair + + Integrate *psi* wavelet function from -Inf to x using the rectangle + integration method. + + wavelet - Wavelet to integrate (Wavelet object, wavelet name string + or (wavelet function approx., x grid) pair) + + precision = 8 - Precision that will be used for wavelet function + approximation computed with the wavefun(level=precision) + Wavelet's method. + + (function_approx, x) - Function to integrate on the x grid. Used instead + of Wavelet object to allow custom wavelet functions. + """ + + if isinstance(wavelet, tuple): + psi, x = asarray(wavelet[0]), asarray(wavelet[1]) + step = x[1] - x[0] + return integrate(psi, step), x + + else: + if not isinstance(wavelet, WAVELET_CLASSES): + wavelet = wavelet_for_name(wavelet) + + functions_approximations = wavelet.wavefun(precision) + if len(functions_approximations) == 2: # continuous wavelet + psi, x = functions_approximations + step = x[1] - x[0] + return integrate(psi, step), x + elif len(functions_approximations) == 3: # orthogonal wavelet + phi, psi, x = functions_approximations + step = x[1] - x[0] + return integrate(psi, step), x + else: # biorthogonal wavelet + phi_d, psi_d, phi_r, psi_r, x = functions_approximations + step = x[1] - x[0] + return integrate(psi_d, step), integrate(psi_r, step), x + + +def centfrq(wavelet, precision=8): + """ + centfrq(wavelet, precision=8) -> float - for orthogonal wavelets + centfrq((function_aprox, x), precision=8) -> float - for (function approx., x grid) pair + + Computes the central frequency of the *psi* wavelet function. + + wavelet - Wavelet (Wavelet object, wavelet name string + or (wavelet function approx., x grid) pair) + precision = 8 - Precision that will be used for wavelet function + approximation computed with the wavefun(level=precision) + Wavelet's method. + + (function_approx, xgrid) - Function defined on xgrid. Used instead + of Wavelet object to allow custom wavelet functions. + """ + + if isinstance(wavelet, tuple): + psi, x = asarray(wavelet[0]), asarray(wavelet[1]) + else: + if not isinstance(wavelet, WAVELET_CLASSES): + wavelet = wavelet_for_name(wavelet) + functions_approximations = wavelet.wavefun(precision) + + if len(functions_approximations) == 2: + psi, x = functions_approximations + else: + psi, x = functions_approximations[1], functions_approximations[-1] # (psi, x) for (phi, psi, x) and (psi_d, x) for (phi_d, psi_d, phi_r, psi_r, x) + + domain = float(x[-1] - x[0]) + assert domain > 0 + + index = argmax(abs(fft(psi)[1:]))+2 + if index > len(psi)/2: + index = len(psi)-index+2 + + return 1.0/(domain/(index-1)) + + +def scal2frq(wavelet, scale, delta, precision=8): + """ + scal2frq(wavelet, scale, delta, precision=8) -> float - for orthogonal wavelets + scal2frq(wavelet, scale, delta, precision=8) -> float - for (function approx., x grid) pair + + wavelet + scale + delta - sampling + """ + return centfrq(wavelet, precision=precision)/(scale*delta) + + +def qmf(filter): + filter = array(filter)[::-1] + filter[1::2] = -filter[1::2] + return filter + + +def orthfilt(scaling_filter): + assert len(scaling_filter) % 2 == 0 + + scaling_filter = asarray(scaling_filter, dtype=float64) + + rec_lo = sqrt(2) * scaling_filter / sum(scaling_filter) + dec_lo = rec_lo[::-1] + + rec_hi = qmf(rec_lo) + dec_hi = rec_hi[::-1] + + return (dec_lo, dec_hi, rec_lo, rec_hi) diff --git a/src/test_nouvelles_fonctions/pywt/.svn/text-base/multidim.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/text-base/multidim.py.svn-base new file mode 100644 index 0000000..5d19979 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/text-base/multidim.py.svn-base @@ -0,0 +1,296 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id$ + +""" +2D Discrete Wavelet Transform and Inverse Discrete Wavelet Transform. +""" + +__all__ = ['dwt2', 'idwt2', 'swt2', 'dwtn'] + +from itertools import izip, cycle + +from _pywt import Wavelet, MODES +from _pywt import dwt, idwt, swt, downcoef +from numerix import transpose, array, as_float_array, default_dtype, apply_along_axis + + +def dwt2(data, wavelet, mode='sym'): + """ + 2D Discrete Wavelet Transform. + + data - 2D array with input data + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + + Returns approximaion and three details 2D coefficients arrays. + + The result form four 2D coefficients arrays organized in tuples: + + (approximation, + (horizontal details, + vertical details, + diagonal details) + ) + + which sometimes is also interpreted as layed out in one 2D array + of coefficients, where: + + ----------------- + | | | + | A(LL) | H(LH) | + | | | + (A, (H, V, D)) <---> ----------------- + | | | + | V(HL) | D(HH) | + | | | + ----------------- + """ + + data = as_float_array(data) + if len(data.shape) != 2: + raise ValueError("Expected 2D data array") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + mode = MODES.from_object(mode) + + # filter rows + H, L = [], [] + append_L = L.append; append_H = H.append + for row in data: + cA, cD = dwt(row, wavelet, mode) + append_L(cA) + append_H(cD) + del data + + # filter columns + H = transpose(H) + L = transpose(L) + + LL, LH = [], [] + append_LL = LL.append; append_LH = LH.append + for row in L: + cA, cD = dwt(array(row, default_dtype), wavelet, mode) + append_LL(cA) + append_LH(cD) + del L + + HL, HH = [], [] + append_HL = HL.append; append_HH = HH.append + for row in H: + cA, cD = dwt(array(row, default_dtype), wavelet, mode) + append_HL(cA) + append_HH(cD) + del H + + # build result structure + # (approx., (horizontal, vertical, diagonal)) + ret = (transpose(LL), (transpose(LH), transpose(HL), transpose(HH))) + + return ret + +def idwt2(coeffs, wavelet, mode='sym'): + """ + 2D Inverse Discrete Wavelet Transform. Reconstruct data from coefficients + arrays. + + coeffs - four 2D coefficients arrays arranged as follows (in the same way + as dwt2 output -- see dwt2 description for details): + + (approximation, + (horizontal details, + vertical details, + diagonal details) + ) + + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + """ + + if len(coeffs) != 2 or len(coeffs[1]) != 3: + raise ValueError("Invalid coeffs param") + + # L -low-pass data, H - high-pass data + LL, (LH, HL, HH) = coeffs + + if not LL is None: LL = transpose(LL) + if not LH is None: LH = transpose(LH) + if not HL is None: HL = transpose(HL) + if not HH is None: HH = transpose(HH) + + all_none = True + for arr in (LL, LH, HL, HH): + if arr is not None: + all_none = False + if len(arr.shape) != 2: + raise TypeError("All input coefficients arrays must be 2D.") + del arr + if all_none: + raise ValueError("At least one input coefficients array must not be None.") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + mode = MODES.from_object(mode) + + # idwt columns + L = []; append_L = L.append + if LL is None and LH is None: + L = None + else: + if LL is None: LL = cycle([None]) # IDWT can handle None input values - equals to zero-array + if LH is None: LH = cycle([None]) # IDWT can handle None input values - equals to zero-array + for rowL, rowH in izip(LL, LH): + append_L(idwt(rowL, rowH, wavelet, mode, 1)) + del LL, LH + + H = [] + append_H = H.append + if HL is None and HH is None: + H = None + else: + if HL is None: HL = cycle([None]) # IDWT can handle None input values - equals to zero-array + if HH is None: HH = cycle([None]) # IDWT can handle None input values - equals to zero-array + for rowL, rowH in izip(HL, HH): + append_H(idwt(rowL, rowH, wavelet, mode, 1)) + del HL, HH + + if L is not None: + L = transpose(L) + if H is not None: + H = transpose(H) + + # idwt rows + data = [] + append_data = data.append + if L is None: L = cycle([None]) # IDWT can handle None input values - equals to zero-array + if H is None: H = cycle([None]) # IDWT can handle None input values - equals to zero-array + for rowL, rowH in izip(L, H): + append_data(idwt(rowL, rowH, wavelet, mode, 1)) + + return array(data, default_dtype) + + +def _downcoef(data, wavelet, mode, type): + """Adapts pywt.downcoef call for apply_along_axis""" + return downcoef(type, data, wavelet, mode, level=1) + +def dwtn(data, wavelet, mode='sym'): + """ + Single-level n-dimensional Discrete Wavelet Transform. + + data - n-dimensional array + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + + Results are arranged in a dictionary, where key specifies + the transform type on each dimension and value is a n-dimensional + coefficients array. + + For example, for a 2D case the result will look something like this: + { + 'aa': # A(LL) - approx. on 1st dim, approx. on 2nd dim + 'ad': # H(LH) - approx. on 1st dim, det. on 2nd dim + 'da': # V(HL) - det. on 1st dim, approx. on 2nd dim + 'dd': # D(HH) - det. on 1st dim, det. on 2nd dim + } + """ + import warnings + warnings.warn("Name of this function and result format may change in the future.", + UserWarning) + + data = as_float_array(data) + dim = len(data.shape) + coeffs = [('', data)] + for axis in range(dim): + new_coeffs = [] + for subband, x in coeffs: + new_coeffs.extend([ + (subband+'a', apply_along_axis(_downcoef, axis, + x, wavelet, mode, 'a')), + (subband+'d', apply_along_axis(_downcoef, axis, + x, wavelet, mode, 'd')) + ]) + coeffs = new_coeffs + return dict(coeffs) + + +def swt2(data, wavelet, level, start_level=0): + """ + 2D Stationary Wavelet Transform. + + data - 2D array with input data + wavelet - wavelet to use (Wavelet object or name string) + level - how many decomposition steps to perform + start_level - the level at which the decomposition will start + + Returns list of approximation and details coefficients: + + [ + (cA_n, + (cH_n, cV_n, cD_n) + ), + (cA_n+1, + (cH_n+1, cV_n+1, cD_n+1) + ), + ..., + (cA_n+level, + (cH_n+level, cV_n+level, cD_n+level) + ) + ] + + where cA is approximation, cH is horizontal details, cV is + vertical details, cD is diagonal details and n is start_level. + """ + + data = as_float_array(data) + if len(data.shape) != 2: + raise ValueError("Expected 2D data array") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + ret = [] + for i in range(start_level, start_level+level): + # filter rows + H, L = [], [] + append_L = L.append; append_H = H.append + for row in data: + cA, cD = swt(row, wavelet, level=1, start_level=i)[0] + append_L(cA) + append_H(cD) + del data + + # filter columns + H = transpose(H) + L = transpose(L) + + LL, LH = [], [] + append_LL = LL.append; append_LH = LH.append + for row in L: + cA, cD = swt(array(row, default_dtype), wavelet, level=1, start_level=i)[0] + append_LL(cA) + append_LH(cD) + del L + + HL, HH = [], [] + append_HL = HL.append; append_HH = HH.append + for row in H: + cA, cD = swt(array(row, default_dtype), wavelet, level=1, start_level=i)[0] + append_HL(cA) + append_HH(cD) + del H + + # build result structure + # (approx., (horizontal, vertical, diagonal)) + approx = transpose(LL) + ret.append((approx, (transpose(LH), transpose(HL), transpose(HH)))) + + data = approx # for next iteration + + return ret diff --git a/src/test_nouvelles_fonctions/pywt/.svn/text-base/multilevel.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/text-base/multilevel.py.svn-base new file mode 100644 index 0000000..429e3c9 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/text-base/multilevel.py.svn-base @@ -0,0 +1,139 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id$ + +""" +Multilevel 1D and 2D Discrete Wavelet Transform +and Inverse Discrete Wavelet Transform. +""" + +__all__ = ['wavedec', 'waverec', 'wavedec2', 'waverec2'] + +from _pywt import Wavelet, MODES +from _pywt import dwt, idwt, dwt_max_level +from multidim import dwt2, idwt2 +from numerix import as_float_array + +def wavedec(data, wavelet, mode='sym', level=None): + """ + Multilevel 1D Discrete Wavelet Transform of data. + Returns coefficients list - [cAn, cDn, cDn-1, ..., cD2, cD1] + + data - input data + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + level - decomposition level. If level is None then it will be + calculated using `dwt_max_level` function. + """ + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + if level is None: + level = dwt_max_level(len(data), wavelet.dec_len) + elif level < 0: + raise ValueError("Level value of %d is too low . Minimum level is 0." % level) + + coeffs_list = [] + + a = data + for i in xrange(level): + a, d = dwt(a, wavelet, mode) + coeffs_list.append(d) + + coeffs_list.append(a) + coeffs_list.reverse() + + return coeffs_list + + +def waverec(coeffs, wavelet, mode='sym'): + """ + Multilevel 1D Inverse Discrete Wavelet Transform. + + coeffs - coefficients list [cAn, cDn, cDn-1, ..., cD2, cD1] + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + """ + + if not isinstance(coeffs, (list, tuple)): + raise ValueError("Expected sequence of coefficient arrays.") + + if len(coeffs) < 2: + raise ValueError("Coefficient list too short (minimum 2 arrays required).") + + a, ds = coeffs[0], coeffs[1:] + + for d in ds: + a = idwt(a, d, wavelet, mode, 1) + + return a + + + +def wavedec2(data, wavelet, mode='sym', level=None): + """ + Multilevel 2D Discrete Wavelet Transform. + + data - 2D input data + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + level - decomposition level. If level is None then it will be + calculated using `dwt_max_level` function . + + Returns coefficients list - [cAn, (cHn, cVn, cDn), ... (cH1, cV1, cD1)] + """ + + data = as_float_array(data) + + if len(data.shape) != 2: + raise ValueError("Expected 2D input data.") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + if level is None: + size = min(data.shape) + level = dwt_max_level(size, wavelet.dec_len) + elif level < 0: + raise ValueError("Level value of %d is too low . Minimum level is 0." % level) + + coeffs_list = [] + + a = data + for i in xrange(level): + a, ds = dwt2(a, wavelet, mode) + coeffs_list.append(ds) + + coeffs_list.append(a) + coeffs_list.reverse() + + return coeffs_list + + +def waverec2(coeffs, wavelet, mode='sym'): + """ + Multilevel 2D Inverse Discrete Wavelet Transform. + + coeffs - coefficients list [cAn, (cHn, cVn, cDn), ... (cH1, cV1, cD1)] + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + + Returns 2D array of reconstructed data. + """ + + if not isinstance(coeffs, (list, tuple)): + raise ValueError("Expected sequence of coefficient arrays.") + + if len(coeffs) < 2: + raise ValueError("Coefficient list too short (minimum 2 arrays required).") + + a, ds = coeffs[0], coeffs[1:] + + for d in ds: + a = idwt2((a, d), wavelet, mode) + + return a diff --git a/src/test_nouvelles_fonctions/pywt/.svn/text-base/numerix.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/text-base/numerix.py.svn-base new file mode 100644 index 0000000..4575f93 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/text-base/numerix.py.svn-base @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id$ + +""" +Thin wrapper for numeric modules. Modify this to use wavelets with libraries other than NumPy. + +Provides efficient mathematical functions and array datatypes. +""" + +from numpy import ndarray, array, asarray +from numpy import empty, zeros, linspace, arange +from numpy import intp, float64, float32 +from numpy import transpose, concatenate +from numpy import cumsum, cos, diff, exp, sinc +from numpy import argmax, mean +from numpy import convolve +from numpy import where, less, greater +from numpy import apply_along_axis +from numpy.fft import fft + +default_dtype = float64 + +def as_float_array(source): + if isinstance(source, ndarray) and (source.dtype == float64 or source.dtype == float32): + return source + return array(source, default_dtype) + +def contiguous_float64_array_from_any(source): + return array(source, float64) # ensure contiguous + +def contiguous_float32_array_from_any(source): + return array(source, float32) # ensure contiguous + +def astype(source, dtype): + return asarray(source, dtype) + +def float64_memory_buffer_object(size): + return zeros((size,), float64) + +def float32_memory_buffer_object(size): + return zeros((size,), float32) + +def is_array_type(arr, typ): + return isinstance(arr, ndarray) and arr.dtype == typ + +def keep(arr, keep_length): + length = len(arr) + if keep_length < length: + left_bound = (length - keep_length) / 2 + return arr[left_bound:left_bound+keep_length] + return arr + +def integrate(arr, step): + integral = cumsum(arr) + integral *= step + return integral diff --git a/src/test_nouvelles_fonctions/pywt/.svn/text-base/release_details.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/text-base/release_details.py.svn-base new file mode 100644 index 0000000..a459feb --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/text-base/release_details.py.svn-base @@ -0,0 +1,42 @@ +#-*- coding: utf-8 -*- + +# Release details for package + +name = "PyWavelets" +version = "0.1.7" +#revision = "$Revision$".split()[1] +author = "Filip Wasilewski" +author_email = "filip.wasilewski@gmail.com" +url = "http://www.pybytes.com/pywavelets/" +download_url = "http://pypi.python.org/pypi/PyWavelets/" +license = "MIT" +description = "PyWavelets, wavelet transform module." +keywords = ['wavelets', 'wavelet transform', 'DWT', 'SWT', 'scientific', 'NumPy'] +platforms = ['Linux', 'Mac OSX', 'Windows XP/2000/NT'] +svn = "http://wavelets.scipy.org/svn/multiresolution/pywt/trunk" + + +long_description = \ +""" +PyWavelets is a Python wavelet transforms module that can do: + + * 1D and 2D Forward and Inverse Discrete Wavelet Transform (DWT and IDWT) + * 1D and 2D Stationary Wavelet Transform (Undecimated Wavelet Transform) + * 1D and 2D Wavelet Packet decomposition and reconstruction + * Computing Approximations of wavelet and scaling functions + * Over seventy built-in wavelet filters and support for custom wavelets + * Single and double precision calculations + * Results compatibility with Matlab Wavelet Toolbox (tm) +""" + +classifiers = [ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Intended Audience :: Education', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: C', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries :: Python Modules' +] diff --git a/src/test_nouvelles_fonctions/pywt/.svn/text-base/thresholding.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/text-base/thresholding.py.svn-base new file mode 100644 index 0000000..e4f0dd9 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/text-base/thresholding.py.svn-base @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id$ + +"""Thresholding routines""" + +__all__ = ['soft', 'hard', 'greater', 'less', 'zero', 'copy'] + +import numerix + +def soft(data, value, substitute=0): + mvalue = -value + + cond_less = numerix.less(data, value) + cond_greater = numerix.greater(data, mvalue) + + data = numerix.where(cond_less & cond_greater, substitute, data) + data = numerix.where(cond_less, data + value, data) + data = numerix.where(cond_greater, data - value, data) + + return data + +def hard(data, value, substitute=0): + mvalue = -value + + cond = numerix.less(data, value) + cond &= numerix.greater(data, mvalue) + + return numerix.where(cond, substitute, data) + +def greater(data, value, substitute=0): + return numerix.where(numerix.less(data, value), substitute, data) + +def less(data, value, substitute=0): + return numerix.where(numerix.greater(data, value), substitute, data) + +def zero(data, *args): + if isinstance(data, numerix.ndarray): + return numerix.zeros(data.shape, data.dtype) + return numerix.zeros(len(data)) + +def copy(data, *args): + return numerix.array(data) diff --git a/src/test_nouvelles_fonctions/pywt/.svn/text-base/wavelet_packets.py.svn-base b/src/test_nouvelles_fonctions/pywt/.svn/text-base/wavelet_packets.py.svn-base new file mode 100644 index 0000000..a847e2d --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/.svn/text-base/wavelet_packets.py.svn-base @@ -0,0 +1,560 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id$ + +"""1D and 2D Wavelet packet transform module.""" + +__all__ = ["BaseNode", "Node", "WaveletPacket", "Node2D", "WaveletPacket2D"] + +import numerix +from _pywt import Wavelet, dwt, idwt, dwt_max_level +from multidim import dwt2, idwt2 + + +def get_graycode_order(level, x='a', y='d'): + graycode_order = [x, y] + for i in range(level-1): + graycode_order = [x + path for path in graycode_order] + \ + [y + path for path in graycode_order[::-1]] + return graycode_order + + +class MustOverride(object): + def __init__(self, message): self.message= message + def __get__(self, obj, cls): raise NotImplementedError(self.message % {'cls': cls.__name__}) + + +class BaseNode(object): + PART_LEN = MustOverride("BaseNode.PART_LEN must be redefined in subclass %(cls)s.") + PARTS = MustOverride("BaseNode.PARTS must be redefined in subclass %(cls)s.") + + def __init__(self, parent, data, node_name): + self.parent = parent + if parent is not None: + self.wavelet = parent.wavelet + self.mode = parent.mode + self.level = parent.level + 1 + self._maxlevel = parent.maxlevel + self.path = parent.path + node_name + else: + self.wavelet = None + self.mode = None + self.path = "" + self.level = 0 + + # data - signal on level 0, coeffs on higher levels + self.data = data + + self._init_subnodes() + + def _init_subnodes(self): + for part in self.PARTS: + self._set_node(part, None) + + def _create_subnode(self, part, data=None, overwrite=True): + raise NotImplementedError() + + def _create_subnode_base(self, node_cls, part, data=None, overwrite=True): + self._validate_node_name(part) + if not overwrite and self._get_node(part) is not None: + return self._get_node(part) + node = node_cls(self, data, part) + self._set_node(part, node) + return node + + def _get_node(self, part): + return getattr(self, part) + + def _set_node(self, part, node): + setattr(self, part, node) + + def _delete_node(self, part): + self._set_node(part, None) + + def _validate_node_name(self, part): + if part not in self.PARTS: + raise ValueError("Subnode name must be in [%s], not '%s'." % + (', '.join("'%s'" % p for p in self.PARTS), part)) + + def _evaluate_maxlevel(self, evaluate_from='parent'): + """ + Try to find the value of maximum decomposition level if it is not + specified explicitly. + """ + assert evaluate_from in ('parent', 'subnodes') + + if self._maxlevel is not None: + return self._maxlevel + elif self.data is not None: + return self.level + dwt_max_level(min(self.data.shape), + self.wavelet) + + if evaluate_from == 'parent': + if self.parent is not None: + return self.parent._evaluate_maxlevel(evaluate_from) + elif evaluate_from == 'subnodes': + for node_name in self.PARTS: + node = getattr(self, node_name, None) + if node is not None: + level = node._evaluate_maxlevel(evaluate_from) + if level is not None: + return level + return None + + def maxlevel(self): + if self._maxlevel is not None: + return self._maxlevel + + # Try getting the maxlevel from parents first + self._maxlevel = self._evaluate_maxlevel(evaluate_from='parent') + + # If not found, check whether it can be evaluated from subnodes + if self._maxlevel is None: + self._maxlevel = self._evaluate_maxlevel(evaluate_from='subnodes') + return self._maxlevel + maxlevel = property(maxlevel) + + def node_name(self): + return self.path[-self.PART_LEN:] + node_name = property(node_name) + + def decompose(self): + """ + Decompose node data creating DWT coefficients subnodes." + """ + if self.level < self.maxlevel: + return self._decompose() + else: + raise ValueError("Maximum decomposition level reached.") + + def _decompose(self): + raise NotImplementedError() + + def reconstruct(self, update=False): + """ + Reconstruct node from subnodes. + If update param is True, then reconstructed data replaces the current + node data. + + Returns: + - original node data if subnodes do not exist + - IDWT of subnodes otherwise. + """ + if not self.has_any_subnode: + return self.data + return self._reconstruct(update) + + def _reconstruct(self): + raise NotImplementedError() # override this in subclasses + + def get_subnode(self, part, decompose=True): + """ + Returns subnode. + + part - subnode name + decompose - if True and subnode does not exist, it will be created using + coefficients from DWT decomposition of the current node. + """ + self._validate_node_name(part) + subnode = self._get_node(part) + if subnode is None and decompose and not self.is_empty: + self.decompose() + subnode = self._get_node(part) + return subnode + + def __getitem__(self, path): + """ + Find node represented by the given path. + + path - string composed of node names. + + If node does not exist yet, it will be created by decomposition of its + parent node. + """ + if isinstance(path, basestring): + if (self.maxlevel is not None + and len(path) > self.maxlevel * self.PART_LEN): + raise IndexError("Path length is out of range.") + if path: + return self.get_subnode(path[0:self.PART_LEN], True)[ + path[self.PART_LEN:]] + else: + return self + else: + raise TypeError("Invalid path parameter type - expected string but" + " got %s." % type(path)) + + def __setitem__(self, path, data): + """ + Set node represented by the given path with a new value. + + path - string composed of node names. + data - array or BaseNode subclass. + """ + + if isinstance(path, basestring): + if (self.maxlevel is not None + and len(self.path) + len(path) > self.maxlevel * self.PART_LEN): + raise IndexError("Path length out of range.") + if path: + subnode = self.get_subnode(path[0:self.PART_LEN], False) + if subnode is None: + self._create_subnode(path[0:self.PART_LEN], None) + subnode = self.get_subnode(path[0:self.PART_LEN], False) + subnode[path[self.PART_LEN:]] = data + else: + if isinstance(data, BaseNode): + self.data = numerix.as_float_array(data.data) + else: + self.data = numerix.as_float_array(data) + else: + raise TypeError("Invalid path parameter type - expected string but" + " got %s." % type(path)) + + def __delitem__(self, path): + """ + Remove node from the tree. + """ + node = self[path] + # don't clear node value and subnodes (node may still exist outside the tree) + ## node._init_subnodes() + ## node.data = None + parent = node.parent + node.parent = None # TODO + if parent and node.node_name: + parent._delete_node(node.node_name) + + def is_empty(self): + return self.data is None + is_empty = property(is_empty) + + def has_any_subnode(self): + for part in self.PARTS: + if self._get_node(part) is not None: # and not .is_empty + return True + return False + has_any_subnode = property(has_any_subnode) + + def get_leaf_nodes(self, decompose=False): + """ + Returns leaf nodes. + """ + result = [] + def collect(node): + if node.level == node.maxlevel and not node.is_empty: + result.append(node) + return False + if not decompose and not node.has_any_subnode: + result.append(node) + return False + return True + self.walk(collect, decompose=decompose) + return result + + def walk(self, func, args=(), kwargs={}, decompose=True): + """ + Walk tree and call func on every node -> func(node, *args) + If func returns True, descending to subnodes will continue. + + func - callable + args - func parms + kwargs - func keyword params + """ + if func(self, *args, **kwargs) and self.level < self.maxlevel: + for part in self.PARTS: + subnode = self.get_subnode(part, decompose) + if subnode is not None: + subnode.walk(func, args, kwargs, decompose) + + def walk_depth(self, func, args=(), kwargs={}, decompose=False): + """ + Walk tree and call func on every node starting from the bottom-most + nodes. + + func - callable + args - func parms + kwargs - func keyword params + """ + if self.level < self.maxlevel: + for part in self.PARTS: + subnode = self.get_subnode(part, decompose) + if subnode is not None: + subnode.walk_depth(func, args, kwargs, decompose) + func(self, *args, **kwargs) + + def __str__(self): + return self.path + ": " + str(self.data) + + +class Node(BaseNode): + """ + WaveletPacket tree node. + + Subnodes are called ``a`` and ``d``, just like approximation + and detail coefficients in the Discrete Wavelet Transform. + """ + + A = 'a' + D = 'd' + PARTS = A, D + PART_LEN = 1 + + def _create_subnode(self, part, data=None, overwrite=True): + return self._create_subnode_base(node_cls=Node, part=part, data=data, overwrite=overwrite) + + def _decompose(self): + if self.is_empty: + data_a, data_d = None, None + if self._get_node(self.A) is None: + self._create_subnode(self.A, data_a) + if self._get_node(self.B) is None: + self._create_subnode(self.B, data_b) + else: + data_a, data_d = dwt(self.data, self.wavelet, self.mode) + self._create_subnode(self.A, data_a) + self._create_subnode(self.D, data_d) + return self._get_node(self.A), self._get_node(self.D) + + def _reconstruct(self, update): + data_a, data_d = None, None + node_a, node_d = self._get_node(self.A), self._get_node(self.D) + + if node_a is not None: + data_a = node_a.reconstruct() # TODO: (update) ??? + if node_d is not None: + data_d = node_d.reconstruct() # TODO: (update) ??? + + if data_a is None and data_d is None: + raise ValueError("Node is a leaf node and cannot be reconstructed" + " from subnodes.") + else: + rec = idwt(data_a, data_d, self.wavelet, self.mode, + correct_size=True) + if update: + self.data = rec + return rec + + +class Node2D(BaseNode): + """ + WaveletPacket tree node. + Subnodes are called 'a' (LL), 'h' (LH), 'v' (HL) and 'd' (HH), like approximation and + detail coefficients in 2D Discrete Wavelet Transform + """ + + LL = 'a' + LH = 'h' + HL = 'v' + HH = 'd' + + PARTS = LL, LH, HL, HH + PART_LEN = 1 + + def _create_subnode(self, part, data=None, overwrite=True): + return self._create_subnode_base(node_cls=Node2D, part=part, data=data, overwrite=overwrite) + + def _decompose(self): + if self.is_empty: + data_ll, data_lh, data_hl, data_hh = None, None, None, None + else: + data_ll, (data_lh, data_hl, data_hh) = dwt2(self.data, self.wavelet, self.mode) + self._create_subnode(self.LL, data_ll) + self._create_subnode(self.LH, data_lh) + self._create_subnode(self.HL, data_hl) + self._create_subnode(self.HH, data_hh) + return self._get_node(self.LL), self._get_node(self.LH), self._get_node(self.HL), self._get_node(self.HH) + + def _reconstruct(self, update): + data_ll, data_lh, data_hl, data_hh = None, None, None, None + + node_ll, node_lh, node_hl, node_hh = \ + self._get_node(self.LL), self._get_node(self.LH), self._get_node(self.HL), self._get_node(self.HH) + + if node_ll is not None: data_ll = node_ll.reconstruct() + if node_lh is not None: data_lh = node_lh.reconstruct() + if node_hl is not None: data_hl = node_hl.reconstruct() + if node_hh is not None: data_hh = node_hh.reconstruct() + + if (data_ll is None and data_lh is None + and data_hl is None and data_hh is None): + raise ValueError("Tree is missing data - all subnodes of `%s` node are None. Cannot reconstruct node." % self.path) + else: + coeffs = data_ll, (data_lh, data_hl, data_hh) + rec = idwt2(coeffs, self.wavelet, self.mode) + if update: + self.data = rec + return rec + + def expand_2d_path(self, path): + expanded_paths = { + self.HH: 'hh', + self.HL: 'hl', + self.LH: 'lh', + self.LL: 'll' + } + return (''.join([expanded_paths[p][0] for p in path]), + ''.join([expanded_paths[p][1] for p in path])) + + +class WaveletPacket(Node): + """ + Data structure representing Wavelet Packet decomposition of signal. + + data - original data (signal) + wavelet - wavelet used in DWT decomposition and reconstruction + mode - signal extension mode - see MODES + maxlevel - maximum level of decomposition (will be computed if not + specified) + """ + def __init__(self, data, wavelet, mode='sym', maxlevel=None): + super(WaveletPacket, self).__init__(None, data, "") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + self.wavelet = wavelet + self.mode = mode + + if data is not None: + data = numerix.as_float_array(data) + assert len(data.shape) == 1 + self.data_size = data.shape[0] + if maxlevel is None: + maxlevel = dwt_max_level(self.data_size, self.wavelet) + else: + self.data_size = None + + self._maxlevel = maxlevel + + def reconstruct(self, update=True): + """ + Reconstruct data value using coefficients from subnodes. + + If update is True, then data values will be replaced by + reconstruction values, also in subnodes. + """ + if self.has_any_subnode: + data = super(WaveletPacket, self).reconstruct(update) + if self.data_size is not None and len(data) > self.data_size: + data = data[:self.data_size] + if update: + self.data = data + return data + return self.data # return original data + + def get_level(self, level, order="natural", decompose=True): + """ + Returns all nodes on the specified level. + + order - "natural" - left to right in tree + - "freq" - band ordered + """ + assert order in ["natural", "freq"] + if level > self.maxlevel: + raise ValueError("The level cannot be greater than the maximum" + " decomposition level value (%d)" % self.maxlevel) + + result = [] + + def collect(node): + if node.level == level: + result.append(node) + return False + return True + + self.walk(collect, decompose=decompose) + if order == "natural": + return result + elif order == "freq": + result = dict((node.path, node) for node in result) + graycode_order = get_graycode_order(level) + return [result[path] for path in graycode_order if path in result] + else: + raise ValueError("Invalid order name - %s." % order) + + +class WaveletPacket2D(Node2D): + """ + Data structure representing 2D Wavelet Packet decomposition of signal. + + data - original data (signal) + wavelet - wavelet used in DWT decomposition and reconstruction + mode - signal extension mode - see MODES + maxlevel - maximum level of decomposition (will be computed if not + specified) + """ + def __init__(self, data, wavelet, mode='sp1', maxlevel=None): + super(WaveletPacket2D, self).__init__(None, data, "") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + self.wavelet = wavelet + self.mode = mode + + if data is not None: + data = numerix.as_float_array(data) + assert len(data.shape) == 2 + self.data_size = data.shape + if maxlevel is None: + maxlevel = dwt_max_level(min(self.data_size), self.wavelet) + else: + self.data_size = None + self._maxlevel = maxlevel + + def reconstruct(self, update=True): + """ + Reconstruct data using coefficients from subnodes. + + If update is set to True then the coefficients of the current node + and its subnodes will be replaced with values from reconstruction. + """ + if self.has_any_subnode: + data = super(WaveletPacket2D, self).reconstruct(update) + if self.data_size is not None and (data.shape != self.data_size): + data = data[:self.data_size[0], :self.data_size[1]] + if update: + self.data = data + return data + return self.data # return original data + + def get_level(self, level, order="natural", decompose=True): + """ + Returns all nodes from specified level. + + If order is `natural`, a flat list is returned. + + If order is `freq`, a 2d structure with rows and cols + sorted by corresponding dimension frequency of 2d + coefficient array (adapted from 1d case). + """ + assert order in ["natural", "freq"] + if level > self.maxlevel: + raise ValueError("The level cannot be greater than the maximum" + " decomposition level value (%d)" % self.maxlevel) + + result = [] + + def collect(node): + if node.level == level: + result.append(node) + return False + return True + + self.walk(collect, decompose=decompose) + + if order == "freq": + nodes = {} + for (row_path, col_path), node in [(self.expand_2d_path(node.path), node) + for node in result]: + nodes.setdefault(row_path, {})[col_path] = node + graycode_order = get_graycode_order(level, x='l', y='h') + nodes = [nodes[path] for path in graycode_order if path in nodes] + result = [] + for row in nodes: + result.append( + [row[path] for path in graycode_order if path in row] + ) + return result + diff --git a/src/test_nouvelles_fonctions/pywt/__init__.py b/src/test_nouvelles_fonctions/pywt/__init__.py new file mode 100644 index 0000000..94f00a6 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/__init__.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id: __init__.py 136 2009-05-10 21:49:35Z filipw $ + +""" +Discrete forward and inverse wavelet transform, stationary wavelet transform, +wavelet packets signal decomposition and reconstruction module. +""" + +from _pywt import * +from multilevel import * +from multidim import * +from wavelet_packets import * +from functions import * +import thresholding + +from release_details import version as __version__, author as __author__, license as __license__ +__all__ = [] +__all__ += _pywt.__all__ +__all__ += wavelet_packets.__all__ +__all__ += multilevel.__all__ +__all__ += multidim.__all__ +__all__ += functions.__all__ +__all__ += ['thresholding'] + +del multilevel, multidim, wavelet_packets diff --git a/src/test_nouvelles_fonctions/pywt/_pywt.so b/src/test_nouvelles_fonctions/pywt/_pywt.so new file mode 100644 index 0000000..c55e9f9 Binary files /dev/null and b/src/test_nouvelles_fonctions/pywt/_pywt.so differ diff --git a/src/test_nouvelles_fonctions/pywt/functions.py b/src/test_nouvelles_fonctions/pywt/functions.py new file mode 100644 index 0000000..4fe3014 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/functions.py @@ -0,0 +1,149 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2008 Filip Wasilewski +# See COPYING for license details. + +# $Id: functions.py 139 2009-05-16 14:19:55Z filipw $ + +""" +Other wavelet related functions. +""" + +__all__ = ["intwave", "centfrq", "scal2frq", "qmf", "orthfilt"] + +from math import sqrt + +from _pywt import Wavelet + +from numerix import asarray, array, float64 +from numerix import integrate +from numerix import argmax, mean +from numerix import fft + +WAVELET_CLASSES = (Wavelet) + + +def wavelet_for_name(name): + if not isinstance(name, basestring): + raise TypeError("Wavelet name must be of string type, not %s" % type(name)) + try: + wavelet = Wavelet(name) + except ValueError: + raise + #raise ValueError("Invalid wavelet name - %s." % name) + return wavelet + + +def intwave(wavelet, precision=8): + """ + intwave(wavelet, precision=8) -> [int_psi, x] - for orthogonal wavelets + intwave(wavelet, precision=8) -> [int_psi_d, int_psi_r, x] - for other wavelets + intwave((function_approx, x), precision=8) -> [int_function, x] - for (function approx., x grid) pair + + Integrate *psi* wavelet function from -Inf to x using the rectangle + integration method. + + wavelet - Wavelet to integrate (Wavelet object, wavelet name string + or (wavelet function approx., x grid) pair) + + precision = 8 - Precision that will be used for wavelet function + approximation computed with the wavefun(level=precision) + Wavelet's method. + + (function_approx, x) - Function to integrate on the x grid. Used instead + of Wavelet object to allow custom wavelet functions. + """ + + if isinstance(wavelet, tuple): + psi, x = asarray(wavelet[0]), asarray(wavelet[1]) + step = x[1] - x[0] + return integrate(psi, step), x + + else: + if not isinstance(wavelet, WAVELET_CLASSES): + wavelet = wavelet_for_name(wavelet) + + functions_approximations = wavelet.wavefun(precision) + if len(functions_approximations) == 2: # continuous wavelet + psi, x = functions_approximations + step = x[1] - x[0] + return integrate(psi, step), x + elif len(functions_approximations) == 3: # orthogonal wavelet + phi, psi, x = functions_approximations + step = x[1] - x[0] + return integrate(psi, step), x + else: # biorthogonal wavelet + phi_d, psi_d, phi_r, psi_r, x = functions_approximations + step = x[1] - x[0] + return integrate(psi_d, step), integrate(psi_r, step), x + + +def centfrq(wavelet, precision=8): + """ + centfrq(wavelet, precision=8) -> float - for orthogonal wavelets + centfrq((function_aprox, x), precision=8) -> float - for (function approx., x grid) pair + + Computes the central frequency of the *psi* wavelet function. + + wavelet - Wavelet (Wavelet object, wavelet name string + or (wavelet function approx., x grid) pair) + precision = 8 - Precision that will be used for wavelet function + approximation computed with the wavefun(level=precision) + Wavelet's method. + + (function_approx, xgrid) - Function defined on xgrid. Used instead + of Wavelet object to allow custom wavelet functions. + """ + + if isinstance(wavelet, tuple): + psi, x = asarray(wavelet[0]), asarray(wavelet[1]) + else: + if not isinstance(wavelet, WAVELET_CLASSES): + wavelet = wavelet_for_name(wavelet) + functions_approximations = wavelet.wavefun(precision) + + if len(functions_approximations) == 2: + psi, x = functions_approximations + else: + psi, x = functions_approximations[1], functions_approximations[-1] # (psi, x) for (phi, psi, x) and (psi_d, x) for (phi_d, psi_d, phi_r, psi_r, x) + + domain = float(x[-1] - x[0]) + assert domain > 0 + + index = argmax(abs(fft(psi)[1:]))+2 + if index > len(psi)/2: + index = len(psi)-index+2 + + return 1.0/(domain/(index-1)) + + +def scal2frq(wavelet, scale, delta, precision=8): + """ + scal2frq(wavelet, scale, delta, precision=8) -> float - for orthogonal wavelets + scal2frq(wavelet, scale, delta, precision=8) -> float - for (function approx., x grid) pair + + wavelet + scale + delta - sampling + """ + return centfrq(wavelet, precision=precision)/(scale*delta) + + +def qmf(filter): + filter = array(filter)[::-1] + filter[1::2] = -filter[1::2] + return filter + + +def orthfilt(scaling_filter): + assert len(scaling_filter) % 2 == 0 + + scaling_filter = asarray(scaling_filter, dtype=float64) + + rec_lo = sqrt(2) * scaling_filter / sum(scaling_filter) + dec_lo = rec_lo[::-1] + + rec_hi = qmf(rec_lo) + dec_hi = rec_hi[::-1] + + return (dec_lo, dec_hi, rec_lo, rec_hi) diff --git a/src/test_nouvelles_fonctions/pywt/multidim.py b/src/test_nouvelles_fonctions/pywt/multidim.py new file mode 100644 index 0000000..f6d78bf --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/multidim.py @@ -0,0 +1,296 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id: multidim.py 117 2009-05-02 20:25:59Z filipw $ + +""" +2D Discrete Wavelet Transform and Inverse Discrete Wavelet Transform. +""" + +__all__ = ['dwt2', 'idwt2', 'swt2', 'dwtn'] + +from itertools import izip, cycle + +from _pywt import Wavelet, MODES +from _pywt import dwt, idwt, swt, downcoef +from numerix import transpose, array, as_float_array, default_dtype, apply_along_axis + + +def dwt2(data, wavelet, mode='sym'): + """ + 2D Discrete Wavelet Transform. + + data - 2D array with input data + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + + Returns approximaion and three details 2D coefficients arrays. + + The result form four 2D coefficients arrays organized in tuples: + + (approximation, + (horizontal details, + vertical details, + diagonal details) + ) + + which sometimes is also interpreted as layed out in one 2D array + of coefficients, where: + + ----------------- + | | | + | A(LL) | H(LH) | + | | | + (A, (H, V, D)) <---> ----------------- + | | | + | V(HL) | D(HH) | + | | | + ----------------- + """ + + data = as_float_array(data) + if len(data.shape) != 2: + raise ValueError("Expected 2D data array") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + mode = MODES.from_object(mode) + + # filter rows + H, L = [], [] + append_L = L.append; append_H = H.append + for row in data: + cA, cD = dwt(row, wavelet, mode) + append_L(cA) + append_H(cD) + del data + + # filter columns + H = transpose(H) + L = transpose(L) + + LL, LH = [], [] + append_LL = LL.append; append_LH = LH.append + for row in L: + cA, cD = dwt(array(row, default_dtype), wavelet, mode) + append_LL(cA) + append_LH(cD) + del L + + HL, HH = [], [] + append_HL = HL.append; append_HH = HH.append + for row in H: + cA, cD = dwt(array(row, default_dtype), wavelet, mode) + append_HL(cA) + append_HH(cD) + del H + + # build result structure + # (approx., (horizontal, vertical, diagonal)) + ret = (transpose(LL), (transpose(LH), transpose(HL), transpose(HH))) + + return ret + +def idwt2(coeffs, wavelet, mode='sym'): + """ + 2D Inverse Discrete Wavelet Transform. Reconstruct data from coefficients + arrays. + + coeffs - four 2D coefficients arrays arranged as follows (in the same way + as dwt2 output -- see dwt2 description for details): + + (approximation, + (horizontal details, + vertical details, + diagonal details) + ) + + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + """ + + if len(coeffs) != 2 or len(coeffs[1]) != 3: + raise ValueError("Invalid coeffs param") + + # L -low-pass data, H - high-pass data + LL, (LH, HL, HH) = coeffs + + if not LL is None: LL = transpose(LL) + if not LH is None: LH = transpose(LH) + if not HL is None: HL = transpose(HL) + if not HH is None: HH = transpose(HH) + + all_none = True + for arr in (LL, LH, HL, HH): + if arr is not None: + all_none = False + if len(arr.shape) != 2: + raise TypeError("All input coefficients arrays must be 2D.") + del arr + if all_none: + raise ValueError("At least one input coefficients array must not be None.") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + mode = MODES.from_object(mode) + + # idwt columns + L = []; append_L = L.append + if LL is None and LH is None: + L = None + else: + if LL is None: LL = cycle([None]) # IDWT can handle None input values - equals to zero-array + if LH is None: LH = cycle([None]) # IDWT can handle None input values - equals to zero-array + for rowL, rowH in izip(LL, LH): + append_L(idwt(rowL, rowH, wavelet, mode, 1)) + del LL, LH + + H = [] + append_H = H.append + if HL is None and HH is None: + H = None + else: + if HL is None: HL = cycle([None]) # IDWT can handle None input values - equals to zero-array + if HH is None: HH = cycle([None]) # IDWT can handle None input values - equals to zero-array + for rowL, rowH in izip(HL, HH): + append_H(idwt(rowL, rowH, wavelet, mode, 1)) + del HL, HH + + if L is not None: + L = transpose(L) + if H is not None: + H = transpose(H) + + # idwt rows + data = [] + append_data = data.append + if L is None: L = cycle([None]) # IDWT can handle None input values - equals to zero-array + if H is None: H = cycle([None]) # IDWT can handle None input values - equals to zero-array + for rowL, rowH in izip(L, H): + append_data(idwt(rowL, rowH, wavelet, mode, 1)) + + return array(data, default_dtype) + + +def _downcoef(data, wavelet, mode, type): + """Adapts pywt.downcoef call for apply_along_axis""" + return downcoef(type, data, wavelet, mode, level=1) + +def dwtn(data, wavelet, mode='sym'): + """ + Single-level n-dimensional Discrete Wavelet Transform. + + data - n-dimensional array + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + + Results are arranged in a dictionary, where key specifies + the transform type on each dimension and value is a n-dimensional + coefficients array. + + For example, for a 2D case the result will look something like this: + { + 'aa': # A(LL) - approx. on 1st dim, approx. on 2nd dim + 'ad': # H(LH) - approx. on 1st dim, det. on 2nd dim + 'da': # V(HL) - det. on 1st dim, approx. on 2nd dim + 'dd': # D(HH) - det. on 1st dim, det. on 2nd dim + } + """ + import warnings + warnings.warn("Name of this function and result format may change in the future.", + UserWarning) + + data = as_float_array(data) + dim = len(data.shape) + coeffs = [('', data)] + for axis in range(dim): + new_coeffs = [] + for subband, x in coeffs: + new_coeffs.extend([ + (subband+'a', apply_along_axis(_downcoef, axis, + x, wavelet, mode, 'a')), + (subband+'d', apply_along_axis(_downcoef, axis, + x, wavelet, mode, 'd')) + ]) + coeffs = new_coeffs + return dict(coeffs) + + +def swt2(data, wavelet, level, start_level=0): + """ + 2D Stationary Wavelet Transform. + + data - 2D array with input data + wavelet - wavelet to use (Wavelet object or name string) + level - how many decomposition steps to perform + start_level - the level at which the decomposition will start + + Returns list of approximation and details coefficients: + + [ + (cA_n, + (cH_n, cV_n, cD_n) + ), + (cA_n+1, + (cH_n+1, cV_n+1, cD_n+1) + ), + ..., + (cA_n+level, + (cH_n+level, cV_n+level, cD_n+level) + ) + ] + + where cA is approximation, cH is horizontal details, cV is + vertical details, cD is diagonal details and n is start_level. + """ + + data = as_float_array(data) + if len(data.shape) != 2: + raise ValueError("Expected 2D data array") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + ret = [] + for i in range(start_level, start_level+level): + # filter rows + H, L = [], [] + append_L = L.append; append_H = H.append + for row in data: + cA, cD = swt(row, wavelet, level=1, start_level=i)[0] + append_L(cA) + append_H(cD) + del data + + # filter columns + H = transpose(H) + L = transpose(L) + + LL, LH = [], [] + append_LL = LL.append; append_LH = LH.append + for row in L: + cA, cD = swt(array(row, default_dtype), wavelet, level=1, start_level=i)[0] + append_LL(cA) + append_LH(cD) + del L + + HL, HH = [], [] + append_HL = HL.append; append_HH = HH.append + for row in H: + cA, cD = swt(array(row, default_dtype), wavelet, level=1, start_level=i)[0] + append_HL(cA) + append_HH(cD) + del H + + # build result structure + # (approx., (horizontal, vertical, diagonal)) + approx = transpose(LL) + ret.append((approx, (transpose(LH), transpose(HL), transpose(HH)))) + + data = approx # for next iteration + + return ret diff --git a/src/test_nouvelles_fonctions/pywt/multilevel.py b/src/test_nouvelles_fonctions/pywt/multilevel.py new file mode 100644 index 0000000..68dbd6b --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/multilevel.py @@ -0,0 +1,139 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id: multilevel.py 117 2009-05-02 20:25:59Z filipw $ + +""" +Multilevel 1D and 2D Discrete Wavelet Transform +and Inverse Discrete Wavelet Transform. +""" + +__all__ = ['wavedec', 'waverec', 'wavedec2', 'waverec2'] + +from _pywt import Wavelet, MODES +from _pywt import dwt, idwt, dwt_max_level +from multidim import dwt2, idwt2 +from numerix import as_float_array + +def wavedec(data, wavelet, mode='sym', level=None): + """ + Multilevel 1D Discrete Wavelet Transform of data. + Returns coefficients list - [cAn, cDn, cDn-1, ..., cD2, cD1] + + data - input data + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + level - decomposition level. If level is None then it will be + calculated using `dwt_max_level` function. + """ + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + if level is None: + level = dwt_max_level(len(data), wavelet.dec_len) + elif level < 0: + raise ValueError("Level value of %d is too low . Minimum level is 0." % level) + + coeffs_list = [] + + a = data + for i in xrange(level): + a, d = dwt(a, wavelet, mode) + coeffs_list.append(d) + + coeffs_list.append(a) + coeffs_list.reverse() + + return coeffs_list + + +def waverec(coeffs, wavelet, mode='sym'): + """ + Multilevel 1D Inverse Discrete Wavelet Transform. + + coeffs - coefficients list [cAn, cDn, cDn-1, ..., cD2, cD1] + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + """ + + if not isinstance(coeffs, (list, tuple)): + raise ValueError("Expected sequence of coefficient arrays.") + + if len(coeffs) < 2: + raise ValueError("Coefficient list too short (minimum 2 arrays required).") + + a, ds = coeffs[0], coeffs[1:] + + for d in ds: + a = idwt(a, d, wavelet, mode, 1) + + return a + + + +def wavedec2(data, wavelet, mode='sym', level=None): + """ + Multilevel 2D Discrete Wavelet Transform. + + data - 2D input data + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + level - decomposition level. If level is None then it will be + calculated using `dwt_max_level` function . + + Returns coefficients list - [cAn, (cHn, cVn, cDn), ... (cH1, cV1, cD1)] + """ + + data = as_float_array(data) + + if len(data.shape) != 2: + raise ValueError("Expected 2D input data.") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + + if level is None: + size = min(data.shape) + level = dwt_max_level(size, wavelet.dec_len) + elif level < 0: + raise ValueError("Level value of %d is too low . Minimum level is 0." % level) + + coeffs_list = [] + + a = data + for i in xrange(level): + a, ds = dwt2(a, wavelet, mode) + coeffs_list.append(ds) + + coeffs_list.append(a) + coeffs_list.reverse() + + return coeffs_list + + +def waverec2(coeffs, wavelet, mode='sym'): + """ + Multilevel 2D Inverse Discrete Wavelet Transform. + + coeffs - coefficients list [cAn, (cHn, cVn, cDn), ... (cH1, cV1, cD1)] + wavelet - wavelet to use (Wavelet object or name string) + mode - signal extension mode, see MODES + + Returns 2D array of reconstructed data. + """ + + if not isinstance(coeffs, (list, tuple)): + raise ValueError("Expected sequence of coefficient arrays.") + + if len(coeffs) < 2: + raise ValueError("Coefficient list too short (minimum 2 arrays required).") + + a, ds = coeffs[0], coeffs[1:] + + for d in ds: + a = idwt2((a, d), wavelet, mode) + + return a diff --git a/src/test_nouvelles_fonctions/pywt/numerix.py b/src/test_nouvelles_fonctions/pywt/numerix.py new file mode 100644 index 0000000..ade9cad --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/numerix.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id: numerix.py 117 2009-05-02 20:25:59Z filipw $ + +""" +Thin wrapper for numeric modules. Modify this to use wavelets with libraries other than NumPy. + +Provides efficient mathematical functions and array datatypes. +""" + +from numpy import ndarray, array, asarray +from numpy import empty, zeros, linspace, arange +from numpy import intp, float64, float32 +from numpy import transpose, concatenate +from numpy import cumsum, cos, diff, exp, sinc +from numpy import argmax, mean +from numpy import convolve +from numpy import where, less, greater +from numpy import apply_along_axis +from numpy.fft import fft + +default_dtype = float64 + +def as_float_array(source): + if isinstance(source, ndarray) and (source.dtype == float64 or source.dtype == float32): + return source + return array(source, default_dtype) + +def contiguous_float64_array_from_any(source): + return array(source, float64) # ensure contiguous + +def contiguous_float32_array_from_any(source): + return array(source, float32) # ensure contiguous + +def astype(source, dtype): + return asarray(source, dtype) + +def float64_memory_buffer_object(size): + return zeros((size,), float64) + +def float32_memory_buffer_object(size): + return zeros((size,), float32) + +def is_array_type(arr, typ): + return isinstance(arr, ndarray) and arr.dtype == typ + +def keep(arr, keep_length): + length = len(arr) + if keep_length < length: + left_bound = (length - keep_length) / 2 + return arr[left_bound:left_bound+keep_length] + return arr + +def integrate(arr, step): + integral = cumsum(arr) + integral *= step + return integral diff --git a/src/test_nouvelles_fonctions/pywt/release_details.py b/src/test_nouvelles_fonctions/pywt/release_details.py new file mode 100644 index 0000000..2802dcb --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/release_details.py @@ -0,0 +1,42 @@ +#-*- coding: utf-8 -*- + +# Release details for package + +name = "PyWavelets" +version = "0.1.7" +#revision = "$Revision: 118 $".split()[1] +author = "Filip Wasilewski" +author_email = "filip.wasilewski@gmail.com" +url = "http://www.pybytes.com/pywavelets/" +download_url = "http://pypi.python.org/pypi/PyWavelets/" +license = "MIT" +description = "PyWavelets, wavelet transform module." +keywords = ['wavelets', 'wavelet transform', 'DWT', 'SWT', 'scientific', 'NumPy'] +platforms = ['Linux', 'Mac OSX', 'Windows XP/2000/NT'] +svn = "http://wavelets.scipy.org/svn/multiresolution/pywt/trunk" + + +long_description = \ +""" +PyWavelets is a Python wavelet transforms module that can do: + + * 1D and 2D Forward and Inverse Discrete Wavelet Transform (DWT and IDWT) + * 1D and 2D Stationary Wavelet Transform (Undecimated Wavelet Transform) + * 1D and 2D Wavelet Packet decomposition and reconstruction + * Computing Approximations of wavelet and scaling functions + * Over seventy built-in wavelet filters and support for custom wavelets + * Single and double precision calculations + * Results compatibility with Matlab Wavelet Toolbox (tm) +""" + +classifiers = [ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Intended Audience :: Education', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: C', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries :: Python Modules' +] diff --git a/src/test_nouvelles_fonctions/pywt/thresholding.py b/src/test_nouvelles_fonctions/pywt/thresholding.py new file mode 100644 index 0000000..20afc6e --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/thresholding.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id: thresholding.py 117 2009-05-02 20:25:59Z filipw $ + +"""Thresholding routines""" + +__all__ = ['soft', 'hard', 'greater', 'less', 'zero', 'copy'] + +import numerix + +def soft(data, value, substitute=0): + mvalue = -value + + cond_less = numerix.less(data, value) + cond_greater = numerix.greater(data, mvalue) + + data = numerix.where(cond_less & cond_greater, substitute, data) + data = numerix.where(cond_less, data + value, data) + data = numerix.where(cond_greater, data - value, data) + + return data + +def hard(data, value, substitute=0): + mvalue = -value + + cond = numerix.less(data, value) + cond &= numerix.greater(data, mvalue) + + return numerix.where(cond, substitute, data) + +def greater(data, value, substitute=0): + return numerix.where(numerix.less(data, value), substitute, data) + +def less(data, value, substitute=0): + return numerix.where(numerix.greater(data, value), substitute, data) + +def zero(data, *args): + if isinstance(data, numerix.ndarray): + return numerix.zeros(data.shape, data.dtype) + return numerix.zeros(len(data)) + +def copy(data, *args): + return numerix.array(data) diff --git a/src/test_nouvelles_fonctions/pywt/wavelet_packets.py b/src/test_nouvelles_fonctions/pywt/wavelet_packets.py new file mode 100644 index 0000000..b3eac58 --- /dev/null +++ b/src/test_nouvelles_fonctions/pywt/wavelet_packets.py @@ -0,0 +1,560 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2006-2009 Filip Wasilewski +# See COPYING for license details. + +# $Id: wavelet_packets.py 134 2009-05-10 21:45:10Z filipw $ + +"""1D and 2D Wavelet packet transform module.""" + +__all__ = ["BaseNode", "Node", "WaveletPacket", "Node2D", "WaveletPacket2D"] + +import numerix +from _pywt import Wavelet, dwt, idwt, dwt_max_level +from multidim import dwt2, idwt2 + + +def get_graycode_order(level, x='a', y='d'): + graycode_order = [x, y] + for i in range(level-1): + graycode_order = [x + path for path in graycode_order] + \ + [y + path for path in graycode_order[::-1]] + return graycode_order + + +class MustOverride(object): + def __init__(self, message): self.message= message + def __get__(self, obj, cls): raise NotImplementedError(self.message % {'cls': cls.__name__}) + + +class BaseNode(object): + PART_LEN = MustOverride("BaseNode.PART_LEN must be redefined in subclass %(cls)s.") + PARTS = MustOverride("BaseNode.PARTS must be redefined in subclass %(cls)s.") + + def __init__(self, parent, data, node_name): + self.parent = parent + if parent is not None: + self.wavelet = parent.wavelet + self.mode = parent.mode + self.level = parent.level + 1 + self._maxlevel = parent.maxlevel + self.path = parent.path + node_name + else: + self.wavelet = None + self.mode = None + self.path = "" + self.level = 0 + + # data - signal on level 0, coeffs on higher levels + self.data = data + + self._init_subnodes() + + def _init_subnodes(self): + for part in self.PARTS: + self._set_node(part, None) + + def _create_subnode(self, part, data=None, overwrite=True): + raise NotImplementedError() + + def _create_subnode_base(self, node_cls, part, data=None, overwrite=True): + self._validate_node_name(part) + if not overwrite and self._get_node(part) is not None: + return self._get_node(part) + node = node_cls(self, data, part) + self._set_node(part, node) + return node + + def _get_node(self, part): + return getattr(self, part) + + def _set_node(self, part, node): + setattr(self, part, node) + + def _delete_node(self, part): + self._set_node(part, None) + + def _validate_node_name(self, part): + if part not in self.PARTS: + raise ValueError("Subnode name must be in [%s], not '%s'." % + (', '.join("'%s'" % p for p in self.PARTS), part)) + + def _evaluate_maxlevel(self, evaluate_from='parent'): + """ + Try to find the value of maximum decomposition level if it is not + specified explicitly. + """ + assert evaluate_from in ('parent', 'subnodes') + + if self._maxlevel is not None: + return self._maxlevel + elif self.data is not None: + return self.level + dwt_max_level(min(self.data.shape), + self.wavelet) + + if evaluate_from == 'parent': + if self.parent is not None: + return self.parent._evaluate_maxlevel(evaluate_from) + elif evaluate_from == 'subnodes': + for node_name in self.PARTS: + node = getattr(self, node_name, None) + if node is not None: + level = node._evaluate_maxlevel(evaluate_from) + if level is not None: + return level + return None + + def maxlevel(self): + if self._maxlevel is not None: + return self._maxlevel + + # Try getting the maxlevel from parents first + self._maxlevel = self._evaluate_maxlevel(evaluate_from='parent') + + # If not found, check whether it can be evaluated from subnodes + if self._maxlevel is None: + self._maxlevel = self._evaluate_maxlevel(evaluate_from='subnodes') + return self._maxlevel + maxlevel = property(maxlevel) + + def node_name(self): + return self.path[-self.PART_LEN:] + node_name = property(node_name) + + def decompose(self): + """ + Decompose node data creating DWT coefficients subnodes." + """ + if self.level < self.maxlevel: + return self._decompose() + else: + raise ValueError("Maximum decomposition level reached.") + + def _decompose(self): + raise NotImplementedError() + + def reconstruct(self, update=False): + """ + Reconstruct node from subnodes. + If update param is True, then reconstructed data replaces the current + node data. + + Returns: + - original node data if subnodes do not exist + - IDWT of subnodes otherwise. + """ + if not self.has_any_subnode: + return self.data + return self._reconstruct(update) + + def _reconstruct(self): + raise NotImplementedError() # override this in subclasses + + def get_subnode(self, part, decompose=True): + """ + Returns subnode. + + part - subnode name + decompose - if True and subnode does not exist, it will be created using + coefficients from DWT decomposition of the current node. + """ + self._validate_node_name(part) + subnode = self._get_node(part) + if subnode is None and decompose and not self.is_empty: + self.decompose() + subnode = self._get_node(part) + return subnode + + def __getitem__(self, path): + """ + Find node represented by the given path. + + path - string composed of node names. + + If node does not exist yet, it will be created by decomposition of its + parent node. + """ + if isinstance(path, basestring): + if (self.maxlevel is not None + and len(path) > self.maxlevel * self.PART_LEN): + raise IndexError("Path length is out of range.") + if path: + return self.get_subnode(path[0:self.PART_LEN], True)[ + path[self.PART_LEN:]] + else: + return self + else: + raise TypeError("Invalid path parameter type - expected string but" + " got %s." % type(path)) + + def __setitem__(self, path, data): + """ + Set node represented by the given path with a new value. + + path - string composed of node names. + data - array or BaseNode subclass. + """ + + if isinstance(path, basestring): + if (self.maxlevel is not None + and len(self.path) + len(path) > self.maxlevel * self.PART_LEN): + raise IndexError("Path length out of range.") + if path: + subnode = self.get_subnode(path[0:self.PART_LEN], False) + if subnode is None: + self._create_subnode(path[0:self.PART_LEN], None) + subnode = self.get_subnode(path[0:self.PART_LEN], False) + subnode[path[self.PART_LEN:]] = data + else: + if isinstance(data, BaseNode): + self.data = numerix.as_float_array(data.data) + else: + self.data = numerix.as_float_array(data) + else: + raise TypeError("Invalid path parameter type - expected string but" + " got %s." % type(path)) + + def __delitem__(self, path): + """ + Remove node from the tree. + """ + node = self[path] + # don't clear node value and subnodes (node may still exist outside the tree) + ## node._init_subnodes() + ## node.data = None + parent = node.parent + node.parent = None # TODO + if parent and node.node_name: + parent._delete_node(node.node_name) + + def is_empty(self): + return self.data is None + is_empty = property(is_empty) + + def has_any_subnode(self): + for part in self.PARTS: + if self._get_node(part) is not None: # and not .is_empty + return True + return False + has_any_subnode = property(has_any_subnode) + + def get_leaf_nodes(self, decompose=False): + """ + Returns leaf nodes. + """ + result = [] + def collect(node): + if node.level == node.maxlevel and not node.is_empty: + result.append(node) + return False + if not decompose and not node.has_any_subnode: + result.append(node) + return False + return True + self.walk(collect, decompose=decompose) + return result + + def walk(self, func, args=(), kwargs={}, decompose=True): + """ + Walk tree and call func on every node -> func(node, *args) + If func returns True, descending to subnodes will continue. + + func - callable + args - func parms + kwargs - func keyword params + """ + if func(self, *args, **kwargs) and self.level < self.maxlevel: + for part in self.PARTS: + subnode = self.get_subnode(part, decompose) + if subnode is not None: + subnode.walk(func, args, kwargs, decompose) + + def walk_depth(self, func, args=(), kwargs={}, decompose=False): + """ + Walk tree and call func on every node starting from the bottom-most + nodes. + + func - callable + args - func parms + kwargs - func keyword params + """ + if self.level < self.maxlevel: + for part in self.PARTS: + subnode = self.get_subnode(part, decompose) + if subnode is not None: + subnode.walk_depth(func, args, kwargs, decompose) + func(self, *args, **kwargs) + + def __str__(self): + return self.path + ": " + str(self.data) + + +class Node(BaseNode): + """ + WaveletPacket tree node. + + Subnodes are called ``a`` and ``d``, just like approximation + and detail coefficients in the Discrete Wavelet Transform. + """ + + A = 'a' + D = 'd' + PARTS = A, D + PART_LEN = 1 + + def _create_subnode(self, part, data=None, overwrite=True): + return self._create_subnode_base(node_cls=Node, part=part, data=data, overwrite=overwrite) + + def _decompose(self): + if self.is_empty: + data_a, data_d = None, None + if self._get_node(self.A) is None: + self._create_subnode(self.A, data_a) + if self._get_node(self.B) is None: + self._create_subnode(self.B, data_b) + else: + data_a, data_d = dwt(self.data, self.wavelet, self.mode) + self._create_subnode(self.A, data_a) + self._create_subnode(self.D, data_d) + return self._get_node(self.A), self._get_node(self.D) + + def _reconstruct(self, update): + data_a, data_d = None, None + node_a, node_d = self._get_node(self.A), self._get_node(self.D) + + if node_a is not None: + data_a = node_a.reconstruct() # TODO: (update) ??? + if node_d is not None: + data_d = node_d.reconstruct() # TODO: (update) ??? + + if data_a is None and data_d is None: + raise ValueError("Node is a leaf node and cannot be reconstructed" + " from subnodes.") + else: + rec = idwt(data_a, data_d, self.wavelet, self.mode, + correct_size=True) + if update: + self.data = rec + return rec + + +class Node2D(BaseNode): + """ + WaveletPacket tree node. + Subnodes are called 'a' (LL), 'h' (LH), 'v' (HL) and 'd' (HH), like approximation and + detail coefficients in 2D Discrete Wavelet Transform + """ + + LL = 'a' + LH = 'h' + HL = 'v' + HH = 'd' + + PARTS = LL, LH, HL, HH + PART_LEN = 1 + + def _create_subnode(self, part, data=None, overwrite=True): + return self._create_subnode_base(node_cls=Node2D, part=part, data=data, overwrite=overwrite) + + def _decompose(self): + if self.is_empty: + data_ll, data_lh, data_hl, data_hh = None, None, None, None + else: + data_ll, (data_lh, data_hl, data_hh) = dwt2(self.data, self.wavelet, self.mode) + self._create_subnode(self.LL, data_ll) + self._create_subnode(self.LH, data_lh) + self._create_subnode(self.HL, data_hl) + self._create_subnode(self.HH, data_hh) + return self._get_node(self.LL), self._get_node(self.LH), self._get_node(self.HL), self._get_node(self.HH) + + def _reconstruct(self, update): + data_ll, data_lh, data_hl, data_hh = None, None, None, None + + node_ll, node_lh, node_hl, node_hh = \ + self._get_node(self.LL), self._get_node(self.LH), self._get_node(self.HL), self._get_node(self.HH) + + if node_ll is not None: data_ll = node_ll.reconstruct() + if node_lh is not None: data_lh = node_lh.reconstruct() + if node_hl is not None: data_hl = node_hl.reconstruct() + if node_hh is not None: data_hh = node_hh.reconstruct() + + if (data_ll is None and data_lh is None + and data_hl is None and data_hh is None): + raise ValueError("Tree is missing data - all subnodes of `%s` node are None. Cannot reconstruct node." % self.path) + else: + coeffs = data_ll, (data_lh, data_hl, data_hh) + rec = idwt2(coeffs, self.wavelet, self.mode) + if update: + self.data = rec + return rec + + def expand_2d_path(self, path): + expanded_paths = { + self.HH: 'hh', + self.HL: 'hl', + self.LH: 'lh', + self.LL: 'll' + } + return (''.join([expanded_paths[p][0] for p in path]), + ''.join([expanded_paths[p][1] for p in path])) + + +class WaveletPacket(Node): + """ + Data structure representing Wavelet Packet decomposition of signal. + + data - original data (signal) + wavelet - wavelet used in DWT decomposition and reconstruction + mode - signal extension mode - see MODES + maxlevel - maximum level of decomposition (will be computed if not + specified) + """ + def __init__(self, data, wavelet, mode='sym', maxlevel=None): + super(WaveletPacket, self).__init__(None, data, "") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + self.wavelet = wavelet + self.mode = mode + + if data is not None: + data = numerix.as_float_array(data) + assert len(data.shape) == 1 + self.data_size = data.shape[0] + if maxlevel is None: + maxlevel = dwt_max_level(self.data_size, self.wavelet) + else: + self.data_size = None + + self._maxlevel = maxlevel + + def reconstruct(self, update=True): + """ + Reconstruct data value using coefficients from subnodes. + + If update is True, then data values will be replaced by + reconstruction values, also in subnodes. + """ + if self.has_any_subnode: + data = super(WaveletPacket, self).reconstruct(update) + if self.data_size is not None and len(data) > self.data_size: + data = data[:self.data_size] + if update: + self.data = data + return data + return self.data # return original data + + def get_level(self, level, order="natural", decompose=True): + """ + Returns all nodes on the specified level. + + order - "natural" - left to right in tree + - "freq" - band ordered + """ + assert order in ["natural", "freq"] + if level > self.maxlevel: + raise ValueError("The level cannot be greater than the maximum" + " decomposition level value (%d)" % self.maxlevel) + + result = [] + + def collect(node): + if node.level == level: + result.append(node) + return False + return True + + self.walk(collect, decompose=decompose) + if order == "natural": + return result + elif order == "freq": + result = dict((node.path, node) for node in result) + graycode_order = get_graycode_order(level) + return [result[path] for path in graycode_order if path in result] + else: + raise ValueError("Invalid order name - %s." % order) + + +class WaveletPacket2D(Node2D): + """ + Data structure representing 2D Wavelet Packet decomposition of signal. + + data - original data (signal) + wavelet - wavelet used in DWT decomposition and reconstruction + mode - signal extension mode - see MODES + maxlevel - maximum level of decomposition (will be computed if not + specified) + """ + def __init__(self, data, wavelet, mode='sp1', maxlevel=None): + super(WaveletPacket2D, self).__init__(None, data, "") + + if not isinstance(wavelet, Wavelet): + wavelet = Wavelet(wavelet) + self.wavelet = wavelet + self.mode = mode + + if data is not None: + data = numerix.as_float_array(data) + assert len(data.shape) == 2 + self.data_size = data.shape + if maxlevel is None: + maxlevel = dwt_max_level(min(self.data_size), self.wavelet) + else: + self.data_size = None + self._maxlevel = maxlevel + + def reconstruct(self, update=True): + """ + Reconstruct data using coefficients from subnodes. + + If update is set to True then the coefficients of the current node + and its subnodes will be replaced with values from reconstruction. + """ + if self.has_any_subnode: + data = super(WaveletPacket2D, self).reconstruct(update) + if self.data_size is not None and (data.shape != self.data_size): + data = data[:self.data_size[0], :self.data_size[1]] + if update: + self.data = data + return data + return self.data # return original data + + def get_level(self, level, order="natural", decompose=True): + """ + Returns all nodes from specified level. + + If order is `natural`, a flat list is returned. + + If order is `freq`, a 2d structure with rows and cols + sorted by corresponding dimension frequency of 2d + coefficient array (adapted from 1d case). + """ + assert order in ["natural", "freq"] + if level > self.maxlevel: + raise ValueError("The level cannot be greater than the maximum" + " decomposition level value (%d)" % self.maxlevel) + + result = [] + + def collect(node): + if node.level == level: + result.append(node) + return False + return True + + self.walk(collect, decompose=decompose) + + if order == "freq": + nodes = {} + for (row_path, col_path), node in [(self.expand_2d_path(node.path), node) + for node in result]: + nodes.setdefault(row_path, {})[col_path] = node + graycode_order = get_graycode_order(level, x='l', y='h') + nodes = [nodes[path] for path in graycode_order if path in nodes] + result = [] + for row in nodes: + result.append( + [row[path] for path in graycode_order if path in row] + ) + return result + diff --git a/src/test_nouvelles_fonctions/script1.py b/src/test_nouvelles_fonctions/script1.py new file mode 100644 index 0000000..7d5872c --- /dev/null +++ b/src/test_nouvelles_fonctions/script1.py @@ -0,0 +1,212 @@ +#-*-coding:utf8-*- +############################################################################### +# Réalise l'insertion et l'extraction, par substitution, d'une image +# dans une autre, dans le domaine DWT. On précise l'ondelette, la matrice DWT. +############################################################################### + +import Image as im +import ImageStat +from ImageChops import difference +from BitVector import BitVector +from numpy import * + +from dwt_marquage import Marquage_DWT +from outilsBase import setBit, getBit, conversion +from suite import Doublement +from chiffrement_image import Chiffrement +from coefficients import Coefficients + + +class Marquage_DWT_Doublement_IC: + + _nb_bits_coef = 16 + + def __init__(self, hote = None, marque = None, + matrice_dwt = None, famille = None, + position = None, authentification = None, + LSB = None): + ''' + Constructeur. + ''' + + # L'hote + self._hote = hote + if not self._hote: + self._hote = raw_input("Quel fichier hôte ? ") + + # La marque + self._marque = marque + if not self._marque: + self._marque = raw_input("Quel marque ? ") + + # Chiffrement + print "\n================== Chiffrement ==================" + unChiffrement = Chiffrement(fichier_image = self._marque) + unChiffrement.chiffrement() + self._strategie = unChiffrement.get_strategie() + self._image = unChiffrement.get_image() + + + # Récupération des bits de l'image chiffrée + self._code = [k/255 for k in list(self._image.getdata())] + + # La famille d'ondelettes + self._famille = famille + if not self._famille: + self._famille = raw_input("Quelle famille d'ondelettes ? ") + + # La matrice DWT à modifier + self._matrice_dwt = matrice_dwt + if not self._matrice_dwt: + self._matrice_dwt = raw_input("Quelle matrice DWT affecter ? ") + assert self._matrice_dwt in ['A1','A2','A3','H1','H2','H3', + 'D1','D2','D3','V1','V2','V3'] + + # Position de l'insertion dans la matrice DWT + self._position = position + if not self._position: + self._position =eval(raw_input("Début de l'insertion ? ")) + + self._authentification = authentification + if self._authentification == None: + self._authentification=eval(raw_input("Authentification ? ")) + if self._authentification: + self._MSB = eval(raw_input("Quels MSB ? ")) + + # Force de l'insertion + self._LSB = LSB + if not self._LSB: + self._LSB = eval(raw_input("Liste des LSB ? ")) + + + + + def get_strategie(self,N): + ''' + Récupère la stratégie des itérations chaotiques. + ''' + if self._authentification: + msc = Coefficients().getAllCoefs(self._hote, self._MSB) + bits = BitVector(bitstring = self._code) ^ msc + + else: + bits = BitVector(bitstring = self._code) + doublement = Doublement(1, N, + generateur = Coefficients()\ + .bit2coef(bits, N)) + suite = doublement.iterateur() + while True: + yield suite.next() + + + + + + def marquage(self): + self._unMarquage = Marquage_DWT(hote = self._hote, + famille = self._famille) + matrice = self._unMarquage.get_matrice_DWT(self._matrice_dwt) + + self._x0, self._y0 = self._position + self._x1, self._y1 = matrice.shape + assert self._x0 < matrice.shape[0] + assert self._y0 < matrice.shape[1] + + + taille = self._nb_bits_coef + image = [] + for k in range(matrice.shape[0]): + for l in range(matrice.shape[1]): + texte = conversion(int(matrice[k,l]),2).zfill(taille) + image += [int(texte[taille-x]) for x in self._LSB] + + compteur = 0 + + # L'insertion + strat = self.get_strategie(len(image)) + + for x in range(len(self._code)): + suivant = strat.next() + image[suivant] = int(not image[suivant]) + + + # Reconstruction de l'image + compteur = 0 + for k in range(matrice.shape[0]): + for l in range(matrice.shape[1]): + x = [int(d) for d in conversion\ + (int(matrice[k,l]),2).zfill(taille)] + for m in self._LSB: + x[taille-m] = image[compteur] + compteur += 1 + x = ''.join([str(t) for t in x]) + matrice[k,l] -= int(matrice[k,l]) + matrice[k,l] += int(x,2) + + self._unMarquage.set_matrice_DWT(self._matrice_dwt, matrice) + self._unMarquage.get_hote_marque().save('lena_marque.png') + + + + + + def get_hote_marque(self): + return self._unMarquage.get_hote_marque() + + + + + + def extraction(self, hote = 'lena_marque.png'): + unTatouage = Marquage_DWT_Doublement_IC(hote = hote, + marque = self._marque, + famille = self._famille) + unTatouage.marquage() + unTatouage.get_hote_marque().save('lena_demarque.png') + image1 = im.open("lena512.jpg") + image2 = im.open("lena_demarque.png") + + compteur = 0 + diffs = difference(image1, image2) + for k in range(image1.size[0]): + for l in range(image1.size[0]): + if diffs.getpixel((k,l)) >0 : + compteur += 1 + print "\nNombre de différences :",compteur, "sur", + print str(image1.size[0]*image1.size[1])+'.\n' + maximum = max(list(diffs.getdata())) + diffs.point(lambda x : x*255/maximum).show() + raw_input("Différences (facteur de "+str(maximum)+")") + stats = ImageStat.Stat(diffs) + print "Valeur moyenne des différences : ", stats.mean[0] + print "Médiane des différences : ", stats.median[0] + print "Valeurs extrémales : ", stats.extrema[0] + print "Somme des différences : ", stats.sum[0] + print "Valeur efficace : ", stats.rms[0] + print "Ecart-type : ", stats.stddev[0] + + + +if __name__ == '__main__': + unTatouage = Marquage_DWT_Doublement_IC(hote = 'lena512.jpg', + marque = 'filigrane32.png', + famille = 'db1') + unTatouage.marquage() + + unTatouage.get_hote_marque().save('lena512marque.jpg') + unTatouage.get_hote_marque().show() + raw_input("Affichage de l'hôte marqué") + + diffs = difference(im.open('lena512.jpg'),unTatouage.get_hote_marque()) + maximum = max(list(diffs.getdata())) + diffs.point(lambda x : int(x*255/maximum)).show() + raw_input("Différences (facteur de "+str(maximum)+")") + stats = ImageStat.Stat(diffs) + print "Valeur moyenne des différences : ", stats.mean[0] + print "Médiane des différences : ", stats.median[0] + print "Valeurs extrémales : ", stats.extrema[0] + print "Somme des différences : ", stats.sum[0] + print "Valeur efficace : ", stats.rms[0] + print "Ecart-type : ", stats.stddev[0] + + unTatouage.extraction('lena512marque.jpg') diff --git a/src/test_nouvelles_fonctions/script2.py b/src/test_nouvelles_fonctions/script2.py new file mode 100644 index 0000000..3695599 --- /dev/null +++ b/src/test_nouvelles_fonctions/script2.py @@ -0,0 +1,248 @@ +#-*-coding:utf8-*- +############################################################################### +# Réalise l'insertion et l'extraction, par substitution, d'une image +# dans une autre, dans le domaine DWT. On précise l'ondelette, la matrice DWT. +############################################################################### + +import Image as im +import ImageStat +from ImageChops import difference +from BitVector import BitVector +from numpy import * +from os import system + +from dwt_marquage import Marquage_DWT +from outilsBase import setBit, getBit, conversion +from suite import Doublement +from chiffrement_image import Chiffrement +from coefficients import Coefficients + + +class Marquage_DWT_Doublement_IC: + + _nb_bits_coef = 16 + + def __init__(self, hote = None, marque = None, + matrice_dwt = None, famille = None, + position = None, authentification = None, + LSB = None, iterations = None, mu = None, + Xo = None): + ''' + Constructeur. + ''' + + # L'hote + self._hote = hote + if not self._hote: + self._hote = raw_input("Quel fichier hôte ? ") + else: + print "Hote : ", self._hote + + # La marque + self._marque = marque + if not self._marque: + self._marque = raw_input("Quel marque ? ") + else: + print "Marque : ", self._marque + + # Chiffrement + unChiffrement = Chiffrement(fichier_image = self._marque, + iterations = iterations, + mu = mu, + Xo = Xo) + unChiffrement.chiffrement() + self._strategie = unChiffrement.get_strategie() + self._image = unChiffrement.get_image() + + + # Récupération des bits de l'image chiffrée + self._code = [k/255 for k in list(self._image.getdata())] + + # La famille d'ondelettes + self._famille = famille + if not self._famille: + self._famille = raw_input("Quelle famille d'ondelettes ? ") + else: + print "Famille d'ondelettes : ", self._famille + + # La matrice DWT à modifier + self._matrice_dwt = matrice_dwt + if not self._matrice_dwt: + self._matrice_dwt = raw_input("Quelle matrice DWT affecter ? ") + else: + print "Matrice DWT : ",self._matrice_dwt + assert self._matrice_dwt in ['A1','A2','A3','H1','H2','H3', + 'D1','D2','D3','V1','V2','V3'] + + # Position de l'insertion dans la matrice DWT + self._position = position + if not self._position: + self._position =eval(raw_input("Début de l'insertion ? ")) + else: + print "Début de l'insertion : ", self._position + + self._authentification = authentification + if self._authentification == None: + self._authentification=eval(raw_input("Authentification ? ")) + else: + print "Authentification : ", str(self._authentification) + if self._authentification: + self._MSB = eval(raw_input("Quels MSB ? ")) + + # Force de l'insertion + self._LSB = LSB + if not self._LSB: + self._LSB = eval(raw_input("Liste des LSB ? ")) + else: + print "LSB : ", self._LSB + + print + + + + + def get_strategie(self, Uo, N): + ''' + Récupère la stratégie des itérations chaotiques. + ''' + if self._authentification: + msc = Coefficients().getAllCoefs(self._hote, self._MSB) + bits = BitVector(bitstring = self._code) ^ msc + + else: + bits = BitVector(bitstring = self._code) + doublement = Doublement(Uo, N, + generateur = Coefficients()\ + .bit2coef(bits, N)) + suite = doublement.iterateur() + while True: + yield suite.next() + + + + + + def marquage(self): + self._unMarquage = Marquage_DWT(hote = self._hote, + famille = self._famille) + matrice = self._unMarquage.get_matrice_DWT(self._matrice_dwt) + print "Taille de la matrice DWT : ",matrice.shape + self._matrice_originelle = self._unMarquage.get_matrice_DWT(self._matrice_dwt) + + #self._x0, self._y0 = self._position + #self._x1, self._y1 = matrice.shape + #assert self._x0 < matrice.shape[0] + #assert self._y0 < matrice.shape[1] + + taille = self._nb_bits_coef + image = [] + for k in range(matrice.shape[0]): + for l in range(matrice.shape[1]): + s = 1 if matrice[k,l] >= 0 else -1 + texte = conversion(int(s*matrice[k,l]),2).zfill(taille) + image += [int(texte[taille-x]) for x in self._LSB] + + assert self._position < len(image) + + compteur = 0 + + # L'insertion + strat = self.get_strategie(self._position, len(image)) + + for x in range(len(self._code)): + suivant = strat.next() + image[suivant] = int(not image[suivant]) + + + # Reconstruction de l'image + compteur = 0 + for k in range(matrice.shape[0]): + for l in range(matrice.shape[1]): + s = 1 if matrice[k,l] >= 0 else -1 + x = [int(d) for d in conversion\ + (int(s*matrice[k,l]),2).zfill(taille)] + for m in self._LSB: + x[taille-m] = image[compteur] + compteur += 1 + x = ''.join([str(t) for t in x]) + matrice[k,l] = matrice[k,l]%1 + matrice[k,l] += s*int(x,2) + + self._unMarquage.set_matrice_DWT(self._matrice_dwt, matrice) + self._unMarquage.get_hote_marque().save('lena512marque.png') + + + + + + + def get_hote_marque(self): + return self._unMarquage.get_hote_marque() + + + def get_matrice_DWT(self): + return self._unMarquage.get_matrice_DWT(self._matrice_dwt) + + + def extraction(self, hote = 'lena_marque.png'): + print "\n\n==================== Extraction ==========================" + unTatouage = Marquage_DWT_Doublement_IC(hote = hote, + marque = 'invader.png', + famille = 'db1', + position = 2, + authentification = False, + matrice_dwt = 'H2', + LSB = [1], + iterations = 20000, + mu = 4, + Xo = 0.65) + unTatouage.marquage() + lena_demarque = unTatouage.get_matrice_DWT() + M = self._matrice_originelle - lena_demarque + + print "RMS : ", + print sqrt(sum([k**2 for k in M.flatten().tolist()])/M.size) + + + +if __name__ == '__main__': + system('clear') + print "==================== Insertion ==========================" + unTatouage = Marquage_DWT_Doublement_IC(hote = 'lena512.jpg', + marque = 'invader.png', + famille = 'db1', + position = 1, + authentification = False, + matrice_dwt = 'H2', + LSB = [2], + iterations = 20000, + mu = 4, + Xo = 0.65) + unTatouage.marquage() + + unTatouage.get_hote_marque().save('lena512marque.jpg') + #unTatouage.get_hote_marque().show() + #raw_input("Affichage de l'hôte marqué") + + + + diffs = difference(im.open('lena512.jpg'),unTatouage.get_hote_marque()) + maximum = max(list(diffs.getdata())) + #diffs.point(lambda x : int(x*255/maximum)).show() + #raw_input("Différences (facteur de "+str(255./maximum)+")") + stats = ImageStat.Stat(diffs) + print "Valeur moyenne des différences : ", stats.mean[0] + print "Médiane des différences : ", stats.median[0] + print "Valeurs extrémales : ", stats.extrema[0] + print "Somme des différences : ", stats.sum[0] + print "Valeur efficace (RMS) : ", stats.rms[0] + print "Ecart-type : ", stats.stddev[0] + + # Calcul du PSNR + from evaluation import Evaluation + uneEva = Evaluation(im.open('lena512.jpg'), + im.open('lena512marque.png')) + print "PSNR = ",uneEva.PSNR() + + + unTatouage.extraction('lena512marque.jpg') diff --git a/src/test_nouvelles_fonctions/script3.py b/src/test_nouvelles_fonctions/script3.py new file mode 100644 index 0000000..a3ea63d --- /dev/null +++ b/src/test_nouvelles_fonctions/script3.py @@ -0,0 +1,189 @@ +#-*-coding:utf8-*- + +############################################# +# Script réalisé dans le cadre du papier +# concernant l'utilisation de plusieurs +# fonctions chaotiques (pas seulement la +# négation vectorielle) pour le tatouage. +# +# On utilise 3 fonctions différentes, on tatoue +# dans le domaine ondelette. +############################################# + +print(" * Importations") +from dwt_marquage import Marquage_DWT +from outilsBase import conversion, getBit, setBit +from random import randint +from copy import deepcopy +import Image as im +from ImageChops import difference +from evaluation import Evaluation + +print + +def matrice_to_bits(matrice): + ''' + Renvoie la matrice des écritures binaires de matrice. + Les coefficients floants deviennent des chaînes (str) de bits. + ''' + (m,n) = matrice.shape + retour = [] + for l in range(m): + ligne = [] + for c in range(n): + ligne.append(conversion(str(matrice[l,c]),2)) + retour.append(ligne) + return retour + + +def matrice_lscs(matrice,lscs): + ''' + Matrice est une liste de listes, lscs est une liste. + + A partir d'une matrice de coefficients binaires, vus comme + des chaines de caractères, extrait les bits dont les positions + sont données par la liste lscs. + + Dans la liste lscs, un entier positif signifie devant la virgule, + un entier négatif signifie derrière. Le premier bit devant la + virgule est le bit 1, le premier bit derrière la virgule est le -1. + + Le retour est une liste de bits (entiers). + ''' + m,n = len(matrice), len(matrice[0]) + retour = [] + for l in range(m): + for c in range(n): + if '.' not in matrice[l][c]: + ent,dec = matrice[l][c].replace('-',''),'0' + else: + ent,dec = matrice[l][c].replace('-','').split('.') + ent,dec = list(ent),list(dec) + ent.reverse() + for lsc in lscs: + if lsc > 0 and len(ent)>=lsc: + retour.append(ent[lsc-1]) + elif lsc<0 and len(dec)>=abs(lsc): + retour.append(dec[abs(lsc)-1]) + else: + retour.append('0') + return [int(k) for k in retour][:-3] + + +def embarque(liste,matrice,lscs): + m,n = len(matrice), len(matrice[0]) + retour = [] + cpt = 0 + for l in range(m): + for c in range(n): + if '-' in matrice[l][c]: + signe = '-' + else: + signe = '' + if '.' not in matrice[l][c]: + ent,dec = matrice[l][c].replace('-',''),'0' + else: + ent,dec = matrice[l][c].replace('-','').split('.') + ent,dec = list(ent),list(dec) + ent.reverse() + maximum = max([abs(k) for k in lscs]) + ent = list(''.join(ent).zfill(maximum+2)) + dec = list(''.join(dec).zfill(maximum+2)) + print dec + for lsc in lscs: + if lsc > 0: + ent[lsc-1] = str(liste[cpt]) + else: + dec[abs(lsc)-1] = str(liste[cpt]) + cpt += 1 + ent.reverse() + ent = ''.join(ent) + dec = ''.join(dec) + print ent+'.'+dec + + + +def f(L): + assert len(L)%4 == 1 + n = len(L)/4 + retour = [int(not L[k]) for k in range(n)] + retour.extend([L[k-n] for k in range(n,2*n)]) + retour.extend([int(L[k-2*n])*int(not L[k+1]) for k in range(2*n,4*n)]) + retour.extend([int(not L[2*n])]) + return retour + + +def f(L): + return [int(not k) for k in L] + +def f(L): + retour = [int(not L[0])] + retour.extend([L[k-1] for k in range(1,len(L))]) + return retour + +def embarque2(liste,matrice,lscs): + m,n = len(matrice), len(matrice[0]) + retour = deepcopy(matrice) + cpt = 0 + for l in range(m): + for c in range(n): + for lsc in lscs: + try: + retour[l,c] = setBit(str(retour[l,c]),lsc, liste[cpt]) + cpt += 1 + except: + pass + return retour + +print(" * Construction") +unMarquage = Marquage_DWT(hote = 'lena.png', + famille = 'db1') +print + +coefficient = 'D2' +LSCs = [3,2,1] + +print("Coefficients DWT : "+coefficient) +print("LSCS : "+str(LSCs)) +print +print(" * Extraction du coefficient DWT.") +matrice = unMarquage.get_matrice_DWT(coefficient) + +print(" * Extraction des LSCs") +mat = matrice_lscs(matrice_to_bits(matrice),LSCs) +mat0 = matrice_lscs(matrice_to_bits(matrice),LSCs) + +print(" * Itérations") +for k in range(6000): + mat2 = f(mat) + strat = randint(0,len(mat)-1) + mat[strat] = int(mat2[strat]) + +# Calcul du nombre de différences dans la matrice DWT +cpt = 0 +for k in range(len(mat)): + if mat[k] != mat0[k]: + cpt += 1 +print(" * Différences : "+str(cpt)+"/"+str(len(mat))) + +print(" * Tatouage de la matrice extraite") +matrice_tatouee = embarque2(mat,matrice,LSCs) + +print(" * Embarquement dans l'hôte") +unMarquage.set_matrice_DWT(coefficient, matrice_tatouee) + +#print(" * Affichage de l'hôte marqué") +#unMarquage.get_hote_marque().show() +#raw_input(' (Appuyez sur une touche)') + +#print(" * Affichage des différences") +#maximum = +#difference(im.open('lena.png'),unMarquage.get_hote_marque()).show() + +unMarquage.get_hote_marque().save('lena_dwt_shift.pdf') + +uneEva = Evaluation(im.open('lena.png'), + unMarquage.get_hote_marque()) + +print 'PSNR = ',uneEva.PSNR() + diff --git a/src/test_nouvelles_fonctions/suite.py b/src/test_nouvelles_fonctions/suite.py new file mode 100644 index 0000000..1381605 --- /dev/null +++ b/src/test_nouvelles_fonctions/suite.py @@ -0,0 +1,268 @@ +#-*- coding:utf-8 -*- +from BitVector import * +from sympy.mpmath import * + +mp.prec = 100 + +class Logistique: + ''' + La suite logistique. + + - On itère f(X) = mu.X.(1-X), à partir de x0. + - On regarde ensuite où se situe f(X) par rapport aux frontières... + - S'il se situe entre la frontière k et k+1, alors on retourne valeurs[k]. + + Exemple d'utilisation : + + suiteLogistique = Logistique(0.65,4) + Un = suiteLogistique.iterateur() + print Un.next() + + ''' + + def __init__(self, x0, mu, frontiere = [0.5], valeurs = [0,1]): + '''Constructeur.''' + if len(frontiere)+1!=len(valeurs): + raise ValueError("La valeur de retour doit\ + être égale à la valeur frontière +1.") + self._x = mpf(str(x0)) + self._mu = mpf(str(mu)) + self._frontiere = frontiere + self._valeurs = valeurs + + + def iterateur(self): + '''Crée un générator.''' + while True: + k=0 + while self._x > self._frontiere[k]: + k+=1 + if k==len(self._frontiere): + break + yield self._valeurs[k] + self._x = self._mu*self._x*(1-self._x) + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return BitVector(bitlist = l) + + + + +class Uns: + ''' Suite de uns ''' + def __init__(self): + '''Constructeur.''' + pass + + def iterateur(self): + ''' generator de la suite de uns.''' + while True: + yield 1 + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return BitVector(bitlist = l) + + + + +class Arnold: + ''' Le chat d'arnold : + X[n+1] = (X[n] + Y[N])%N + Y[n+1] = (X[n] + 2*Y[N])%N. + + Les arguments de ce constructeur sont le couple initial, et le + modulo N. + ''' + + def __init__(self, (x0,y0), N, l = 1, dim = 2): + '''Constructeur.''' + assert x0 >= 0 and y0 >= 0 + assert x0 < N and y0 < N + assert dim in [1, 2] + + self._x, self._y = x0, y0 + self._l = l + self._N = N + self._dim = dim + + + def iterateur(self): + '''Generator de la suite Chat d'Arnold. Possède une version 1 dimension : + au lieu de retourner le couple (x,y), on retourne x*N+y. + ''' + if self._dim == 2: + while True: + yield (self._x,self._y) + x, y = self._x, self._y + self._x = (x + y)%self._N + self._y = (self._l*x + (self._l+1)*y)%self._N + elif self._dim ==1 : + while True: + yield self._x*self._N + self._y + x, y = self._x, self._y + self._x = (x + y)%self._N + self._y = (self._l*x + (self._l+1)*y)%self._N + + + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return l + + + + +class TelQuel: + ''' + Renvoie la suite des coefficients, tel quel. + + Par exemple, + * TelQuel(2, 5) : 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, + 0, 1, 2, ... + * TelQuel((2, 3), (4, 5)) : (2, 3), (3, 3), (0, 4), (1, 4), + (2, 4), (3, 4), (0, 0), (1, 0), + (2, 0), (3, 0) + * TelQuel((2, 3), (4, 5), sens = 'indirect') : (2, 3), + (2,4), (2, 5), (3, 2), (3, 3)... + Un booléen (boucle), fixé à True par défaut, permet d'arrêter les + itérations une fois que l'ensemble des coefficients a été atteints, + quand il est mis à False. + ''' + def __init__(self, debut, fin, sens = 'direct', boucle = True, termes = 0, + pas = 1): + ''' + Constructeur. + ''' + self._boucle = boucle + self._compteur = 0 + self._termes = termes + self._pas = pas + if isinstance(debut, int): + assert isinstance(fin, int) + self._debut = (debut,) + self._fin = (fin,) + else: + self._debut = tuple(debut) + self._fin = tuple(fin) + assert len(self._debut) == len(self._fin) + self._direct = sens == 'direct' + + + def iterateur(self): + y = self._debut + z = self._fin + x = list(y) + while True: + if len(x) == 1: + yield x[0] + else: + yield tuple(x) + if self._direct: + vecteur = range(len(x)) + else: + vecteur = range(len(x)-1,-1,-1) + for k in vecteur: + x[k] = (x[k] + self._pas)%z[k] + if x[k]!=0: + break + if not self._boucle: + if tuple(x) == self._debut: + raise StopIteration + self._compteur +=1 + if self._compteur == self._termes: + raise StopIteration + + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return l + + + + +class Doublement: + ''' Retourne un générateur : U[n+1] = (2*U[n] + V[n] + n)%N + + Dans ce qui précède : + - Une option peut être passée au constructeur pour ne pas + avoir le +n. + - V est un générateur ou une liste : + * Si c'est un générateur, on boucle éternellement, + * Si c'est une liste, on met 0 quand on est arrivé à + la fin de la liste. + - Si V n'est pas fourni au constructeur, alors V[n] = 0. + + Le modulo peut être soit un entier, soit un tuple. + ''' + + def __init__(self, U0, modulo, generateur = [], plusN = True): + ''' + Constructeur. + ''' + self._compteur = -1 + self._plusN = plusN + self._modulo = modulo + if isinstance(modulo, int): + self._modulo = (self._modulo,) + if isinstance(U0, int): + self._U = [U0]*len(self._modulo) + else: + self._U = U0 + if isinstance(generateur, list) : + self._generateur = self._genere(generateur) + else : + self._generateur = generateur + + + def _genere(self, liste): + while True : + if self._compteur < len(liste): + yield liste[self._compteur] + else: + yield 0 + + + def iterateur(self): + Vn = self._generateur + while True : + L = [] + for k in range(len(self._modulo)): + L.append(self._U[k]) + self._compteur += 1 + self._U[k] = 2*self._U[k] + Vn.next() + if self._plusN: + self._U[k] += self._compteur + self._U[k] %= self._modulo[k] + if len(L) == 1: + yield L[0] + else: + yield tuple(L) + + + def termes(self, N): + ''' Retourne une liste de N termes de la suite.''' + temp = self.iterateur() + l = [] + for k in range(N): + l.append(temp.next()) + return l + +