Project

General

Profile

Support #1314 » main_stitcher.py

*Old code* - Kentaro HARATAKE, 12/18/2024 10:09 PM

 
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
# ˅
4
from config_reader import ConfigReader
5
from mask_creator import MaskCreator
6

    
7

    
8
# ˄
9

    
10

    
11
class MainStitcher(object):
12
    # ˅
13
    
14
    # ˄
15

    
16
    def __init__(self, side, config, img_prcs):
17

    
18
        self.__side = side
19

    
20
        self.__config = None
21

    
22
        # ˅
23
        pass
24
        # ˄
25

    
26
    def Display(self):
27
        # ˅
28
        pass
29
        # ˄
30

    
31
    # ˅
32
    
33
    # ˄
34

    
35

    
36
# ˅
37

    
38
# ˄
(4-4/9)