IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Python Discussion :

Pil filtre sépia


Sujet :

Python

  1. #1
    Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    9
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2013
    Messages : 9
    Points : 4
    Points
    4
    Par défaut Pil filtre sépia
    Bonjour à tous.
    J'ai fais beaucoup de tentative pour faire un filtre sépia manuellement avec Pil sens de véritable sucé.
    Cependant en navigant sur le web j'ai trouvé se code qui fonctionne parfaitement:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    imageM = Image.new('RGB',(L,H))
        for y in range (0,H,1):
            for x in range (0,L,1):
                p = image1.getpixel((x,y))
                R = (25756 * p[0] + 50397 * p[1] + 12386 * p[2]) >> 16
                G = (22872 * p[0] + 44958 * p[1] + 11010 * p[2]) >> 16
                B = (17826 * p[0] + 34996 * p[1] + 8585 * p[2]) >> 16
     
                if R < 0: R = 0
                if R > 255: R = 255
     
                if G < 0: G = 0
                if G > 255: G = 255
     
                if B < 0: B = 0
                if B > 255: B = 255
     
                imageM.putpixel ((x,y) ,(R,G,B))
    Le seul problème c'est que je n'arrive pas à comprendre se code!!!
    Auriez-vous une explication ????

  2. #2
    Membre éclairé
    Avatar de airod
    Homme Profil pro
    Gérant Associé, DMP Santé et Directeur technique
    Inscrit en
    Août 2004
    Messages
    767
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Gérant Associé, DMP Santé et Directeur technique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2004
    Messages : 767
    Points : 891
    Points
    891
    Par défaut
    Humm, j'ai bien un début d'explication...
    Je viens de découvrir le décalage de bit (opérateur >> ou <<)

    Pour chaque pixel de l'image le code calcul une nouvelle valeur R, G , B
    Puis il vérifie si pour chaque nouvelle valeur, il faut remettre la valeur a 0 ou 255 (RGB en 8 bits > (0 à 255,0 à 255,0 à 255))

    Puis il remplace le pixel par les nouveau.

    Je cherche pourquoi il y a un décalage de bit?! Est ce pour une histoire de performance?

    Perso, j'ai fais dans le passé un script pour faire du sépia avec PIL, et c'était plus simple... (peut être moins performant?!)


  3. #3
    Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    9
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2013
    Messages : 9
    Points : 4
    Points
    4
    Par défaut
    Merci pour votre réponse !
    c'est vrais que vu de plus près c'est très curieux comme code ^^.
    vous aviez fait comment pour faire un filtre sépia ???

  4. #4
    Membre éclairé
    Avatar de airod
    Homme Profil pro
    Gérant Associé, DMP Santé et Directeur technique
    Inscrit en
    Août 2004
    Messages
    767
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Gérant Associé, DMP Santé et Directeur technique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2004
    Messages : 767
    Points : 891
    Points
    891
    Par défaut
    hum, j'ai fait simple

    j'utilise le module ImageOps de PIL.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    def sepia2img(self,image):
     
            '''creation d'un sepia'''
     
            a=imo.grayscale(image) #"convertion nb"
            b=imo.colorize(a,(30,15,0),(255,240,225)) #"colorisation"
            b=b.convert("RGB") #"convertion RGB"
            return b
    A toi de fixer tes valeurs de colorisation. J'ai travaillé les miennes en faisant quelques tests.


  5. #5
    Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    9
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2013
    Messages : 9
    Points : 4
    Points
    4
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
     
        #Application du Filtre rouge
    def filtre_rouge():
     
        global imageM
        imageM = Image.new('RGB',(L,H))
        for y in range (0,H,1):
            for x in range (0,L,1):
                p = image1.getpixel((x,y))
                imageM.putpixel ((x,y) ,(p[0],0,0))
     
        global image1
        image1 = imageM
     
     
        global P
        P = 1+P
        global Ps
        Ps = P
     
        global tableau
        tableau[P] = imageM
     
        if (L>w) and (H>h):
     
           image2 = imageM.resize([int(half*t) for t in imageM.size])
           imageP = ImageTk.PhotoImage(image2)
           imageL = Tk.Label(image=imageP)
           imageL.image = imageP
           imageL.pack()
           imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
        else:
            imageMP = ImageTk.PhotoImage(imageM)
            imageML = Tk.Label(image=imageMP)
            imageML.image = imageMP
            imageML.pack()
            imageML.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
     
     
     
     
        #Retournement de l'image
    def Retourner():
     
     
        global imageM
        imageM = Image.new('RGB',(L,H))
        for y in range (0,H,1):
            for x in range (0,L,1):
                p = image1.getpixel((x,y))
                imageM.putpixel ( ( x,-y+H-1) ,p)
     
        global image1
        image1 = imageM
     
     
        global P
        P = 1+P
        global Ps
        Ps = P
     
        global tableau
        tableau[P] = imageM
     
        if (L>w) and (H>h):
     
            image2 = imageM.resize([int(half*t) for t in imageM.size])
            imageP = ImageTk.PhotoImage(image2)
            imageL = Tk.Label(image=imageP)
            imageL.image = imageP
            imageL.pack()
            imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
        else:
            imageMP = ImageTk.PhotoImage(imageM)
            imageML = Tk.Label(image=imageMP)
            imageML.image = imageMP
            imageML.pack()
            imageML.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
     
     
     
     
     
        #Application de l'effet miroir
    def Miroir():
     
        global imageM
        imageM = Image.new('RGB',(L,H))
        for y in range (0,H,1):
            for x in range (0,L,1):
                p = image1.getpixel((x,y))
                imageM.putpixel ( ( -x+L-1,y) ,p)
     
        global image1
        image1 = imageM
     
     
        global P
        P = 1+P
        global Ps
        Ps = P
     
        global tableau
        tableau[P] = imageM
     
        if (L>w) and (H>h):
     
            image2 = imageM.resize([int(half*t) for t in imageM.size])
            imageP = ImageTk.PhotoImage(image2)
            imageL = Tk.Label(image=imageP)
            imageL.image = imageP
            imageL.pack()
            imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
        else:
            imageMP = ImageTk.PhotoImage(imageM)
            imageML = Tk.Label(image=imageMP)
            imageML.image = imageMP
            imageML.pack()
            imageML.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
     
     
     
        #Modification des pixels
    def MiroirColle():
     
        global imageM
        imageM = Image.new('RGB',(L,H))
     
        for y in range (0,H,1):
            for x in range (0,L,1):
                p = image1.getpixel((x,y))
                imageM.putpixel((-x+L-1,y) ,p)
                imageM.putpixel((x,y) ,p)
     
        global image1
        image1 = imageM
     
     
        global P
        P = 1+P
        global Ps
        Ps = P
     
        global tableau
        tableau[P] = imageM
     
     
        if (L>w) and (H>h):
     
            image2 = imageM.resize([int(half*t) for t in imageM.size])
            imageP = ImageTk.PhotoImage(image2)
            imageL = Tk.Label(image=imageP)
            imageL.image = imageP
            imageL.pack()
            imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
        else:
            imageMP = ImageTk.PhotoImage(imageM)
            imageML = Tk.Label(image=imageMP)
            imageML.image = imageMP
            imageML.pack()
            imageML.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
     
     
     
    def RetournerColle():
     
        global imageM
        imageM = Image.new('RGB',(L,H))
     
        for y in range (0,H,1):
            for x in range (0,L,1):
                p = image1.getpixel((x,y))
                imageM.putpixel((x,-y+H-1) ,p)
                imageM.putpixel((x,y) ,p)
     
        global image1
        image1 = imageM
     
     
        global P
        P = 1+P
        global Ps
        Ps = P
     
        global tableau
        tableau[P] = imageM
     
     
        if (L>w) and (H>h):
             image2 = imageM.resize([int(half*t) for t in imageM.size])
             imageP = ImageTk.PhotoImage(image2)
             imageL = Tk.Label(image=imageP)
             imageL.image = imageP
             imageL.pack()
             imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
        else:
            imageMP = ImageTk.PhotoImage(imageM)
            imageML = Tk.Label(image=imageMP)
            imageML.image = imageMP
            imageML.pack()
            imageML.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
     
     
     
    def Precedent():
     
        global image1
        global P
        P = P-1
     
        image1 = tableau[P]
     
        if (L>w) and (H>h) and (P>=0):
     
     
            image2 = image1.resize([int(half*t) for t in image1.size])
            imageP = ImageTk.PhotoImage(image2)
            imageL = Tk.Label(image=imageP)
            imageL.image = imageP
            imageL.pack()
            imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
        if (L<=w) and (H<=h) and (P>=0):
     
            imageP = ImageTk.PhotoImage(image1)
            imageL = Tk.Label(image=imageP)
            imageL.image = imageP
            imageL.pack()
            imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
        else:
            P = 0
     
     
    def Suivant():
        global image1
        global P
     
        if (L>w) and (H>h) and (P<Ps):
     
            P = P+1
            image1 = tableau[P]
            image2 = image1.resize([int(half*t) for t in image1.size])
            imageP = ImageTk.PhotoImage(image2)
            imageL = Tk.Label(image=imageP)
            imageL.image = imageP
            imageL.pack()
            imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
        if (L<=w) and (H<=h) and (P<Ps):
     
            P = P+1
            image1 = tableau[P]
            imageP = ImageTk.PhotoImage(image1)
            imageL = Tk.Label(image=imageP)
            imageL.image = imageP
            imageL.pack()
            imageL.place(relx=1, x=-670, y=120, anchor=Tk.N,height=h-100,width=w)
     
        else:
            P = Ps
    ###Sauvegarder image###
    def Sauvegarde():
     
        jpg = options = {}
        options['defaultextension'] = '.jpg'
     
        DossierSauvegarde = filedialog.asksaveasfile('w',**jpg)
     
        imageM.save( DossierSauvegarde.name)
     
     
     
     
    ################################Player########################################
    # Dans cette fonction l'on va créer le lecteur audio pour la musique         #
    # d'ambiance                                                                 #
    ##############################################################################
     
    #Musique de base pour l'ambiance
    def musicBase():
        mixer.music.load('Intermission.mp3')
        textMusic = Label(fenetre, text = 'Intermission-Offspring')
        textMusic.pack()
        textMusic.place(relx=1, x=-2, y=30, anchor=Tk.NE)
     
    #Musique de l'utilisateur pour l'ambiance    
    def ouvrirMusic():
        # ouvrir la music qui sera par la suite jouée et identifiée
        fichier_music = filedialog.askopenfile('r')
        mixer.music.load(fichier_music.name)
        textMusic = Label(fenetre, text = fichier_music.name)
        textMusic.pack()
        textMusic.place(relx=1, x=-2, y=30, anchor=Tk.NE)
     
    def play():
        #Lecture de la musique
        play = mixer.music.play()
        play
     
    def stop():
        #arret de la musique 
        stop = mixer.music.stop()
        stop
     
    def pause():
        #Mise en pause de la musique
        pause = mixer.music.pause()
        pause
     
    #####################Actualisation le la fenetre##############################
    # cette fonction est lancer apres toutes les autres fonctions qui constinuent#
    # l'interface grafique pour actualiser la fenetre et appliquer toutes les    #
    # modifications que nous avons appliqué à cette dernière                     #
    ##############################################################################
    def actualiser():
        fenetre.mainloop()
     
     
    #############################################################################
    #                           Programme principal                             #
    # C'est ici que le programme commence.Nous créons la fènetre de la taille   #
    # de votre écran d'odinateur, puis nous appliquons toutes les fonctionnes   #
    # pour faire notre interface grafique.                                      #
    #############################################################################
     
    mixer.init() 
    fenetre = Tk.Tk()
    w,h = fenetre.winfo_screenwidth(), fenetre.winfo_screenheight()
    fenetre.title('Super Editor') 
    fenetre.geometry("%dx%d+0+0" % (w, h))
    half = 0.2
     
    P = 0
    tableau = []
    for i in range(1000):  
        tableau.append((0,100))
     
     
    boutons()
    musicBase()
    menubar()
    actualiser()
     
    #### Variables ####

Discussions similaires

  1. Algorithme d'un filtre ?
    Par Vince78 dans le forum Algorithmes et structures de données
    Réponses: 17
    Dernier message: 04/09/2002, 15h54
  2. recherche filtre flou gaussien
    Par gimlithedwarf dans le forum Langage
    Réponses: 4
    Dernier message: 01/08/2002, 22h32
  3. TADOTable et filtre
    Par GaL dans le forum C++Builder
    Réponses: 16
    Dernier message: 02/07/2002, 16h52
  4. Filtre passe Bande
    Par Mau dans le forum Algorithmes et structures de données
    Réponses: 4
    Dernier message: 28/06/2002, 17h03
  5. Probleme de filtre dans bdd
    Par scorpiwolf dans le forum C++Builder
    Réponses: 2
    Dernier message: 04/06/2002, 10h43

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo