diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f98530869f338d35d111d9f924152a5b72c03e0..db6adac57c222bbe753a1cb447cf8fb1eccf0eb4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # This is the root OTB CMakeLists file. # $Id$ # -CMAKE_MINIMUM_REQUIRED(VERSION 2.4) +CMAKE_MINIMUM_REQUIRED(VERSION 2.6) IF(COMMAND CMAKE_POLICY) CMAKE_POLICY(SET CMP0003 NEW) ENDIF(COMMAND CMAKE_POLICY) diff --git a/Code/IO/otbImageSeriesFileReaderBase.txx b/Code/IO/otbImageSeriesFileReaderBase.txx index 151673c1e06dbab9112b5b7c6162751d98c84be0..0dd26ec541149185c321826e523ffbe59cbf59d9 100644 --- a/Code/IO/otbImageSeriesFileReaderBase.txx +++ b/Code/IO/otbImageSeriesFileReaderBase.txx @@ -285,8 +285,8 @@ ImageSeriesFileReaderBase< TImage, TInternalImage > index[1] = beg_line - 1; SizeType size; - size[0] = end_col - beg_col; - size[1] = end_line - beg_line; + size[0] = end_col - beg_col + 1; + size[1] = end_line - beg_line + 1; RegionType region; region.SetSize( size ); diff --git a/Examples/FeatureExtraction/ComplexMomentImageExample.cxx b/Examples/FeatureExtraction/ComplexMomentImageExample.cxx index 2b957b009a372b4cb080bf3b4a8b546b72f4d891..f3cc4d815269d079ce418ef6b22ddd4bbd2eebfb 100644 --- a/Examples/FeatureExtraction/ComplexMomentImageExample.cxx +++ b/Examples/FeatureExtraction/ComplexMomentImageExample.cxx @@ -43,7 +43,7 @@ #include "otbComplexMomentImageFunction.h" // Software Guide : EndCodeSnippet -int main(int argc, char ** argv ) +int main(int argc, char * argv[] ) { if ( argc != 4 ) { diff --git a/Examples/FeatureExtraction/ComplexMomentPathExample.cxx b/Examples/FeatureExtraction/ComplexMomentPathExample.cxx index 6426d830b8c91cd4937fdd56d124e63210e0cf8e..df3aa3f550f69295ff1090f2dca9933bc9bfd16e 100644 --- a/Examples/FeatureExtraction/ComplexMomentPathExample.cxx +++ b/Examples/FeatureExtraction/ComplexMomentPathExample.cxx @@ -48,7 +48,7 @@ // Software Guide : EndCodeSnippet #include "itkPolyLineParametricPath.h" -int main(int argc, char ** argv ) +int main(int argc, char * argv[] ) { if ( argc != 3 ) { diff --git a/Examples/FeatureExtraction/FlusserMomentImageExample.cxx b/Examples/FeatureExtraction/FlusserMomentImageExample.cxx index 392d5066dab6128701d61055011b0315bb10a21d..35bdfdfe120f5316aec7860af24dcc7803b43639 100644 --- a/Examples/FeatureExtraction/FlusserMomentImageExample.cxx +++ b/Examples/FeatureExtraction/FlusserMomentImageExample.cxx @@ -43,7 +43,7 @@ #include "otbFlusserImageFunction.h" // Software Guide : EndCodeSnippet -int main(int argc, char ** argv ) +int main(int argc, char * argv[] ) { if ( argc != 3 ) { diff --git a/Examples/FeatureExtraction/HuMomentImageExample.cxx b/Examples/FeatureExtraction/HuMomentImageExample.cxx index 075340233a10c06b7223204ae6d3dff00a984e2c..28f0c77f5a0a854f0cd5e4f402ffae5f00d8b606 100644 --- a/Examples/FeatureExtraction/HuMomentImageExample.cxx +++ b/Examples/FeatureExtraction/HuMomentImageExample.cxx @@ -43,7 +43,7 @@ #include "otbHuImageFunction.h" // Software Guide : EndCodeSnippet -int main(int argc, char ** argv ) +int main(int argc, char * argv[] ) { if ( argc != 3 ) { diff --git a/Examples/FeatureExtraction/ThresholdToPointSetExample.cxx b/Examples/FeatureExtraction/ThresholdToPointSetExample.cxx index 674bb719fd6eb14e71ecc008add07d28a0978f8d..b2e27a994ba09a1a93a63c516293f9bd5a3b64a0 100644 --- a/Examples/FeatureExtraction/ThresholdToPointSetExample.cxx +++ b/Examples/FeatureExtraction/ThresholdToPointSetExample.cxx @@ -58,7 +58,7 @@ #include "itkPointSet.h" // Software Guide : EndCodeSnippet -int main(int argc, char ** argv) +int main(int argc, char * argv[]) { if ( argc < 3 ) diff --git a/Examples/IO/ImageReadCastWrite.cxx b/Examples/IO/ImageReadCastWrite.cxx index ee9b387f5dd64f92f47d5a85d572fc84aa271129..a4e5f92c862e921180702dbf4708252b5513b7d5 100644 --- a/Examples/IO/ImageReadCastWrite.cxx +++ b/Examples/IO/ImageReadCastWrite.cxx @@ -56,7 +56,7 @@ #include "otbImage.h" -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { // Verify the number of parameters in the command line if ( argc < 3 ) diff --git a/Examples/IO/ImageReadRegionOfInterestWrite.cxx b/Examples/IO/ImageReadRegionOfInterestWrite.cxx index 2655f3ac7f86fb0aa26eb65dbb0561fb83e739cc..080a1ca00f75237d932a7a61e296bc53ec1d6d6e 100644 --- a/Examples/IO/ImageReadRegionOfInterestWrite.cxx +++ b/Examples/IO/ImageReadRegionOfInterestWrite.cxx @@ -61,7 +61,7 @@ #include "otbImage.h" -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { // Verify the number of parameters in the command line if ( argc < 7 ) diff --git a/Examples/IO/ImageReadWrite.cxx b/Examples/IO/ImageReadWrite.cxx index 49fd705a9a751dd9990c8599ee5e2b0dd735919f..957696bdd0187cd86e1ebd59332adca9edd893f1 100644 --- a/Examples/IO/ImageReadWrite.cxx +++ b/Examples/IO/ImageReadWrite.cxx @@ -63,7 +63,7 @@ #include "otbImage.h" -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { // Verify the number of parameters in the command line if ( argc < 3 ) diff --git a/Examples/IO/MultibandImageReadWrite.cxx b/Examples/IO/MultibandImageReadWrite.cxx index 2a85fb5a2c8443aa112901fda698b0aac1c9f73e..a89b720e3e997f17631a4ed94c6fe6e58512b78c 100644 --- a/Examples/IO/MultibandImageReadWrite.cxx +++ b/Examples/IO/MultibandImageReadWrite.cxx @@ -58,7 +58,7 @@ #include "otbVectorImage.h" -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { // Verify the number of parameters in the command line if ( argc < 3 ) diff --git a/Examples/IO/RGBImageReadWrite.cxx b/Examples/IO/RGBImageReadWrite.cxx index c0657ece98d071e3b43dd419891c5444a8c86656..b628a748a0208c00ad67bf3152ce4aacff214c67 100644 --- a/Examples/IO/RGBImageReadWrite.cxx +++ b/Examples/IO/RGBImageReadWrite.cxx @@ -47,7 +47,7 @@ // Software Guide : EndCodeSnippet -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { // Verify the number of parameters in the command line if ( argc < 3 ) diff --git a/Examples/IO/StreamingImageReadWrite.cxx b/Examples/IO/StreamingImageReadWrite.cxx index 9822229dfd089d2897246e3b3fd4bc50279ca8de..2fe79843922dca0beff705ec2155400d106f31de 100644 --- a/Examples/IO/StreamingImageReadWrite.cxx +++ b/Examples/IO/StreamingImageReadWrite.cxx @@ -67,7 +67,7 @@ #include "otbImage.h" -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { // Verify the number of parameters in the command line if ( argc < 3 ) diff --git a/Examples/Iterators/NeighborhoodIterators2.cxx b/Examples/Iterators/NeighborhoodIterators2.cxx index d0156ec9d0cafda78206c891ab0bff6d79638def..e7878c821cf82014406b6cada7c21abbb665734a 100644 --- a/Examples/Iterators/NeighborhoodIterators2.cxx +++ b/Examples/Iterators/NeighborhoodIterators2.cxx @@ -57,7 +57,7 @@ #include "itkNeighborhoodInnerProduct.h" // Software Guide : EndCodeSnippet -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { if ( argc < 4 ) { diff --git a/Examples/Iterators/NeighborhoodIterators3.cxx b/Examples/Iterators/NeighborhoodIterators3.cxx index 9c75529bc4034c48493b9e5ce3f7f444be8fbd9f..a3a00d91b9f221a2cec4ba6adb38db64223ae4ee 100644 --- a/Examples/Iterators/NeighborhoodIterators3.cxx +++ b/Examples/Iterators/NeighborhoodIterators3.cxx @@ -61,7 +61,7 @@ #include "itkNeighborhoodAlgorithm.h" // Software Guide : EndCodeSnippet -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { if ( argc < 4 ) { diff --git a/Examples/Iterators/NeighborhoodIterators5.cxx b/Examples/Iterators/NeighborhoodIterators5.cxx index 9e9916bae2d7c02302d7724d8bf357505a08d292..19eced546350dd1d3f25e567a687e01188d9e329 100644 --- a/Examples/Iterators/NeighborhoodIterators5.cxx +++ b/Examples/Iterators/NeighborhoodIterators5.cxx @@ -59,7 +59,7 @@ // // Software Guide : EndLatex -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { if ( argc < 4 ) { diff --git a/Examples/Iterators/ShapedNeighborhoodIterators1.cxx b/Examples/Iterators/ShapedNeighborhoodIterators1.cxx index df40678e20ff4d923730b74c7a78bdd384d08889..79dc3d86bae57005ce96c2c65285977434cff897 100644 --- a/Examples/Iterators/ShapedNeighborhoodIterators1.cxx +++ b/Examples/Iterators/ShapedNeighborhoodIterators1.cxx @@ -48,7 +48,7 @@ #include "itkImageRegionIterator.h" // Software Guide : EndCodeSnippet -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { if ( argc < 4 ) { diff --git a/Examples/Visu/VisuExample1.cxx b/Examples/Visu/VisuExample1.cxx index b3990ceabd137eb8000057fadf124d4c6d10f7b0..cf7d2e3d33fcae8a4b02f3bb2d9a4cc38fd86032 100644 --- a/Examples/Visu/VisuExample1.cxx +++ b/Examples/Visu/VisuExample1.cxx @@ -35,7 +35,7 @@ #include "otbImageViewer.h" // Software Guide : EndCodeSnippet -int main( int argc, char ** argv ) +int main( int argc, char * argv[] ) { diff --git a/Testing/Code/MultiScale/otbWaveletTransform.cxx b/Testing/Code/MultiScale/otbWaveletTransform.cxx index b5209af0848f058ad24d0d639354dbe3f29523fe..f1ce9a627863363f5d2e073bce90e1c652b61719 100644 --- a/Testing/Code/MultiScale/otbWaveletTransform.cxx +++ b/Testing/Code/MultiScale/otbWaveletTransform.cxx @@ -34,7 +34,7 @@ #include "otbCommandLineArgumentParser.h" #include "otbCommandProgressUpdate.h" -int otbWaveletTransform( int argc, char ** argv ) +int otbWaveletTransform( int argc, char * argv[] ) { typedef otb::CommandLineArgumentParser ParserType; ParserType::Pointer parser = ParserType::New(); diff --git a/Utilities/otbossim/src/ossim/version-config.cpp b/Utilities/otbossim/src/ossim/version-config.cpp index 2554b2770957947e9543b208499c671693f847b6..17f82c9755bfa2da0c7d11f9271220a763372ad2 100644 --- a/Utilities/otbossim/src/ossim/version-config.cpp +++ b/Utilities/otbossim/src/ossim/version-config.cpp @@ -49,7 +49,6 @@ int main(int argc, char* argv[]) std::string releaseVersion = "0"; std::string::size_type pos1 = std::string::npos; std::string::size_type pos2 = std::string::npos; - std::string::size_type pos3 = std::string::npos; pos1 = versionNumber.find(".", 0); if(pos1 != std::string::npos)