- Apr 23, 2020
-
-
Julien Osman authored
-
- Sep 17, 2019
-
-
Cédric Traizet authored
-
- May 16, 2019
-
-
Victor Poughon authored
-
- Feb 20, 2019
-
-
Victor Poughon authored
-
- Feb 13, 2019
-
-
Victor Poughon authored
-
- Feb 08, 2019
-
-
Victor Poughon authored
-
- Jan 14, 2019
-
-
Julien Michel authored
-
- Oct 30, 2018
-
-
dmci99 authored
-
- Jul 18, 2018
-
-
Victor Poughon authored
This was done with this script: #!/bin/bash set -eou pipefail # Use C++11 sstream constructor from string # Exclude 'ThirdParty' because it uses ossimFilename type find Modules/ Examples/ -not -iwholename "*ThirdParty*" -type f -print0 | xargs -0 sed -i -E "s/std::ifstream (.*)\((.*)\.c_str\(\)/std::ifstream \1\(\2/" find Modules/ Examples/ -not -iwholename "*ThirdParty*" -type f -print0 | xargs -0 sed -i -E "s/std::ofstream (.*)\((.*)\.c_str\(\)/std::ofstream \1\(\2/" # Use C++11 ::open(const std::string&) of ifstream, ofstream, etc. # Exclude ThirdParty because of ossimFilename type find Modules/ Examples/ -not -iwholename "*ThirdParty*" -type f -print0 | xargs -0 sed -i -E "s/\.open\((.*).c_str\(\)/\.open\(\1/" # No need for c_str when outputing to std::cout and such find Modules/ Examples/ -type f -print0 | xargs -0 sed -i -E "s/\.c_str\(\) ?<</ <</" # Use itk::ExceptionObject::SetDescription and SetLocation string versions find Modules/ Examples/ -type f -print0 | xargs -0 sed -i -E "s/e\.SetDescription\((.*)\.c_str\(\)\)/e\.SetDescription\(\1\)/" find Modules/ Examples/ -type f -print0 | xargs -0 sed -i -E "s/e\.SetLocation\((.*)\.c_str\(\)\)/e\.SetLocation\(\1\)/" # Use itksys::SystemTool:: string versions find Modules/ Examples/ -type f -print0 | xargs -0 sed -i -E "s/itksys::SystemTools::(.*)\((.*)\.c_str\(\)/itksys::SystemTools::\1\(\2/" # Exclude otbLogger because it uses GetCurrentDateTime which does not have a string version git checkout -- Modules/Core/Common/src/otbLogger.cxx # Exclude test/otbOGRLayerStreamStitchingFilter.cxx because there's a double use which is not compatible with the regex git checkout -- Modules/Segmentation/OGRProcessing/test/otbOGRLayerStreamStitchingFilter.cxx
-
- Jun 14, 2018
-
-
dmci99 authored
-
- Nov 01, 2017
-
-
Laurențiu Nicola authored
-
- Aug 02, 2017
-
-
Guillaume Pasero authored
-
- Mar 08, 2017
-
-
Sébastien Dinot authored
-
Sébastien Dinot authored
-
- Sep 15, 2016
-
-
Manuel Grizonnet authored
-
- Sep 22, 2015
-
-
Rashad Kanavath authored
-
- Sep 16, 2015
-
-
Rashad Kanavath authored
Earlier one needs all otb modules to build examples. This single commit activate an example and its related test if and only if all of its dependent module is activated. The check for a module is done using <Module>_LOADED cmake variable. With this change, activating BUILD_EXAMPLES=ON works flawlessly irrespective of your build configuration.
-
- May 04, 2015
-
-
Guillaume Pasero authored
-
- Feb 22, 2015
-
-
Julien Malik authored
-
- Feb 21, 2015
-
-
Julien Malik authored
-
- Feb 19, 2015
-
-
Julien Malik authored
-
- Feb 18, 2015
-
-
Julien Malik authored
-
Julien Malik authored
-
- Jan 08, 2015
-
-
Christophe Palmann authored
-
- Dec 17, 2014
-
-
Guillaume Pasero authored
-
- Oct 28, 2014
-
-
Mickael Savinaud authored
modifications generated via the script FindRedundantHeaderIncludes.py
-
- Jul 13, 2014
-
-
Rashad Kanavath authored
-
- Jan 29, 2014
-
-
Charles Peyrega authored
-
- Nov 15, 2013
-
-
OTB Bot authored
-
Julien Malik authored
-
Julien Malik authored
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. NOTE: MUST USE GNU compliant version of sed Run the following shell code (Adopted from Brad King scripts for CMake): for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' \ | xargs sed -i -f convert.sed \ && rm convert.sed This has been adapted from ITK commit e52dbe7fa476f6283c9b9d1507fca052355113a4
-
Julien Malik authored
This modification is based according to the process described in ITK/Utilities/Maintenance/HowToCreateTheCMakeCaseConversion.txt
-
Julien Malik authored
-
- Jul 04, 2013
-
-
OTB Bot authored
-
Charles Peyrega authored
-
- Jul 03, 2013
-
-
OTB Bot authored
-
Jonathan Guinet authored
-
Charles Peyrega authored
-
- Jul 02, 2013
-
-
Charles Peyrega authored
-
- Jan 28, 2013
-
-
Charles Peyrega authored
ENH: Classification Map Regularization: only input image type is templated in the declaration of the filtertype in the tests, example and application
-