Project

General

Profile

Support #1314 » display_img.py

The newest code (Dec 19th, 2024) - Kentaro HARATAKE, 12/19/2024 02:46 PM

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

    
5
# ˄
6

    
7

    
8
class DisplayImg(object):
9
    # ˅
10
    
11
    # ˄
12

    
13
    def __init__(self, self, w, h, d, len, overlap, img, config):
14

    
15
        self.__p_width = w
16

    
17
        self.__p_height = h
18

    
19
        self.__p_distance = d
20

    
21
        self.__p_overlap = overlap
22

    
23
        self.__img = img
24

    
25
        # ˅
26
        pass
27
        # ˄
28

    
29
    def getImg(self):
30
        # ˅
31
        pass
32
        # ˄
33

    
34
    def getWidth(self):
35
        # ˅
36
        pass
37
        # ˄
38

    
39
    def getHeight(self):
40
        # ˅
41
        pass
42
        # ˄
43

    
44
    def getOverlap(self):
45
        # ˅
46
        pass
47
        # ˄
48

    
49
    # ˅
50
    
51
    # ˄
52

    
53

    
54
# ˅
55

    
56
# ˄
(6-6/9)