source: sasview/DataLoader/readers/tiff_reader.py @ 79ac6f8

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 79ac6f8 was 0997158f, checked in by Gervaise Alina <gervyh@…>, 14 years ago

working on documentation

  • Property mode set to 100644
File size: 3.0 KB
RevLine 
[0997158f]1
2
3#####################################################################
4#This software was developed by the University of Tennessee as part of the
5#Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
6#project funded by the US National Science Foundation.
7#See the license text in license.txt
8#copyright 2008, University of Tennessee
9######################################################################
[daa56d0]10"""
11    Image reader. Untested.
12"""
[11a0319]13
[daa56d0]14
15#TODO: load and check data and orientation of the image (needs rendering)
16
17import math, logging, os
18import numpy
[9d4e502]19from DataLoader.data_info import Data2D
[11a0319]20   
[bb03739]21class Reader:
[11a0319]22    """
[0997158f]23    Example data manipulation
[11a0319]24    """
25    ## File type
[28caa03]26    type_name = "TIF"   
27    ## Wildcards
[daa56d0]28    type = ["TIF files (*.tif)|*.tif",
29            "TIFF files (*.tiff)|*.tiff",
30            ]
[11a0319]31    ## Extension
[28caa03]32    ext  = ['.tif', '.tiff']   
[11a0319]33       
34    def read(self, filename=None):
35        """
[0997158f]36        Open and read the data in a file
37       
38        :param file: path of the file
[11a0319]39        """
[daa56d0]40        try:
[11a0319]41            import Image
[daa56d0]42        except:
43            raise RuntimeError, "tiff_reader: could not load file. Missing Image module."
[11a0319]44       
[daa56d0]45        # Instantiate data object
[9d4e502]46        output = Data2D()
[daa56d0]47        output.filename = os.path.basename(filename)
[11a0319]48           
[daa56d0]49        # Read in the image
50        try:
51            im = Image.open(filename)
52        except :
53            raise  RuntimeError,"cannot open %s"%(filename)
[28caa03]54        data = im.getdata()
[872785f]55
[daa56d0]56        # Initiazed the output data object
[28caa03]57        output.data = numpy.zeros([im.size[0],im.size[1]])
58        output.err_data = numpy.zeros([im.size[0],im.size[1]])
59       
[daa56d0]60        # Initialize
61        x_vals = []
62        y_vals = [] 
63
64        # x and y vectors
[28caa03]65        for i_x in range(im.size[0]):
[daa56d0]66            x_vals.append(i_x)
[11a0319]67           
[28caa03]68        itot = 0
69        for i_y in range(im.size[1]):
[daa56d0]70            y_vals.append(i_y)
[28caa03]71
72        for val in data:
73            try:
74                value = float(val)
75            except:
76                logging.error("tiff_reader: had to skip a non-float point")
77                continue
[8d6440f]78           
[28caa03]79            # Get bin number
80            if math.fmod(itot, im.size[0])==0:
81                i_x = 0
82                i_y += 1
83            else:
84                i_x += 1
[daa56d0]85               
[28caa03]86            output.data[im.size[1]-1-i_y][i_x] = value
87           
88            itot += 1
89               
90        output.xbins      = im.size[0]
91        output.ybins      = im.size[1]
[daa56d0]92        output.x_bins     = x_vals
93        output.y_bins     = y_vals
94        output.xmin       = 0
[28caa03]95        output.xmax       = im.size[0]-1
[daa56d0]96        output.ymin       = 0
[28caa03]97        output.ymax       = im.size[0]-1
[daa56d0]98       
[fe78c7b]99        # Store loading process information
100        output.meta_data['loader'] = self.type_name
[daa56d0]101        return output
[11a0319]102       
[28caa03]103
104if __name__ == "__main__": 
105    reader = Reader()
106    print reader.read("../test/MP_New.sans")
107   
108
Note: See TracBrowser for help on using the repository browser.