Skip to content

Commit 601173d

Browse files
committed
Change default name to '0'
1 parent bf2bf5d commit 601173d

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/main/java/org/openmicroscopy/ms/zarr/RequestHandlerForImage.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ public class RequestHandlerForImage implements HttpHandler {
9595

9696
private static final Logger LOGGER = LoggerFactory.getLogger(RequestHandlerForImage.class);
9797

98+
private static final String DEFAULT_LABEL_NAME = "0"; // See omero-cli-zarr
99+
98100
/**
99101
* Contains the dimensionality of an image.
100102
@@ -763,7 +765,7 @@ private void returnImageMasksDirectory(HttpServerResponse response, List<String>
763765
final ImmutableList.Builder<String> contents = ImmutableList.builder();
764766
contents.add(".zattrs");
765767
if (labeledMasks != null) {
766-
contents.add("labeled/");
768+
contents.add(DEFAULT_LABEL_NAME);
767769
}
768770
if (isSplitMasksEnabled) {
769771
for (long roiId : roiIdsWithMask) {
@@ -1140,7 +1142,7 @@ private void returnImageMasksAttrs(HttpServerResponse response, List<String> par
11401142
}
11411143
final List<String> masks = new ArrayList<>(roiIdsWithMask.size() + 1);
11421144
if (labeledMasks != null) {
1143-
masks.add("labeled");
1145+
masks.add(DEFAULT_LABEL_NAME);
11441146
}
11451147
if (isSplitMasksEnabled) {
11461148
for (final long roiId : roiIdsWithMask) {

src/test/java/org/openmicroscopy/ms/zarr/ZarrBinaryMaskTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
package org.openmicroscopy.ms.zarr;
2121

2222
import org.openmicroscopy.ms.zarr.mask.ImageMask;
23+
import static org.openmicroscopy.ms.zarr.RequestHandlerForImage.DEFAULT_LABEL_NAME;
2324

2425
import ome.model.core.Image;
2526
import ome.model.core.Pixels;
@@ -178,7 +179,7 @@ public void testMaskChunks() throws DataFormatException, IOException {
178179
@Test
179180
public void testLabeledMaskChunks() throws DataFormatException, IOException {
180181
final Set<Long> seenLabels = new HashSet<>();
181-
final JsonObject response = getResponseAsJson(image.getId(), "masks", "labeled", ".zarray");
182+
final JsonObject response = getResponseAsJson(image.getId(), "masks", DEFAULT_LABEL_NAME, ".zarray");
182183
final JsonArray shape = response.getJsonArray("shape");
183184
final int maskSizeX = shape.getInteger(4);
184185
final int maskSizeY = shape.getInteger(3);
@@ -192,7 +193,7 @@ public void testLabeledMaskChunks() throws DataFormatException, IOException {
192193
int chunkIndexX = 0;
193194
for (int x = 0; x < maskSizeX; x += chunkSizeX) {
194195
mockSetup();
195-
final byte[] chunkZipped = getResponseAsBytes(image.getId(), "masks", "labeled", 0, 0, 0, chunkIndexY, chunkIndexX);
196+
final byte[] chunkZipped = getResponseAsBytes(image.getId(), "masks", DEFAULT_LABEL_NAME, 0, 0, 0, chunkIndexY, chunkIndexX);
196197
final ByteBuffer chunk = ByteBuffer.wrap(uncompress(chunkZipped));
197198
for (int cx = 0; cx < chunkSizeX; cx++) {
198199
for (int cy = 0; cy < chunkSizeY; cy++) {

0 commit comments

Comments
 (0)