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.
|
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()
|