denoising.py/code/bmp.py

39 lines
606 B
Python
Raw Normal View History

2015-09-06 12:54:58 +00:00
# ~*~ encoding: utf-8 ~*~ #
###########################
# TRAITEMENT D'IMAGES #
###########################
2015-09-06 14:01:17 +00:00
# classes
2015-09-06 14:28:56 +00:00
from classes import *
2015-09-06 14:01:17 +00:00
2015-09-06 12:54:58 +00:00
import sys
# lecture du fichier
with open( sys.argv[1] ) as file:
binFile = file.read()
# Instanciation du BMPFile
img = BMPFile()
# Parsing
img.parse( binFile );
2015-09-06 12:54:58 +00:00
2015-09-07 08:11:04 +00:00
# MODIFICATIONS des pixels
for line in img.content.map:
for pixel in line:
pixel.r = 255
pixel.g = 75
pixel.b = 255
# Unparsing
img.unparse()
print img.binData
2015-09-07 08:24:28 +00:00
# for line in img.content.map:
# for pixel in line:
# print "rgb(%s, %s, %s)" % (pixel.r, pixel.g, pixel.b)
# print