2016-11-29 2 views
0

Я работаю с сценарием NDVI, который я не писал, и я пытаюсь запустить его. Проблема, с которой он сталкивается, - это старая ошибка типа: Невозможно преобразовать объект байтов в str неявно. Я никогда не видел пакет структур до вчерашнего дня, и после довольно много исследований я понимаю концепцию в целом, но не совсем конкретно.Упаковка и распаковка Структуры файлов GTiff

Я имею дело с tiff-файлами и пытается создать изображение NDVI. Вот пример кода. Если бы кто-нибудь мог помочь мне понять это немного больше и помочь мне решить проблему, я бы очень признателен!

## The function which loops through the input image and 
## calculates the output NDVI value to be outputted. 
def calcNDVI(self, filePath, outFilePath): 

    # Open the inputted dataset 
    dataset = gdal.Open(filePath, gdal.GA_ReadOnly) 

    # Check the dataset successfully opened 
    if dataset is None: 
     print("The dataset could not be opened") 
     sys.exit(-1) 

    # Create the output dataset 
    outDataset = self.createOutputImage(outFilePath, dataset) 
    # Check the datasets successfully created 
    if outDataset is None: 
     print("Could not create output image") 
     sys.exit(-1) 

    # Get hold of the RED and NIR image bands from the image 
    # Note that the image bands are hard coded to handle 
    # landsat 8 TIFFs that produce separate images per band 
    # which are mosaiced together where 
    # Red = band 1 and NIR = band 2 
    red_band = dataset.GetRasterBand(1) 
    nir_band = dataset.GetRasterBand(2) 

    # Retrieve the number of lines within the image 
    numLines = red_band.YSize 

    # Loop through each line in turn: 
    for line in range(numLines): 
     # Define variable for output line 
     outputLine = '' 

     # Read in data for the current line from the 
     # image band representing the red wavelength 
     red_scanline = red_band.ReadRaster(0, line, red_band.XSize, 1, \ 
       red_band.XSize, 1, gdal.GDT_Float32) 
     # Unpack the line of data to be read as floating point data 
     red_tuple = struct.unpack('f' * red_band.XSize, red_scanline) 

     # Read in data for the current line from the 
     # image band representing the NIR wavelength 
     nir_scanline = nir_band.ReadRaster(0, line, nir_band.XSize, 1, \ 
       nir_band.XSize, 1, gdal.GDT_Float32) 
     # Unpack the line of data to be read as floating point data 
     nir_tuple = struct.unpack('f' * nir_band.XSize, nir_scanline) 

     # Loop through the columns within the image 
     for i in range(len(red_tuple)): 
      # Calculate the NDVI for the current pixel 
      ndvi_lower = (nir_tuple[i] + red_tuple[i]) 
      ndvi_upper = (nir_tuple[i] - red_tuple[i]) 
      ndvi = 0 
      # Be careful of zero divide 
      if ndvi_lower == 0: 
       ndvi = 0 
      else: 
       ndvi = ndvi_upper/ndvi_lower 

      # Add the current pixel to the output line 
      outputLine = outputLine + struct.pack('f', ndvi) 

      # Write the completed line to the output image 
      outDataset.GetRasterBand(1).WriteRaster(0, line, red_band.XSize, 1, \ 
      outputLine, buf_xsize=red_band.XSize, buf_ysize=1, buf_type = gdal.GDT_Float32) 

      # Delete the output line following write 
      del outputLine 

И выход, когда гласил:

outputLine = outputLine + struct.pack('f', ndvi) 

TypeError: Can't convert 'bytes' object to str implicitly 

Опять же, любая помощь очень ценится! Кроме того, есть несколько вопросов на этом сайте и в других местах об этой конкретной ошибке структуры, но ничего, что касается изображений в частности.

Спасибо!

ответ

0

Хорошо, я выяснил ответ, если у кого-то есть аналогичный вопрос, и это остается! Выходная линия, которая вызывает ошибку:

outputLine = outputLine + struct.pack('f', ndvi) 

Может быть исправлена ​​с очень простым решением:

outputLine = outputLine + str(struct.pack('f', ndvi)) 

Python не может преобразовать байты объекта неявно, но вы можете сделать это в явном виде.