This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a change to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git
from 61589faccb Rename `MultiSourceLayout` and `BandAggregateLayout` for
making clear that this is about band aggregate only rather than all
multi-source image.
new acdc884394 Add an image overlay operation in `ImageProcessor`.
new 6a22d7e5e9 If an image does not fit the requirement of the TIFF
specification, reformat the image before to write it in a TIFF file.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../sis/coverage/privy/BandAggregateArgument.java | 2 +-
.../sis/coverage/privy/ColorModelBuilder.java | 9 +-
.../apache/sis/coverage/privy/ImageUtilities.java | 14 +
.../sis/coverage/privy/SampleModelFactory.java | 63 +++-
.../org/apache/sis/feature/internal/Resources.java | 3 +-
.../sis/feature/internal/Resources.properties | 2 +-
.../sis/feature/internal/Resources_fr.properties | 2 +-
.../org/apache/sis/image/BandAggregateImage.java | 4 +-
.../org/apache/sis/image/BandAggregateLayout.java | 2 +-
.../main/org/apache/sis/image/BandSelectImage.java | 6 +-
.../apache/sis/image/BandedSampleConverter.java | 9 +-
.../main/org/apache/sis/image/Colorizer.java | 2 +-
.../main/org/apache/sis/image/ComputedImage.java | 23 +-
.../main/org/apache/sis/image/ImageAdapter.java | 4 +-
.../main/org/apache/sis/image/ImageOverlay.java | 370 +++++++++++++++++++++
.../main/org/apache/sis/image/ImageProcessor.java | 106 +++++-
.../org/apache/sis/image/MultiSourceImage.java | 41 ++-
.../main/org/apache/sis/image/PlanarImage.java | 29 +-
.../main/org/apache/sis/image/RecoloredImage.java | 60 +++-
.../main/org/apache/sis/image/ResampledImage.java | 1 +
.../org/apache/sis/image/StatisticsCalculator.java | 13 +-
.../main/org/apache/sis/image/Visualization.java | 11 +-
.../apache/sis/image/WritableComputedImage.java | 2 +-
.../org/apache/sis/image/ImageOverlayTest.java | 114 +++++++
.../apache/sis/storage/geotiff/FormatModifier.java | 14 +-
.../org/apache/sis/storage/geotiff/Writer.java | 10 +-
.../storage/geotiff/writer/ReformattedImage.java | 58 +++-
.../org/apache/sis/storage/geotiff/WriterTest.java | 24 +-
.../org/apache/sis/storage/DataStoreRegistry.java | 35 +-
.../org/apache/sis/storage/esri/RasterStore.java | 6 +-
.../sis/util/resources/IndexedResourceBundle.java | 19 ++
31 files changed, 931 insertions(+), 127 deletions(-)
create mode 100644
endorsed/src/org.apache.sis.feature/main/org/apache/sis/image/ImageOverlay.java
create mode 100644
endorsed/src/org.apache.sis.feature/test/org/apache/sis/image/ImageOverlayTest.java