(self, data, image, block_size)
| 9 | |
| 10 | class EntropyThread(threading.Thread): |
| 11 | def __init__(self, data, image, block_size): |
| 12 | super(EntropyThread, self).__init__() |
| 13 | self.data = data |
| 14 | self.image = image |
| 15 | self.block_size = block_size |
| 16 | self.updated = False |
| 17 | |
| 18 | def run(self): |
| 19 | width = self.image.width() |