Lines Matching full:band
362 // iterate over each raster band
379 // get the GDAL Band
380 GDALRasterBand* band = m_dataset->GetRasterBand(c+1);
382 // make sure the image band has the same dimensions as the image
383 if( band->GetXSize() != m_width || band->GetYSize() != m_height ){ return false; }
386 nRows = band->GetYSize();
387 nCols = band->GetXSize();
396 band->RasterIO( GF_Read, 0, y, nCols, 1, scanline, nCols, 1, GDT_Float64, 0, 0);
453 // make sure we have at least one band/channel