Project

General

Profile

Files » config_reader.py

Commented config_reader - Bohan HO, 12/14/2023 04:13 PM

 
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3

    
4
##
5
#  @file       config_reader.py
6
#  @brief      This script defines the ConfigReader class for reading configuration parameters.
7
#
8

    
9
##
10
#  @class      ConfigReader
11
#  @brief      A class for reading configuration parameters.
12
#
13
class ConfigReader(object):
14
    # ˅
15
    
16
    # ˄
17

    
18
    ##
19
    #  @fn        __init__(self)
20
    #  @brief     Constructor for ConfigReader.
21
    #
22
    def __init__(self):
23
        # ˅
24
        pass
25
        # ˄
26

    
27
    ##
28
    #  @fn        getProjectedImageWidth(self)
29
    #  @brief     Gets the projected image width.
30
    #  @return    Projected image width.
31
    #
32
    def getProjectedImageWidth(self):
33
        # ˅
34
        pass
35
        # ˄
36

    
37
    ##
38
    #  @fn        getDistanceBetweenProjectors(self)
39
    #  @brief     Gets the distance between projectors.
40
    #  @return    Distance between projectors.
41
    #
42
    def getDistanceBetweenProjectors(self):
43
        # ˅
44
        pass
45
        # ˄
46

    
47
    ##
48
    #  @fn        getImageWidth(self)
49
    #  @brief     Gets the image width.
50
    #  @return    Image width.
51
    #
52
    def getImageWidth(self):
53
        # ˅
54
        pass
55
        # ˄
56

    
57
    ##
58
    #  @fn        getImageHeight(self)
59
    #  @brief     Gets the image height.
60
    #  @return    Image height.
61
    #
62
    def getImageHeight(self):
63
        # ˅
64
        pass
65
        # ˄
66

    
67
    ##
68
    #  @fn        getImageName(self)
69
    #  @brief     Gets the image name.
70
    #  @return    Image name.
71
    #
72
    def getImageName(self):
73
        # ˅
74
        pass
75
        # ˄
76

    
77
    ##
78
    #  @fn        getSide(self)
79
    #  @brief     Gets the side information.
80
    #  @return    Side information.
81
    #
82
    def getSide(self):
83
        # ˅
84
        pass
85
        # ˄
86

    
87
    ##
88
    #  @brief     Gets the gamma value.
89
    #  @return    Gamma value.
90
    #
91
    #
92
    def getGamma(self):
93
        # ˅
94
        pass
95
        # ˄
96

    
97
    # ˅
98
    
99
    # ˄
100

    
101

    
(1-1/9)