Skip to content
Snippets Groups Projects
Commit 41edb1dd authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

BUG: set numBands to 1 only if files vector is empty

parent ff45bc1f
No related branches found
No related tags found
No related merge requests found
......@@ -128,14 +128,15 @@ namespace ossimplugins
{
bool commonMetadataRetrieved = false;
double heightSum = 0.0;
int numBands = 1;
int numBands = 0;
ossimDirectory annotationDir( theManifestDirectory.dirCat( "annotation") );
std::vector<ossimFilename> files;
annotationDir.findAllFilesThatMatch(files, ".xml");
std::vector<ossimFilename>::const_iterator it = files.begin();
/* avoid zero value for numBands. This will result in division by zero below */
if( files.size() < 1 ) numBands = 1;
for (int count=0; it != files.end(); ++it, ++count)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment