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 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
'''
Code for handling files that are band sequential (BSQ).
'''
from __future__ import absolute_import, division, print_function, unicode_literals
import array
import logging
import numpy as np
import os
import sys
import spectral as spy
from ..utilities.python23 import typecode, tobytes, frombytes
from .spyfile import SpyFile, MemmapFile
byte_typecode = typecode('b')
class BsqFile(SpyFile, MemmapFile):
'''
A class to represent image files stored with bands sequential.
'''
def __init__(self, params, metadata=None):
self.interleave = spy.BSQ
if metadata is None:
metadata = {}
SpyFile.__init__(self, params, metadata)
self._memmap = self._open_memmap('r')
def _open_memmap(self, mode):
logger = logging.getLogger('spectral')
if (os.path.getsize(self.filename) < sys.maxsize):
try:
(R, C, B) = self.shape
return np.memmap(self.filename, dtype=self.dtype, mode=mode,
offset=self.offset, shape=(B, R, C))
except:
logger.debug('Unable to create memmap interface.')
return None
else:
return None
def read_band(self, band, use_memmap=True):
'''Reads a single band from the image.
Arguments:
`band` (int):
Index of band to read.
`use_memmap` (bool, default True):
Specifies whether the file's memmap interface should be used
to read the data. Setting this arg to True only has an effect
if a memmap is being used (i.e., if `img.using_memmap` is True).
Returns:
:class:`numpy.ndarray`
An `MxN` array of values for the specified band.
'''
if self._memmap is not None and use_memmap is True:
data = np.array(self._memmap[band, :, :])
if self.scale_factor != 1:
data = data / float(self.scale_factor)
return data
vals = array.array(byte_typecode)
offset = self.offset + band * self.sample_size * \
self.nrows * self.ncols
f = self.fid
# Pixel format is BSQ, so read the whole band at once.
f.seek(offset, 0)
vals.fromfile(f, self.nrows * self.ncols * self.sample_size)
arr = np.frombuffer(tobytes(vals), dtype=self.dtype)
arr = arr.reshape(self.nrows, self.ncols)
if self.scale_factor != 1:
return arr / float(self.scale_factor)
return arr
def read_bands(self, bands, use_memmap=False):
'''Reads multiple bands from the image.
Arguments:
`bands` (list of ints):
Indices of bands to read.
`use_memmap` (bool, default False):
Specifies whether the file's memmap interface should be used
to read the data. Setting this arg to True only has an effect
if a memmap is being used (i.e., if `img.using_memmap` is True).
Returns:
:class:`numpy.ndarray`
An `MxNxL` array of values for the specified bands. `M` and `N`
are the number of rows & columns in the image and `L` equals
len(`bands`).
'''
if self._memmap is not None and use_memmap is True:
data = np.array(self._memmap[bands, :, :]).transpose((1, 2, 0))
if self.scale_factor != 1:
data = data / float(self.scale_factor)
return data
f = self.fid
arr = np.zeros((self.nrows, self.ncols, len(bands)), dtype=self.dtype)
for j in range(len(bands)):
vals = array.array(byte_typecode)
offset = self.offset + (bands[j]) * self.sample_size \
* self.nrows * self.ncols
# Pixel format is BSQ, so read an entire band at time.
f.seek(offset, 0)
vals.fromfile(f, self.nrows * self.ncols * self.sample_size)
band = np.frombuffer(tobytes(vals), dtype=self.dtype)
arr[:, :, j] = band.reshape(self.nrows, self.ncols)
if self.scale_factor != 1:
return arr / float(self.scale_factor)
return arr
def read_pixel(self, row, col, use_memmap=True):
'''Reads the pixel at position (row,col) from the file.
Arguments:
`row`, `col` (int):
Indices of the row & column for the pixel
`use_memmap` (bool, default True):
Specifies whether the file's memmap interface should be used
to read the data. Setting this arg to True only has an effect
if a memmap is being used (i.e., if `img.using_memmap` is True).
Returns:
:class:`numpy.ndarray`
A length-`B` array, where `B` is the number of image bands.
'''
if self._memmap is not None and use_memmap is True:
data = np.array(self._memmap[:, row, col])
if self.scale_factor != 1:
data = data / float(self.scale_factor)
return data
vals = array.array(byte_typecode)
delta = self.sample_size * (self.nbands - 1)
offset = self.offset + row * self.nbands * self.ncols \
* self.sample_size + col * self.sample_size
f = self.fid
nPixels = self.nrows * self.ncols
ncols = self.ncols
sampleSize = self.sample_size
bandSize = sampleSize * nPixels
rowSize = sampleSize * self.ncols
for i in range(self.nbands):
f.seek(self.offset
+ i * bandSize
+ row * rowSize
+ col * sampleSize, 0)
vals.fromfile(f, sampleSize)
pixel = np.frombuffer(tobytes(vals), dtype=self.dtype)
if self.scale_factor != 1:
return pixel / float(self.scale_factor)
return pixel
def read_subregion(self, row_bounds, col_bounds, bands=None,
use_memmap=True):
'''
Reads a contiguous rectangular sub-region from the image.
Arguments:
`row_bounds` (2-tuple of ints):
(a, b) -> Rows a through b-1 will be read.
`col_bounds` (2-tuple of ints):
(a, b) -> Columnss a through b-1 will be read.
`bands` (list of ints):
Optional list of bands to read. If not specified, all bands
are read.
`use_memmap` (bool, default True):
Specifies whether the file's memmap interface should be used
to read the data. Setting this arg to True only has an effect
if a memmap is being used (i.e., if `img.using_memmap` is True).
Returns:
:class:`numpy.ndarray`
An `MxNxL` array.
'''
if self._memmap is not None and use_memmap is True:
if bands is None:
data = np.array(self._memmap[:, row_bounds[0]: row_bounds[1],
col_bounds[0]: col_bounds[1]])
else:
data = np.array(
self._memmap[bands, row_bounds[0]: row_bounds[1],
col_bounds[0]: col_bounds[1]])
data = data.transpose((1, 2, 0))
if self.scale_factor != 1:
data = data / float(self.scale_factor)
return data
nSubRows = row_bounds[1] - row_bounds[0] # Rows in sub-image
nSubCols = col_bounds[1] - col_bounds[0] # Cols in sub-image
f = self.fid
f.seek(self.offset, 0)
# Increments between bands
if bands is None:
# Read all bands.
bands = list(range(self.nbands))
arr = np.zeros((nSubRows, nSubCols, len(bands)), dtype=self.dtype)
nrows = self.nrows
ncols = self.ncols
sampleSize = self.sample_size
bandSize = nrows * ncols * sampleSize
colStartOffset = col_bounds[0] * sampleSize
rowSize = ncols * sampleSize
rowStartOffset = row_bounds[0] * rowSize
nSubBands = len(bands)
# Pixel format is BSQ
for i in bands:
vals = array.array(byte_typecode)
bandOffset = i * bandSize
for j in range(row_bounds[0], row_bounds[1]):
f.seek(self.offset
+ bandOffset
+ j * rowSize
+ colStartOffset, 0)
vals.fromfile(f, nSubCols * sampleSize)
subArray = np.frombuffer(tobytes(vals),
dtype=self.dtype).reshape((nSubRows,
nSubCols))
arr[:, :, i] = subArray
if self.scale_factor != 1:
return arr / float(self.scale_factor)
return arr
def read_subimage(self, rows, cols, bands=None, use_memmap=False):
'''
Reads arbitrary rows, columns, and bands from the image.
Arguments:
`rows` (list of ints):
Indices of rows to read.
`cols` (list of ints):
Indices of columns to read.
`bands` (list of ints):
Optional list of bands to read. If not specified, all bands
are read.
`use_memmap` (bool, default False):
Specifies whether the file's memmap interface should be used
to read the data. Setting this arg to True only has an effect
if a memmap is being used (i.e., if `img.using_memmap` is True).
Returns:
:class:`numpy.ndarray`
An `MxNxL` array, where `M` = len(`rows`), `N` = len(`cols`),
and `L` = len(bands) (or # of image bands if `bands` == None).
'''
if self._memmap is not None and use_memmap is True:
if bands is None:
data = np.array(self._memmap[:].take(rows, 1).take(cols, 2))
else:
data = np.array(
self._memmap.take(bands, 0).take(rows, 1).take(cols, 2))
data = data.transpose((1, 2, 0))
if self.scale_factor != 1:
data = data / float(self.scale_factor)
return data
nSubRows = len(rows) # Rows in sub-image
nSubCols = len(cols) # Cols in sub-image
d_col = self.sample_size
d_band = d_col * self.ncols
d_row = d_band * self.nbands
f = self.fid
f.seek(self.offset, 0)
# Increments between bands
if bands is None:
# Read all bands.
bands = list(range(self.nbands))
nSubBands = len(bands)
arr = np.zeros((nSubRows, nSubCols, nSubBands), dtype=self.dtype)
offset = self.offset
vals = array.array(byte_typecode)
nrows = self.nrows
ncols = self.ncols
sampleSize = self.sample_size
bandSize = nrows * ncols * sampleSize
sampleSize = self.sample_size
rowSize = ncols * sampleSize
# Pixel format is BSQ
for i in bands:
bandOffset = offset + i * bandSize
for j in rows:
rowOffset = j * rowSize
for k in cols:
f.seek(bandOffset
+ rowOffset
+ k * sampleSize, 0)
vals.fromfile(f, sampleSize)
arr = np.frombuffer(tobytes(vals), dtype=self.dtype)
arr = arr.reshape(nSubBands, nSubRows, nSubCols)
arr = np.transpose(arr, (1, 2, 0))
if self.scale_factor != 1:
return arr / float(self.scale_factor)
return arr
def read_datum(self, i, j, k, use_memmap=True):
'''Reads the band `k` value for pixel at row `i` and column `j`.
Arguments:
`i`, `j`, `k` (integer):
Row, column and band index, respectively.
`use_memmap` (bool, default True):
Specifies whether the file's memmap interface should be used
to read the data. Setting this arg to True only has an effect
if a memmap is being used (i.e., if `img.using_memmap` is True).
Using this function is not an efficient way to iterate over bands or
pixels. For such cases, use readBands or readPixel instead.
'''
if self._memmap is not None and use_memmap is True:
datum = self._memmap[k, i, j]
if self.scale_factor != 1:
datum /= float(self.scale_factor)
return datum
nrows = self.nrows
ncols = self.ncols
sampleSize = self.sample_size
self.fid.seek(self.offset
+ (k * nrows * ncols
+ i * ncols
+ j) * sampleSize, 0)
vals = array.array(byte_typecode)
vals.fromfile(self.fid, sampleSize)
arr = np.frombuffer(tobytes(vals), dtype=self.dtype)
return arr.tolist()[0] / float(self.scale_factor)
|