- Oct 27, 2023
-
-
Luc Hermitte authored
and make it compatible with OTB7 and OTB 8
-
- Oct 25, 2023
-
-
Luc Hermitte authored
-
- May 31, 2023
-
-
Luc Hermitte authored
-
- May 30, 2023
-
-
Luc Hermitte authored
This musn't be reset everytime we enter an thread!! WIP: because we still need to use geoid file even if $OTB_GEOID_FILE isn't set
-
Luc Hermitte authored
-
- Sep 14, 2022
-
-
Luc Hermitte authored
-
Luc Hermitte authored
Resolve "Add -mean option to ExtractNormalVector" Closes #6 See merge request !5
-
- Sep 13, 2022
-
-
Luc Hermitte authored
-
- Sep 08, 2022
-
-
Luc Hermitte authored
-
Luc Hermitte authored
-
- Sep 07, 2022
-
-
Luc Hermitte authored
Resolve "Automatically inject NODATA metadata in generated images" Closes #4 See merge request !3
-
Luc Hermitte authored
Merge branch '4-automatically-inject-nodata-metadata-in-generated-images' of gitlab.orfeo-toolbox.org:s1-tiling/normlim_sigma0 into 4-automatically-inject-nodata-metadata-in-generated-images
-
Luc Hermitte authored
-
Luc Hermitte authored
Resolve "Adapt DiapOTB SARCartesianMeanEstimation to keep shadows" Closes #2 See merge request !1
-
Luc Hermitte authored
-
- Sep 05, 2022
-
-
Luc Hermitte authored
-
- Sep 01, 2022
-
-
Luc Hermitte authored
-
- Jul 30, 2022
-
-
Luc Hermitte authored
Use a mean on valid all low, high, left and right points, instead of only one point each time. TODO: Add an option to let us choose: one psingle point or mean
-
- Jul 27, 2022
-
-
Luc Hermitte authored
-
- Jul 26, 2022
-
-
Luc Hermitte authored
The conversion to int16 will be done after orthorectofication
-
Luc Hermitte authored
However the output mask receives a 2 instead of 0 (nodata), or 1 (nominally computed)
-
- Jul 25, 2022
-
-
Luc Hermitte authored
-
Luc Hermitte authored
by commenting out logs
-
- Jul 22, 2022
-
-
Luc Hermitte authored
-
Luc Hermitte authored
And check most likelly invalid states first ({0,0,0} is more likelly to happen than nan's)
-
Luc Hermitte authored
Avoid float -> double -> float conversions: works on floats all the way down
-
- Jul 21, 2022
-
-
Luc Hermitte authored
-
- Jul 20, 2022
-
-
Luc Hermitte authored
The dichotomic search doesn't assign a correct value to "last" end-bound when it's close the end of image line
-
- Jul 19, 2022
-
-
Luc Hermitte authored
-
- Jul 15, 2022
-
-
Luc Hermitte authored
- no monotonic progression - ascendant monotonic progression - descendant monotonic progression
-
Luc Hermitte authored
-
Luc Hermitte authored
Instead of iterating over all DEM lines again and again, a dichotomic search is done as long as we know DEM lines progression is monotonic to the exploration. TODO: - test the case where lines are sorted in ascending order - support the case where there is no monotonic progression
-
Luc Hermitte authored
and improve class interface: - remove dependency to `std::iterator` deprecated in C++17 - use class traits internally - add comparison operators
-
Luc Hermitte authored
-
- Jul 12, 2022
-
-
Luc Hermitte authored
-
Luc Hermitte authored
Future algorithms will need to directly access the underlying data. ITK iterators will be an hindrance and as such they will be reaplced with iterators compatibles with C++ standard algorithms
-
Luc Hermitte authored
Replace out-parameters with returned values
-
Luc Hermitte authored
-
- Jul 08, 2022
-
-
Luc Hermitte authored
- cache `m_member_variables` - cache origin value - cache low and hi margins as the internal input pixel type (likelly `float`) in order to avoid operations between `float` and `double` - replace `while` with `for` where iterating...
-
Luc Hermitte authored
micro optim: - memorize `m_member_variables`, - move invariants out of loop, - remove branch
-