|
- # Copyright 2020 Huawei Technologies Co., Ltd
- #
- # 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.
- # ==============================================================================
- """
- Testing Equalize op in DE
- """
- import numpy as np
-
- import mindspore.dataset.engine as de
- import mindspore.dataset.transforms.vision.py_transforms as F
- from mindspore import log as logger
- from util import visualize_list, diff_mse, save_and_check_md5
-
- DATA_DIR = "../data/dataset/testImageNetData/train/"
-
- GENERATE_GOLDEN = False
-
- def test_equalize(plot=False):
- """
- Test Equalize
- """
- logger.info("Test Equalize")
-
- # Original Images
- ds = de.ImageFolderDatasetV2(dataset_dir=DATA_DIR, shuffle=False)
-
- transforms_original = F.ComposeOp([F.Decode(),
- F.Resize((224, 224)),
- F.ToTensor()])
-
- ds_original = ds.map(input_columns="image",
- operations=transforms_original())
-
- ds_original = ds_original.batch(512)
-
- for idx, (image, _) in enumerate(ds_original):
- if idx == 0:
- images_original = np.transpose(image, (0, 2, 3, 1))
- else:
- images_original = np.append(images_original,
- np.transpose(image, (0, 2, 3, 1)),
- axis=0)
-
- # Color Equalized Images
- ds = de.ImageFolderDatasetV2(dataset_dir=DATA_DIR, shuffle=False)
-
- transforms_equalize = F.ComposeOp([F.Decode(),
- F.Resize((224, 224)),
- F.Equalize(),
- F.ToTensor()])
-
- ds_equalize = ds.map(input_columns="image",
- operations=transforms_equalize())
-
- ds_equalize = ds_equalize.batch(512)
-
- for idx, (image, _) in enumerate(ds_equalize):
- if idx == 0:
- images_equalize = np.transpose(image, (0, 2, 3, 1))
- else:
- images_equalize = np.append(images_equalize,
- np.transpose(image, (0, 2, 3, 1)),
- axis=0)
-
- num_samples = images_original.shape[0]
- mse = np.zeros(num_samples)
- for i in range(num_samples):
- mse[i] = diff_mse(images_equalize[i], images_original[i])
- logger.info("MSE= {}".format(str(np.mean(mse))))
-
- if plot:
- visualize_list(images_original, images_equalize)
-
-
- def test_equalize_md5():
- """
- Test Equalize with md5 check
- """
- logger.info("Test Equalize")
-
- # First dataset
- data1 = de.ImageFolderDatasetV2(dataset_dir=DATA_DIR, shuffle=False)
- transforms = F.ComposeOp([F.Decode(),
- F.Equalize(),
- F.ToTensor()])
-
- data1 = data1.map(input_columns="image", operations=transforms())
- # Compare with expected md5 from images
- filename = "equalize_01_result.npz"
- save_and_check_md5(data1, filename, generate_golden=GENERATE_GOLDEN)
-
-
- if __name__ == "__main__":
- test_equalize(plot=True)
- test_equalize_md5()
|