Hi Erika, I think that a better investment would be to use python scripts (OSGeo4W provides a python package: http://trac.osgeo.org/osgeo4w/wiki/pkg-python). Your script could be as simple as the one below (could be *largely *improved of course).
Regards, Christophe. #!/usr/bin/python # -*- coding: utf-8 -*- #import system libraries import sys, os #---------main--------- for i in range(1,10): command = "otbApplicationLauncherCommandLine ComputeImagesStatistics ." command += " -il " + "QB_" + str(i) + "_ortho.tif" + " -out " + "EstimateImageStatisticsQB" + str(i) + ".xml" print command os.system(command) -- -- Check the OTB FAQ at http://www.orfeo-toolbox.org/FAQ.html You received this message because you are subscribed to the Google Groups "otb-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/otb-users?hl=en --- You received this message because you are subscribed to the Google Groups "otb-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
