Lukas Schrangl

Results 5 comments of Lukas Schrangl

> Why enable visibilty what the base-class turns it off? Otherwise the selection widget is not visible after calling `clear`. Visibility is also enabled explicitly in `__init__`. I guess `PolygonSelector`...

The SPE v3 file spec can be found here: ftp://ftp.princetoninstruments.com/Public/Manuals/Princeton%20Instruments/SPE%203.0%20File%20Format%20Specification%20Issue%206%20%284411-0140%29.pdf From what I can see there, all information describing the binary data (data type, frame shape, ROIs, strides, etc.) should...

Recent changes break reading individual frames from files written by `tifffile` with `contiguous=True` ```python with tifffile.TiffWriter("img.tif") as tw: for f in frames: tw.write(f, contiguous=True) ``` which used to be the...

@FirefoxMetzger Thanks for the reply! > So the expected result _should_ be that you get _one_ ndimage instead of a sequence of frames. I guess you are right. However, since...

I just rebased on current main, updated the code to call `update()` only once and added a test. @tacaswell can you have another look? I don't think the failing tests...