(self, ips, snap, img, para = None)
| 42 | view = [(int, 'tol', (0,100), 0, 'tolerance', 'value')] |
| 43 | |
| 44 | def run(self, ips, snap, img, para = None): |
| 45 | pts = find_maximum(self.ips.img, para['tol']) |
| 46 | self.ips.roi = PointRoi([tuple(i) for i in pts[:,::-1]]) |
| 47 | self.ips.update() |
| 48 | |
| 49 | class FindMin(Filter): |
| 50 | title = 'Find Minimum' |
nothing calls this directly
no test coverage detected