Feature #1100 » config_reader.py
| 1 |
#!/usr/bin/env python
|
|---|---|
| 2 |
# -*- coding: utf-8 -*-
|
| 3 |
# ˅
|
| 4 |
from keyboard_input import KeyboardInput |
| 5 |
|
| 6 |
|
| 7 |
# ˄
|
| 8 |
|
| 9 |
|
| 10 |
class ConfigReader(object): |
| 11 |
# ˅
|
| 12 |
|
| 13 |
# ˄
|
| 14 |
|
| 15 |
def __init__(self): |
| 16 |
|
| 17 |
self.__keyboardInput = None |
| 18 |
|
| 19 |
# ˅
|
| 20 |
pass
|
| 21 |
# ˄
|
| 22 |
|
| 23 |
def getProjectionLength(self): |
| 24 |
# ˅
|
| 25 |
pass
|
| 26 |
# ˄
|
| 27 |
|
| 28 |
def getProjectorHeight(self): |
| 29 |
# ˅
|
| 30 |
pass
|
| 31 |
# ˄
|
| 32 |
|
| 33 |
def getProjectionWidth(self): |
| 34 |
# ˅
|
| 35 |
pass
|
| 36 |
# ˄
|
| 37 |
|
| 38 |
def getProjectionDistance(self): |
| 39 |
# ˅
|
| 40 |
pass
|
| 41 |
# ˄
|
| 42 |
|
| 43 |
def getImageName(self): |
| 44 |
# ˅
|
| 45 |
pass
|
| 46 |
# ˄
|
| 47 |
|
| 48 |
def getSide(self): |
| 49 |
# ˅
|
| 50 |
pass
|
| 51 |
# ˄
|
| 52 |
|
| 53 |
def getImgHeight(self): |
| 54 |
# ˅
|
| 55 |
pass
|
| 56 |
# ˄
|
| 57 |
|
| 58 |
def getImgWidth(self): |
| 59 |
# ˅
|
| 60 |
pass
|
| 61 |
# ˄
|
| 62 |
|
| 63 |
def getOverlap() : int(self): |
| 64 |
# ˅
|
| 65 |
pass
|
| 66 |
# ˄
|
| 67 |
|
| 68 |
# ˅
|
| 69 |
|
| 70 |
# ˄
|
| 71 |
|
| 72 |
|
| 73 |
# ˅
|
| 74 |
|
| 75 |
# ˄
|