Files
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

329 lines
14 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 TestCropAndResize(BaseTester):
def test_align_corners_true(self, device, dtype):
inp = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
height, width = 2, 3
expected = torch.tensor([[[[6.0000, 6.5000, 7.0000], [10.0000, 10.5000, 11.0000]]]], device=device, dtype=dtype)
boxes = torch.tensor([[[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0]]], device=device, dtype=dtype) # 1x4x2
# default should use align_coners True
patches = kornia.geometry.transform.crop_and_resize(inp, boxes, (height, width))
self.assert_close(patches, expected, rtol=1e-4, atol=1e-4)
def test_align_corners_false(self, device, dtype):
inp = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
height, width = 2, 3
expected = torch.tensor([[[[6.7222, 7.1667, 7.6111], [9.3889, 9.8333, 10.2778]]]], device=device, dtype=dtype)
boxes = torch.tensor([[[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0]]], device=device, dtype=dtype) # 1x4x2
patches = kornia.geometry.transform.crop_and_resize(inp, boxes, (height, width), align_corners=False)
self.assert_close(patches, expected, rtol=1e-4, atol=1e-4)
def test_crop_batch(self, device, dtype):
inp = torch.tensor(
[
[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]],
[[[1.0, 5.0, 9.0, 13.0], [2.0, 6.0, 10.0, 14.0], [3.0, 7.0, 11.0, 15.0], [4.0, 8.0, 12.0, 16.0]]],
],
device=device,
dtype=dtype,
)
expected = torch.tensor(
[[[[6.0, 7.0], [10.0, 11.0]]], [[[7.0, 15.0], [8.0, 16.0]]]], device=device, dtype=dtype
)
boxes = torch.tensor(
[[[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0]], [[1.0, 2.0], [3.0, 2.0], [3.0, 3.0], [1.0, 3.0]]],
device=device,
dtype=dtype,
) # 2x4x2
patches = kornia.geometry.transform.crop_and_resize(inp, boxes, (2, 2))
self.assert_close(patches, expected, rtol=1e-4, atol=1e-4)
def test_crop_batch_broadcast(self, device, dtype):
inp = torch.tensor(
[
[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]],
[[[1.0, 5.0, 9.0, 13.0], [2.0, 6.0, 10.0, 14.0], [3.0, 7.0, 11.0, 15.0], [4.0, 8.0, 12.0, 16.0]]],
],
device=device,
dtype=dtype,
)
expected = torch.tensor(
[[[[6.0, 7.0], [10.0, 11.0]]], [[[6.0, 10.0], [7.0, 11.0]]]], device=device, dtype=dtype
)
boxes = torch.tensor([[[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0]]], device=device, dtype=dtype) # 1x4x2
patches = kornia.geometry.transform.crop_and_resize(inp, boxes, (2, 2))
self.assert_close(patches, expected, rtol=1e-4, atol=1e-4)
def test_gradcheck(self, device):
img = torch.rand(1, 2, 5, 4, device=device, dtype=torch.float64)
boxes = torch.tensor([[[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0]]], device=device, dtype=torch.float64)
self.gradcheck(
kornia.geometry.transform.crop_and_resize, (img, boxes, (4, 2)), requires_grad=(True, False, False)
)
def test_dynamo(self, device, dtype, torch_optimizer):
# Define script
op = kornia.geometry.transform.crop_and_resize
op_optimized = torch_optimizer(op)
# Define input
img = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
boxes = torch.tensor([[[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0]]], device=device, dtype=dtype) # 1x4x2
crop_height, crop_width = 4, 2
actual = op_optimized(img, boxes, (crop_height, crop_width))
expected = op(img, boxes, (crop_height, crop_width))
self.assert_close(actual, expected, rtol=1e-4, atol=1e-4)
class TestCenterCrop(BaseTester):
def test_center_crop_h2_w4(self, device, dtype):
inp = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
expected = torch.tensor([[[[5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0]]]], device=device, dtype=dtype)
out_crop = kornia.geometry.transform.center_crop(inp, (2, 4))
self.assert_close(out_crop, expected, rtol=1e-4, atol=1e-4)
self.assert_close(kornia.geometry.transform.CenterCrop2D((2, 4))(inp), expected, rtol=1e-4, atol=1e-4)
def test_center_crop_h4_w2(self, device, dtype):
inp = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
height, width = 4, 2
expected = torch.tensor([[[[2.0, 3.0], [6.0, 7.0], [10.0, 11.0], [14.0, 15.0]]]], device=device, dtype=dtype)
out_crop = kornia.geometry.transform.center_crop(inp, (height, width))
self.assert_close(out_crop, expected, rtol=1e-4, atol=1e-4)
self.assert_close(kornia.geometry.transform.CenterCrop2D((height, width))(inp), expected, rtol=1e-4, atol=1e-4)
def test_center_crop_h4_w2_batch(self, device, dtype):
inp = torch.tensor(
[
[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]],
[[[1.0, 5.0, 9.0, 13.0], [2.0, 6.0, 10.0, 14.0], [3.0, 7.0, 11.0, 15.0], [4.0, 8.0, 12.0, 16.0]]],
],
device=device,
dtype=dtype,
)
expected = torch.tensor(
[
[[[2.0, 3.0], [6.0, 7.0], [10.0, 11.0], [14.0, 15.0]]],
[[[5.0, 9.0], [6.0, 10.0], [7.0, 11.0], [8.0, 12.0]]],
],
device=device,
dtype=dtype,
)
out_crop = kornia.geometry.transform.center_crop(inp, (4, 2))
self.assert_close(out_crop, expected, rtol=1e-4, atol=1e-4)
self.assert_close(kornia.geometry.transform.CenterCrop2D((4, 2))(inp), expected, rtol=1e-4, atol=1e-4)
def test_gradcheck(self, device):
img = torch.rand(1, 2, 5, 4, device=device, dtype=torch.float64)
self.gradcheck(kornia.geometry.transform.center_crop, (img, (4, 2)))
self.gradcheck(kornia.geometry.transform.CenterCrop2D((4, 2)), (img))
def test_dynamo(self, device, dtype, torch_optimizer):
# Define script
op = kornia.geometry.transform.center_crop
op_script = torch_optimizer(op)
# Define input
img = torch.ones(1, 2, 5, 4, device=device, dtype=dtype)
actual = op_script(img, (4, 2))
expected = op(img, (4, 2))
self.assert_close(actual, expected, rtol=1e-4, atol=1e-4)
class TestCropByBoxes(BaseTester):
def test_crop_by_boxes_no_resizing(self, device, dtype):
inp = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
src = torch.tensor([[[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0]]], device=device, dtype=dtype) # 1x4x2
dst = torch.tensor([[[0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 1.0]]], device=device, dtype=dtype) # 1x4x2
expected = torch.tensor([[[[6.0, 7.0], [10.0, 11.0]]]], device=device, dtype=dtype)
patches = kornia.geometry.transform.crop_by_boxes(inp, src, dst)
self.assert_close(patches, expected)
def test_crop_by_boxes_resizing(self, device, dtype):
inp = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
src = torch.tensor([[[1.0, 1.0], [2.0, 1.0], [2.0, 2.0], [1.0, 2.0]]], device=device, dtype=dtype) # 1x4x2
dst = torch.tensor([[[0.0, 0.0], [2.0, 0.0], [2.0, 1.0], [0.0, 1.0]]], device=device, dtype=dtype) # 1x4x2
expected = torch.tensor([[[[6.0, 6.5, 7.0], [10.0, 10.5, 11.0]]]], device=device, dtype=dtype)
patches = kornia.geometry.transform.crop_by_boxes(inp, src, dst)
self.assert_close(patches, expected, rtol=1e-4, atol=1e-4)
def test_gradcheck(self, device):
dtype = torch.float64
inp = torch.randn((1, 1, 3, 3), device=device, dtype=dtype)
src = torch.tensor([[[1.0, 0.0], [2.0, 0.0], [2.0, 1.0], [1.0, 1.0]]], device=device, dtype=dtype)
dst = torch.tensor([[[0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 1.0]]], device=device, dtype=dtype)
self.gradcheck(kornia.geometry.transform.crop_by_boxes, (inp, src, dst), requires_grad=(True, False, False))
class TestCropByTransform(BaseTester):
def test_crop_by_transform_no_resizing(self, device, dtype):
inp = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
transform = torch.tensor(
[[[1.0, 0.0, -1.0], [0.0, 1.0, -1.0], [0.0, 0.0, 1.0]]], device=device, dtype=dtype
) # 1x3x3
expected = torch.tensor([[[[6.0, 7.0], [10.0, 11.0]]]], device=device, dtype=dtype)
patches = kornia.geometry.transform.crop_by_transform_mat(inp, transform, (2, 2))
self.assert_close(patches, expected)
def test_crop_by_boxes_resizing(self, device, dtype):
inp = torch.tensor(
[[[[1.0, 2.0, 3.0, 4.0], [5.0, 6.0, 7.0, 8.0], [9.0, 10.0, 11.0, 12.0], [13.0, 14.0, 15.0, 16.0]]]],
device=device,
dtype=dtype,
)
transform = torch.tensor(
[[[2.0, 0.0, -2.0], [0.0, 1.0, -1.0], [0.0, 0.0, 1.0]]], device=device, dtype=dtype
) # 1x3x3
expected = torch.tensor([[[[6.0, 6.5, 7.0], [10.0, 10.5, 11.0]]]], device=device, dtype=dtype)
patches = kornia.geometry.transform.crop_by_transform_mat(inp, transform, (2, 3))
self.assert_close(patches, expected, rtol=1e-4, atol=1e-4)
def test_gradcheck(self, device):
inp = torch.randn((1, 1, 3, 3), device=device, dtype=torch.float64)
transform = torch.tensor(
[[[2.0, 0.0, -2.0], [0.0, 1.0, -1.0], [0.0, 0.0, 1.0]]], device=device, dtype=torch.float64
) # 1x3x3
self.gradcheck(
kornia.geometry.transform.crop_by_transform_mat,
(inp, transform, (2, 2)),
requires_grad=(True, False, False),
)
class TestCropByIndices(BaseTester):
def test_crop_by_indices_no_resizing(self, device, dtype):
inp = torch.tensor([[[[1.0, 2.0, 3.0], [4.0, 5.0, 6.0], [7, 8, 9]]]], device=device, dtype=dtype) # 1x3x3
# provide the indices to crop as 4 points
indices = torch.tensor([[[0, 0], [1, 0], [1, 1], [0, 1]]], device=device, dtype=torch.int64)
expected = torch.tensor([[[[1.0, 2.0], [4.0, 5.0]]]], device=device, dtype=dtype)
self.assert_close(kornia.geometry.transform.crop_by_indices(inp, indices), expected)
def test_dynamo(self, device, dtype, torch_optimizer):
# Define script
op = kornia.geometry.transform.crop_by_indices
op_script = torch_optimizer(op)
# Define input
img = torch.ones(1, 2, 5, 4, device=device, dtype=dtype)
actual = op_script(img, torch.tensor([[[0, 0], [1, 0], [1, 1], [0, 1]]]))
expected = op(img, torch.tensor([[[0, 0], [1, 0], [1, 1], [0, 1]]]))
self.assert_close(actual, expected, rtol=1e-4, atol=1e-4)
class TestCropSizeValidation:
"""Tests that crop functions properly reject invalid size arguments."""
def test_crop_and_resize_rejects_wrong_length(self, device, dtype):
inp = torch.rand(1, 1, 4, 4, device=device, dtype=dtype)
boxes = torch.tensor([[[0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 1.0]]], device=device, dtype=dtype)
with pytest.raises(ValueError, match="tuple/list of length 2"):
kornia.geometry.transform.crop_and_resize(inp, boxes, (2, 2, 2))
def test_crop_and_resize_rejects_non_tuple(self, device, dtype):
inp = torch.rand(1, 1, 4, 4, device=device, dtype=dtype)
boxes = torch.tensor([[[0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 1.0]]], device=device, dtype=dtype)
# Passing an int instead of a tuple can raise either ValueError (from an
# explicit validation check) or TypeError (from calling len() on an int),
# depending on which code path runs first inside crop_and_resize.
with pytest.raises((ValueError, TypeError)):
kornia.geometry.transform.crop_and_resize(inp, boxes, 2)
def test_center_crop_rejects_wrong_length(self, device, dtype):
inp = torch.rand(1, 1, 4, 4, device=device, dtype=dtype)
with pytest.raises(ValueError, match="tuple/list of length 2"):
kornia.geometry.transform.center_crop(inp, (2, 2, 2))