Salome HOME
Merge 'master' branch into 'V9_dev' branch.
[modules/med.git] / src / MEDCalc / tui / medimages.py
index d6f113399fbe8151022f86ba4e6dbe451b985d3a..ce152d5a3e7515442b7a4f410a06e6fba30fe157 100644 (file)
@@ -1,5 +1,5 @@
 #  -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2015  CEA/DEN, EDF R&D
+# Copyright (C) 2007-2016  CEA/DEN, EDF R&D
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -34,7 +34,7 @@ class FieldBuilder:
         # Load the image file in a numpy array using PIL.
         img=Image.open(imageFilepath)
         imgbw=ImageOps.grayscale(img)
-        # WARN: We keep only the grayscale. Maybe, it could be usefull
+        # WARN: We keep only the grayscale. Maybe, it could be useful
         # to get the RGB scales each on one component of the field.
 
         # Creating a cartesian mesh with a grid of the size of the image
@@ -53,7 +53,7 @@ class FieldBuilder:
     def createMesh(self, meshname, sizeX, sizeY):
         """
         Creating a cartesian mesh with a grid of the size of the image.
-        sizeX and sizeY should be respectively the width and heigth of the
+        sizeX and sizeY should be respectively the width and height of the
         image.
         """
         # >>>
@@ -83,10 +83,10 @@ class FieldBuilder:
         coordsY.setValues(arrY,nbNodesY,1)
 
         cmesh.setCoords(coordsX,coordsY)
-        print "Imagem mesh dimension: %d"%cmesh.getSpaceDimension()
+        print("Imagem mesh dimension: %d"%cmesh.getSpaceDimension())
 
         # WARN: In the current state of development of MEDLoader, only
-        # unstructured meshes are supported for writting function in med
+        # unstructured meshes are supported for writing function in med
         # files. We just have to convert the cartesian mesh in an unstructured
         # mesh before creating the field.
         umesh=cmesh.buildUnstructured();