John Mcmaster

Results 69 issues of John Mcmaster

Super hacky way its implemented now. Probably should just automatically parse, not sure why its manual right now

When a sample is really thick, it signal becomes small and the workflow relies on the relatively high bit depth (native 14, averaged to 16) + histogram equalization to get...

Performance optimization

So someone tried to use pyuscope and has a manual scope also attached to the same computer. Ideally have a way to select by model and/or serial number

``` $ GST_DEBUG=3,toupcamsrc:5,GST_TOUPCAMSRC_INFO=Y gst-launch-1.0 toupcamsrc 0:00:00.036867304 275779 0x558db2ee2f80 DEBUG toupcamsrc gsttoupcamsrc.c:168:gst_toupcam_src_class_init: Using gst_toupcam_src_fill Setting pipeline to PAUSED ... 0:00:00.037012792 275779 0x558db2ee2f80 DEBUG toupcamsrc gsttoupcamsrc.c:780:gst_toupcam_src_start: start 0:00:00.037028150 275779 0x558db2ee2f80 INFO toupcamsrc...

A max size (25 MP w/ 64 bpp) is hard coded in. its probably fine but is a little dirty

We've observed several issues with this camera with the official CD + ToupView app (SDK 53.21522.20221011). Ex: autoexposure broke. Similarly pyuscope was relatively quickly crashing, especially at higher frame rates....

sipr0n tiles are generated only for the visible image. However, groupXIV seems to center images in padded squares, inserting many blank tiles. Can you provide some background why you went...

Seems this can be calculated using other parameters like (python example): ``` tiles_max = float(max(width, height)) / tile_size square = int(math.ceil(math.log(tiles_max, 2))) image_size = (2**square) * tile_size ``` If there...