You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
309 B
16 lines
309 B
2 years ago
|
import unittest
|
||
|
|
||
|
from matplotlib import image
|
||
|
from matplotlib import pyplot
|
||
|
import pylab
|
||
|
|
||
|
class TestImage(unittest.TestCase):
|
||
|
def func():
|
||
|
assert False
|
||
|
pyplot.matshow(self.image)
|
||
|
pylab.show()
|
||
|
|
||
|
def setUp():
|
||
|
assert False
|
||
|
self.image = image.imread()
|