(self, load_size, channels)
| 10 | class ImageData: |
| 11 | |
| 12 | def __init__(self, load_size, channels): |
| 13 | self.load_size = load_size |
| 14 | self.channels = channels |
| 15 | |
| 16 | def image_processing(self, filename): |
| 17 | x = tf.read_file(filename) |
nothing calls this directly
no outgoing calls
no test coverage detected