Import from Mercurial

This commit is contained in:
Nicolas FRIOT, PhD
2026-03-08 23:23:50 +01:00
commit a79e10e554
1087 changed files with 46403 additions and 0 deletions

17
.project Normal file
View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>algo-stegano-watermarking-ic</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.python.pydev.PyDevBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.python.pydev.pythonNature</nature>
</natures>
</projectDescription>

10
.pydevproject Normal file
View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?>
<pydev_project>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/algo-stegano-watermarking-ic/src</path>
</pydev_pathproperty>
</pydev_project>

0
.tmp Normal file
View File

0
.tmp1 Normal file
View File

210
src/Tatouage/attaque.py Normal file
View File

@@ -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)

View File

@@ -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')

View File

@@ -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

40
src/Tatouage/config.txt Normal file
View File

@@ -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]

3
src/Tatouage/config0.txt Normal file
View File

@@ -0,0 +1,3 @@
[GENERAL]
authentification = False

40
src/Tatouage/config2.txt Normal file
View File

@@ -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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

View File

@@ -0,0 +1,40 @@
[GENERAL]
authentification = False
watermark = resultat.txt
resultat = False
repertoire_images = images
repertoire_temporaire = tempo
repertoire_resultat = resultats
[INSERTION]
lsb = [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]

Some files were not shown because too many files have changed in this diff Show More