Closedown

This commit is contained in:
x03daop
2015-08-06 14:13:01 +02:00
parent c180ba0765
commit 7a1eb6cd20
-9
View File
@@ -2,9 +2,6 @@ import random
import ch.psi.pshell.dev.Readable.ReadableArray as ReadableArray
class SimulatedOutput(Writable):
def getName(self):
return "SimulatedOutput"
def write(self, value):
pass
@@ -13,9 +10,6 @@ class SimulatedInput(Readable):
def __init__(self):
self.x = 0.0
def getName(self):
return "SimulatedInput"
def read(self):
self.x = self.x + 0.2
noise = (random.random() - 0.5) / 20.0
@@ -39,9 +33,6 @@ def integrate_image():
class ImageIntegrator(ReadableArray):
def getName(self):
return "integration"
def getSize(self):
(width,height) = scienta.getImageSize().tolist()
return width