1
0
Fork 0

return fake image throughout chain

This commit is contained in:
Sean Sube 2023-01-16 11:46:06 -06:00
parent f493246192
commit 402fa4f687
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ class ONNXImage():
def clamp_(self, min, max): def clamp_(self, min, max):
self.source = np.clip(self.source, min, max) self.source = np.clip(self.source, min, max)
return self
def numpy(self): def numpy(self):
return self.source return self.source