Kevin M. Dean

Results 87 comments of Kevin M. Dean

Here is some code that is tested in the debugging mode of Pycharm. I think if we combine with this the `None` referencing mode by default, it would be a...

Here is my latest traceback... ``` exposure_time Configuration Failed 0.0051404 0.005235545112781955 Coupled axes: None exposure_time Configuration Failed 0.0051404 0.005235545112781955 error message: DCAMERR.TIMEOUT error message: DCAMERR.TIMEOUT error message: DCAMERR.TIMEOUT error message:...

@HoneybeeATc and I were discussing this earlier, and had some thoughts on how we could get started without too much pain. - Within the configuration file, specify if a galvo...

More information [here](https://asiimaging.com/docs/commands/ttl)

Quick thoughts... Would probably need to specify if the ASI stage will have triggered axes in the configuration file. If an axis is listed as triggered, we would need to...

Not a whole lot that can be done here since the conversion is so basic. ``` S = image.astype(float) - offset_map.astype(float) S[S < 0] = 0 # clip N =...

Quickly tried some other ways to do the square root operation, but numpy is pretty damn good. 22x faster than the built in python method for a 2.2k x 2.2k...

Ugh. It was clearly coming from the experiment.yaml file, but I got tricked. I think I updated the experiment file when the program was still open. Thus, when we closed...

Given that we are using matplotlib currently to display the image, it is very easy to create an overlay of some sort of analysis with the original data. For example,...

@codeCollision4 One small tweak that would be nice... When the autoscale button is selected, the spinboxes for the user specified minimum and maximum values should be read only, disabled, or...