12 lines
279 B
Python
12 lines
279 B
Python
import unittest
|
|
from GestureRecognition.SimpleHandRecogniser import SimpleHandRecogniser
|
|
|
|
class TestSimpleHandRecogniser(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
self.image_path = "H:\car\GestureRecognition\IMG_0818.png"
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |