Search in sources :

Example 16 with Shape

use of net.imglib2.algorithm.neighborhood.Shape in project imagej-ops by imagej.

the class NonLinearFiltersTest method before.

/**
 * Initialize images.
 *
 * @throws Exception
 */
@Before
public void before() throws Exception {
    in = generateByteArrayTestImg(true, new long[] { 10, 10 });
    out = generateByteArrayTestImg(false, new long[] { 10, 10 });
    shape = new RectangleShape(1, false);
}
Also used : RectangleShape(net.imglib2.algorithm.neighborhood.RectangleShape) Before(org.junit.Before)

Example 17 with Shape

use of net.imglib2.algorithm.neighborhood.Shape in project imagej-ops by imagej.

the class NonLinearFiltersTest method testMedianFilter.

/**
 * @see MedianFilterOp
 * @see DefaultMedianFilter
 */
@Test
public void testMedianFilter() {
    ops.run(MedianFilterOp.class, out, in, shape, oobFactory);
    ArrayList<ByteType> items = new ArrayList<>();
    NeighborhoodsIterableInterval<ByteType> neighborhoods = shape.neighborhoods(Views.interval(Views.extendMirrorSingle(in), in));
    for (ByteType t : neighborhoods.firstElement()) {
        items.add(t.copy());
    }
    Collections.sort(items);
    assertEquals(items.get(5).get(), out.firstElement().get());
}
Also used : ArrayList(java.util.ArrayList) ByteType(net.imglib2.type.numeric.integer.ByteType) AbstractOpTest(net.imagej.ops.AbstractOpTest) Test(org.junit.Test)

Example 18 with Shape

use of net.imglib2.algorithm.neighborhood.Shape in project imagej-ops by imagej.

the class IntegralCursorTest method testIntegralCursor.

@SuppressWarnings({ "unchecked", "rawtypes" })
@Test
public void testIntegralCursor() {
    Shape rectangleShape = new RectangleShape(1, false);
    IterableInterval<Neighborhood<ByteType>> ii = rectangleShape.neighborhoodsSafe(img);
    Cursor<Neighborhood<ByteType>> cursor = ii.cursor();
    // Manually select the neighborhood that is centered on the image
    cursor.fwd();
    cursor.fwd();
    cursor.fwd();
    cursor.fwd();
    cursor.fwd();
    IntegralCursor<ByteType> integralCursor = new IntegralCursor<>((RectangleNeighborhood) cursor.get());
    assertEquals(integralCursor.next(), new ByteType((byte) 1));
    assertEquals(integralCursor.next(), new ByteType((byte) 2));
    assertEquals(integralCursor.next(), new ByteType((byte) 5));
    assertEquals(integralCursor.next(), new ByteType((byte) 4));
    assertFalse(integralCursor.hasNext());
    integralCursor.reset();
    assertEquals(integralCursor.next(), new ByteType((byte) 1));
    assertEquals(integralCursor.next(), new ByteType((byte) 2));
    assertEquals(integralCursor.next(), new ByteType((byte) 5));
    assertEquals(integralCursor.next(), new ByteType((byte) 4));
    assertFalse(integralCursor.hasNext());
}
Also used : Shape(net.imglib2.algorithm.neighborhood.Shape) RectangleShape(net.imglib2.algorithm.neighborhood.RectangleShape) RectangleShape(net.imglib2.algorithm.neighborhood.RectangleShape) ByteType(net.imglib2.type.numeric.integer.ByteType) Neighborhood(net.imglib2.algorithm.neighborhood.Neighborhood) RectangleNeighborhood(net.imglib2.algorithm.neighborhood.RectangleNeighborhood) Test(org.junit.Test)

Example 19 with Shape

use of net.imglib2.algorithm.neighborhood.Shape in project imagej-ops by imagej.

the class IntegralCursorTest method testIntegralCursorCopyConstructor.

@SuppressWarnings({ "unchecked", "rawtypes" })
@Test
public void testIntegralCursorCopyConstructor() {
    Shape rectangleShape = new RectangleShape(1, false);
    IterableInterval<Neighborhood<ByteType>> ii = rectangleShape.neighborhoodsSafe(img);
    Cursor<Neighborhood<ByteType>> cursor = ii.cursor();
    // Manually select the neighborhood that is centered on the image
    cursor.fwd();
    cursor.fwd();
    cursor.fwd();
    cursor.fwd();
    cursor.fwd();
    IntegralCursor<ByteType> integralCursor = new IntegralCursor<>((RectangleNeighborhood) cursor.get());
    assertEquals(integralCursor.next(), new ByteType((byte) 1));
    assertEquals(integralCursor.next(), new ByteType((byte) 2));
    IntegralCursor<ByteType> integralCursor2 = new IntegralCursor<>(integralCursor);
    assertEquals(integralCursor2.next(), new ByteType((byte) 5));
    assertEquals(integralCursor2.next(), new ByteType((byte) 4));
    assertFalse(integralCursor2.hasNext());
}
Also used : Shape(net.imglib2.algorithm.neighborhood.Shape) RectangleShape(net.imglib2.algorithm.neighborhood.RectangleShape) RectangleShape(net.imglib2.algorithm.neighborhood.RectangleShape) ByteType(net.imglib2.type.numeric.integer.ByteType) Neighborhood(net.imglib2.algorithm.neighborhood.Neighborhood) RectangleNeighborhood(net.imglib2.algorithm.neighborhood.RectangleNeighborhood) Test(org.junit.Test)

Example 20 with Shape

use of net.imglib2.algorithm.neighborhood.Shape in project imagej-ops by imagej.

the class BlackTopHatTest method testListBlackTopHat.

@Test
public void testListBlackTopHat() {
    final List<Shape> shapes = new ArrayList<>();
    shapes.add(new DiamondShape(1));
    shapes.add(new DiamondShape(1));
    shapes.add(new RectangleShape(1, false));
    shapes.add(new HorizontalLineShape(2, 1, false));
    @SuppressWarnings("unchecked") final IterableInterval<ByteType> out1 = (IterableInterval<ByteType>) ops.run(ListBlackTopHat.class, IterableInterval.class, in, shapes);
    final Img<ByteType> out2 = BlackTopHat.blackTopHat(in, shapes, 1);
    assertIterationsEqual(out2, out1);
}
Also used : DiamondShape(net.imglib2.algorithm.neighborhood.DiamondShape) Shape(net.imglib2.algorithm.neighborhood.Shape) RectangleShape(net.imglib2.algorithm.neighborhood.RectangleShape) HorizontalLineShape(net.imglib2.algorithm.neighborhood.HorizontalLineShape) RectangleShape(net.imglib2.algorithm.neighborhood.RectangleShape) DiamondShape(net.imglib2.algorithm.neighborhood.DiamondShape) ArrayList(java.util.ArrayList) IterableInterval(net.imglib2.IterableInterval) ByteType(net.imglib2.type.numeric.integer.ByteType) HorizontalLineShape(net.imglib2.algorithm.neighborhood.HorizontalLineShape) AbstractOpTest(net.imagej.ops.AbstractOpTest) Test(org.junit.Test)

Aggregations

RectangleShape (net.imglib2.algorithm.neighborhood.RectangleShape)26 ByteType (net.imglib2.type.numeric.integer.ByteType)24 Test (org.junit.Test)24 Shape (net.imglib2.algorithm.neighborhood.Shape)23 AbstractOpTest (net.imagej.ops.AbstractOpTest)22 DiamondShape (net.imglib2.algorithm.neighborhood.DiamondShape)20 HorizontalLineShape (net.imglib2.algorithm.neighborhood.HorizontalLineShape)18 ArrayList (java.util.ArrayList)12 IterableInterval (net.imglib2.IterableInterval)11 Img (net.imglib2.img.Img)11 RandomAccessibleInterval (net.imglib2.RandomAccessibleInterval)5 Neighborhood (net.imglib2.algorithm.neighborhood.Neighborhood)4 BitType (net.imglib2.type.logic.BitType)4 FinalInterval (net.imglib2.FinalInterval)3 Interval (net.imglib2.Interval)3 RandomAccess (net.imglib2.RandomAccess)2 RectangleNeighborhood (net.imglib2.algorithm.neighborhood.RectangleNeighborhood)2 LabelingType (net.imglib2.roi.labeling.LabelingType)2 IntType (net.imglib2.type.numeric.integer.IntType)2 ExtendedRandomAccessibleInterval (net.imglib2.view.ExtendedRandomAccessibleInterval)2