Files » main_alpha_gamma_blender.py
| 1 |
#!/usr/bin/env python
|
|---|---|
| 2 |
# -*- coding: utf-8 -*-
|
| 3 |
|
| 4 |
##
|
| 5 |
# @file main_alpha_gamma_blender.py
|
| 6 |
# @brief This script defines the MainAlphaGammaBlender class, which is responsible for blending operations.
|
| 7 |
#
|
| 8 |
|
| 9 |
# ˅
|
| 10 |
from config_reader import ConfigReader |
| 11 |
# ˄
|
| 12 |
|
| 13 |
##
|
| 14 |
# @class MainAlphaGammaBlender
|
| 15 |
# @brief A class for blending operations using alpha and gamma values.
|
| 16 |
#
|
| 17 |
class MainAlphaGammaBlender(object): |
| 18 |
# ˅
|
| 19 |
|
| 20 |
# ˄
|
| 21 |
|
| 22 |
##
|
| 23 |
# @brief MainAlphaGamma Blender Constructor.
|
| 24 |
# This is a constructor for MainAlphaGamma Blender.
|
| 25 |
def __init__(self): |
| 26 |
# Private member variable for ConfigReader
|
| 27 |
self.__configReader = None |
| 28 |
# ˅
|
| 29 |
pass
|
| 30 |
# ˄
|
| 31 |
|
| 32 |
|
| 33 |
# ˅
|
| 34 |
|
| 35 |
# ˄
|
| 36 |
|
| 37 |
# ˅
|
| 38 |
|
| 39 |
# ˄
|