cb3b2a320ae2c94cf94a1fa6f00b4faed5b70209,test/augmentables/test_normalization.py,TestNormalization,test_normalize_segmentation_maps,#TestNormalization#,1190

Before Change


        // array
        // ----
        for dt in [np.dtype("int32"), np.dtype("uint16"), np.dtype(bool)]:
            segmaps_norm = normalization.normalize_segmentation_maps(
                np.zeros((1, 1, 1, 1), dtype=dt) + 1,
                shapes=[np.zeros((1, 1, 3), dtype=np.uint8)]
            )
            assert isinstance(segmaps_norm, list)

After Change


            // NOTE: use np.full(shape, 1, dtype=dt) here and below instead of
            // np.zeros(shape, dtype=dt) + 1, because the latter one converts
            // dtype bool_ to int64.
            segmaps_norm = normalization.normalize_segmentation_maps(
                np.full((1, 1, 1, 1), 1, dtype=dt),
                shapes=[np.zeros((1, 1, 3), dtype=np.uint8)]
            )
            assert isinstance(segmaps_norm, list)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 14

Non-data size: 3

Instances


Project Name: aleju/imgaug
Commit Name: cb3b2a320ae2c94cf94a1fa6f00b4faed5b70209
Time: 2019-08-03
Author: kontakt@ajung.name
File Name: test/augmentables/test_normalization.py
Class Name: TestNormalization
Method Name: test_normalize_segmentation_maps