80 lines
2.7 KiB
Python
80 lines
2.7 KiB
Python
# Copyright 2021 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 VerticalFlip Python API
|
|
"""
|
|
import cv2
|
|
|
|
import mindspore.dataset as ds
|
|
import mindspore.dataset.vision.c_transforms as c_vision
|
|
|
|
from mindspore import log as logger
|
|
from util import visualize_image, diff_mse
|
|
|
|
DATA_DIR = ["../data/dataset/test_tf_file_3_images/train-0000-of-0001.data"]
|
|
SCHEMA_DIR = "../data/dataset/test_tf_file_3_images/datasetSchema.json"
|
|
IMAGE_FILE = "../data/dataset/apple.jpg"
|
|
|
|
|
|
def test_vertical_flip_pipeline(plot=False):
|
|
"""
|
|
Test VerticalFlip of c_transforms
|
|
"""
|
|
logger.info("test_vertical_flip_pipeline")
|
|
|
|
# First dataset
|
|
dataset1 = ds.TFRecordDataset(DATA_DIR, SCHEMA_DIR, shuffle=False)
|
|
decode_op = c_vision.Decode()
|
|
vertical_flip_op = c_vision.VerticalFlip()
|
|
dataset1 = dataset1.map(operations=decode_op, input_columns=["image"])
|
|
dataset1 = dataset1.map(operations=vertical_flip_op, input_columns=["image"])
|
|
|
|
# Second dataset
|
|
dataset2 = ds.TFRecordDataset(DATA_DIR, SCHEMA_DIR, columns_list=["image"], shuffle=False)
|
|
dataset2 = dataset2.map(operations=decode_op, input_columns=["image"])
|
|
|
|
num_iter = 0
|
|
for data1, data2 in zip(dataset1.create_dict_iterator(num_epochs=1, output_numpy=True),
|
|
dataset2.create_dict_iterator(num_epochs=1, output_numpy=True)):
|
|
if num_iter > 0:
|
|
break
|
|
vertical_flip_ms = data1["image"]
|
|
original = data2["image"]
|
|
vertical_flip_cv = cv2.flip(original, 0)
|
|
mse = diff_mse(vertical_flip_ms, vertical_flip_cv)
|
|
logger.info("vertical_flip_{}, mse: {}".format(num_iter + 1, mse))
|
|
assert mse == 0
|
|
num_iter += 1
|
|
if plot:
|
|
visualize_image(original, vertical_flip_ms, mse, vertical_flip_cv)
|
|
|
|
|
|
def test_vertical_flip_eager():
|
|
"""
|
|
Test VerticalFlip with eager mode
|
|
"""
|
|
logger.info("test_vertical_flip_eager")
|
|
img = cv2.imread(IMAGE_FILE)
|
|
|
|
img_ms = c_vision.VerticalFlip()(img)
|
|
img_cv = cv2.flip(img, 0)
|
|
mse = diff_mse(img_ms, img_cv)
|
|
assert mse == 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
test_vertical_flip_pipeline(plot=False)
|
|
test_vertical_flip_eager()
|