本文整理匯總了Python中unittest_utils.create_random_image方法的典型用法代碼示例。如果您正苦於以下問題:Python unittest_utils.create_random_image方法的具體用法?Python unittest_utils.create_random_image怎麽用?Python unittest_utils.create_random_image使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類unittest_utils
的用法示例。
在下文中一共展示了unittest_utils.create_random_image方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_decodes_example_proto
# 需要導入模塊: import unittest_utils [as 別名]
# 或者: from unittest_utils import create_random_image [as 別名]
def test_decodes_example_proto(self):
expected_label = range(37)
expected_image, encoded = unittest_utils.create_random_image(
'PNG', shape=(150, 600, 3))
serialized = unittest_utils.create_serialized_example({
'image/encoded': [encoded],
'image/format': ['PNG'],
'image/class':
expected_label,
'image/unpadded_class':
range(10),
'image/text': ['Raw text'],
'image/orig_width': [150],
'image/width': [600]
})
decoder = fsns.get_split('train', dataset_dir()).decoder
with self.test_session() as sess:
data_tuple = collections.namedtuple('DecodedData', decoder.list_items())
data = sess.run(data_tuple(*decoder.decode(serialized)))
self.assertAllEqual(expected_image, data.image)
self.assertAllEqual(expected_label, data.label)
self.assertEqual(['Raw text'], data.text)
self.assertEqual([1], data.num_of_views)
示例2: test_creates_an_image_of_specified_shape
# 需要導入模塊: import unittest_utils [as 別名]
# 或者: from unittest_utils import create_random_image [as 別名]
def test_creates_an_image_of_specified_shape(self):
image, _ = unittest_utils.create_random_image('PNG', (10, 20, 3))
self.assertEqual(image.shape, (10, 20, 3))
示例3: test_encoded_image_corresponds_to_numpy_array
# 需要導入模塊: import unittest_utils [as 別名]
# 或者: from unittest_utils import create_random_image [as 別名]
def test_encoded_image_corresponds_to_numpy_array(self):
image, encoded = unittest_utils.create_random_image('PNG', (20, 10, 3))
pil_image = PILImage.open(StringIO.StringIO(encoded))
self.assertAllEqual(image, np.array(pil_image))