Skip to content

Commit

Permalink
Fix remaining compile error (related to imglib/imglib2-roi#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Aug 28, 2024
1 parent ccb600e commit 07c65b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/imagej/ops/labeling/MergeLabeling.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void compute(final ImgLabeling<L, I> input1,
{
if (mask != null) {
final IterableRegion iterable = Regions.iterable(mask);
final IterableInterval<LabelingType<L>> sample = Regions.sample(iterable,
final IterableInterval<LabelingType<L>> sample = Regions.sample(iterable.inside(),
output);
final RandomAccess<LabelingType<L>> randomAccess = input1.randomAccess();
final RandomAccess<LabelingType<L>> randomAccess2 = input2.randomAccess();
Expand Down

0 comments on commit 07c65b9

Please sign in to comment.