mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-01 23:50:46 +08:00
24 lines
618 B
Python
24 lines
618 B
Python
from skimage import transform
|
|
import numpy as np
|
|
from numpy import testing
|
|
|
|
|
|
def test_seam_carving():
|
|
img = np.array([[0, 0, 1, 0, 0],
|
|
[0, 0, 1, 0, 0],
|
|
[0, 0, 1, 0, 0],
|
|
[0, 1, 0, 0, 0],
|
|
[1, 0, 0, 0, 0]], dtype=np.float)
|
|
energy = 1 - img
|
|
|
|
out = transform.seam_carve(img, energy, 'vertical', 1, border=0)
|
|
testing.assert_allclose(out, 0)
|
|
|
|
img = img.T
|
|
out = transform.seam_carve(img, energy, 'horizontal', 1, border=0)
|
|
testing.assert_allclose(out, 0)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
np.testing.run_module_suite()
|