mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-05 15:01:51 +08:00
Resolved faulty montage2d import.
This commit is contained in:
@@ -58,7 +58,7 @@ def test_grid_shape():
|
||||
height, width = 2, 2
|
||||
arr_in = np.arange(n_images * height * width, dtype=np.float32)
|
||||
arr_in = arr_in.reshape(n_images, height, width)
|
||||
arr_out = montage.montage2d(arr_in, grid_shape=(3,2))
|
||||
arr_out = montage2d(arr_in, grid_shape=(3,2))
|
||||
correct_arr_out = np.array(
|
||||
[[ 0., 1., 4., 5.],
|
||||
[ 2., 3., 6., 7.],
|
||||
|
||||
Reference in New Issue
Block a user