Files
kornia--kornia/tests/contrib/test_connected_component.py
T
wehub-resource-sync 3a2c66702c
Tests on CPU (scheduled) / check-skip (push) Has been cancelled
Tests on CPU (scheduled) / pre-tests (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-ubuntu (float32) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-ubuntu (float64) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float64, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float64, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.13, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.13, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.11, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.11, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.12, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.12, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.13, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / coverage (push) Has been cancelled
Tests on CPU (scheduled) / typing (push) Has been cancelled
Tests on CPU (scheduled) / tutorials (push) Has been cancelled
Tests on CPU (scheduled) / docs (push) Has been cancelled
Lint / TOML Format (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:49:27 +08:00

113 lines
4.1 KiB
Python

# LICENSE HEADER MANAGED BY add-license-header
#
# Copyright 2018 Kornia Team
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import pytest
import torch
import kornia
from testing.base import BaseTester
class TestConnectedComponents(BaseTester):
def test_smoke(self, device, dtype):
img = torch.rand(1, 1, 3, 4, device=device, dtype=dtype)
out = kornia.contrib.connected_components(img, num_iterations=10)
assert out.shape == (1, 1, 3, 4)
@pytest.mark.parametrize("shape", [(1, 3, 4), (2, 1, 3, 4)])
def test_cardinality(self, device, dtype, shape):
img = torch.rand(shape, device=device, dtype=dtype)
out = kornia.contrib.connected_components(img, num_iterations=10)
assert out.shape == shape
def test_exception(self, device, dtype):
img = torch.rand(1, 1, 3, 4, device=device, dtype=dtype)
with pytest.raises(TypeError) as errinf:
assert kornia.contrib.connected_components(img, 1.0)
assert "Input num_iterations must be a positive integer." in str(errinf)
with pytest.raises(TypeError) as errinf:
assert kornia.contrib.connected_components("not a tensor", 0)
assert "Input imagetype is not a torch.Tensor" in str(errinf)
with pytest.raises(TypeError) as errinf:
assert kornia.contrib.connected_components(img, 0)
assert "Input num_iterations must be a positive integer." in str(errinf)
with pytest.raises(ValueError) as errinf:
img = torch.rand(1, 2, 3, 4, device=device, dtype=dtype)
assert kornia.contrib.connected_components(img, 2)
assert "Input image shape must be (*,1,H,W). Got:" in str(errinf)
def test_value(self, device, dtype):
img = torch.tensor(
[
[
[
[0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
[0.0, 1.0, 1.0, 0.0, 0.0, 1.0],
[0.0, 1.0, 1.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 1.0, 1.0, 0.0],
[0.0, 0.0, 0.0, 1.0, 1.0, 0.0],
]
]
],
device=device,
dtype=dtype,
)
expected = torch.tensor(
[
[
[
[0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
[0.0, 15.0, 15.0, 0.0, 0.0, 12.0],
[0.0, 15.0, 15.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 35.0, 35.0, 0.0],
[0.0, 0.0, 0.0, 35.0, 35.0, 0.0],
]
]
],
device=device,
dtype=dtype,
)
out = kornia.contrib.connected_components(img, num_iterations=10)
self.assert_close(out, expected)
def test_gradcheck(self, device):
B, C, H, W = 2, 1, 4, 4
img = torch.ones(B, C, H, W, device=device, dtype=torch.float64, requires_grad=True)
self.gradcheck(kornia.contrib.connected_components, (img,))
def test_jit(self, device, dtype):
B, C, H, W = 2, 1, 4, 4
img = torch.ones(B, C, H, W, device=device, dtype=dtype)
op = kornia.contrib.connected_components
op_jit = torch.jit.script(op)
self.assert_close(op(img), op_jit(img))
def test_compute_padding():
assert kornia.contrib.compute_padding((6, 6), (2, 2)) == (0, 0, 0, 0)
assert kornia.contrib.compute_padding((7, 7), (2, 2)) == (0, 1, 0, 1)
assert kornia.contrib.compute_padding((8, 7), (4, 4)) == (0, 0, 0, 1)