# HG changeset patch # User Xavier Glorot # Date 1265924172 18000 # Node ID b3d15100842ac58f2dd07db41ccd4e3792ef0144 # Parent 17fabd74dd2b5d0a90e10c28c284d5efa85c59fd Changed order of transformation diff -r 17fabd74dd2b -r b3d15100842a transformations/testtransformations.py --- a/transformations/testtransformations.py Thu Feb 11 16:34:25 2010 -0500 +++ b/transformations/testtransformations.py Thu Feb 11 16:36:12 2010 -0500 @@ -25,7 +25,7 @@ from affine_transform import AffineTransformation ###---------------------order of transformation module -MODULE_INSTANCES = [Slant(),Thick(),AffineTransformation(),LocalElasticDistorter(),GIMP1(), PermutPixel(),DistorsionGauss(), Rature(), Occlusion(),AddBackground(), BruitGauss(),PoivreSel(), Contrast()] +MODULE_INSTANCES = [Slant(),Thick(),AffineTransformation(),LocalElasticDistorter(),GIMP1(),Rature(),Occlusion(), PermutPixel(),DistorsionGauss(),AddBackground(), PoivreSel(), BruitGauss(), Contrast()] ###---------------------complexity associated to each of them complexity = [0.6,0.6,0.6,0.6,0.6,0.3,0.3,0.5,0.5,0.5,0.3,0.3,0.5]