Support #1314 » main_stitcher.py
| 1 |
#!/usr/bin/env python
|
|---|---|
| 2 |
# -*- coding: utf-8 -*-
|
| 3 |
# ˅
|
| 4 |
from config import Config |
| 5 |
from display_img import DisplayImg |
| 6 |
|
| 7 |
|
| 8 |
# ˄
|
| 9 |
|
| 10 |
|
| 11 |
class MainStitcher(object): |
| 12 |
# ˅
|
| 13 |
|
| 14 |
# ˄
|
| 15 |
|
| 16 |
def __init__(self, side, config, dImg): |
| 17 |
|
| 18 |
self.__side = side |
| 19 |
|
| 20 |
self.__displayImg = dImg |
| 21 |
|
| 22 |
self.__config = config |
| 23 |
|
| 24 |
# ˅
|
| 25 |
pass
|
| 26 |
# ˄
|
| 27 |
|
| 28 |
def display(self, img): |
| 29 |
# ˅
|
| 30 |
pass
|
| 31 |
# ˄
|
| 32 |
|
| 33 |
# ˅
|
| 34 |
|
| 35 |
# ˄
|
| 36 |
|
| 37 |
|
| 38 |
# ˅
|
| 39 |
|
| 40 |
# ˄
|