Exemplo n.º 1
0
def test_uint16():
    im16, eroded16, dilated16, opened16, closed16 = map(
        img_as_uint, [im, eroded, dilated, opened, closed])
    cp.testing.assert_allclose(grey.erosion(im16), eroded16)
    cp.testing.assert_allclose(grey.dilation(im16), dilated16)
    cp.testing.assert_allclose(grey.opening(im16), opened16)
    cp.testing.assert_allclose(grey.closing(im16), closed16)
Exemplo n.º 2
0
def test_discontiguous_out_array():
    # fmt: off
    image = cp.array([[5, 6, 2], [7, 2, 2], [3, 5, 1]], cp.uint8)
    # fmt: on
    out_array_big = cp.zeros((5, 5), cp.uint8)
    out_array = out_array_big[::2, ::2]
    # fmt: off
    expected_dilation = cp.array(
        [[7, 0, 6, 0, 6], [0, 0, 0, 0, 0], [7, 0, 7, 0, 2], [0, 0, 0, 0, 0],
         [7, 0, 5, 0, 5]], cp.uint8)
    expected_erosion = cp.array(
        [[5, 0, 2, 0, 2], [0, 0, 0, 0, 0], [2, 0, 2, 0, 1], [0, 0, 0, 0, 0],
         [3, 0, 1, 0, 1]], cp.uint8)
    # fmt: on
    grey.dilation(image, out=out_array)
    cp.testing.assert_array_equal(out_array_big, expected_dilation)
    grey.erosion(image, out=out_array)
    cp.testing.assert_array_equal(out_array_big, expected_erosion)
Exemplo n.º 3
0
 def test_dilate_erode_symmetry(self):
     for s in self.selems:
         c = grey.erosion(self.black_pixel, s)
         d = grey.dilation(self.white_pixel, s)
         assert cp.all(c == (255 - d))
Exemplo n.º 4
0
def test_float():
    cp.testing.assert_allclose(grey.erosion(im), eroded)
    cp.testing.assert_allclose(grey.dilation(im), dilated)
    cp.testing.assert_allclose(grey.opening(im), opened)
    cp.testing.assert_allclose(grey.closing(im), closed)
Exemplo n.º 5
0
def test_binary_dilation():
    strel = selem.square(3)
    binary_res = binary.binary_dilation(bw_img, strel)
    grey_res = img_as_bool(grey.dilation(bw_img, strel))
    testing.assert_array_equal(binary_res, grey_res)