Skip to content

Instantly share code, notes, and snippets.

View PRNicovich's full-sized avatar

Rusty Nicovich PRNicovich

  • Seattle
View GitHub Profile
@PRNicovich
PRNicovich / temporalColormap.py
Created November 10, 2023 05:17
Temporal colormap
import tifffile
import pathlib
import matplotlib.pyplot as plt
import numpy as np
baseFolder = r'C:\Users\user\Desktop'
fileName = r'TIFFStack3DPSF.tif'
bFolder = pathlib.Path(baseFolder)
@PRNicovich
PRNicovich / DAC8568-Arduino
Created October 24, 2019 23:45 — forked from samhutto/DAC8568-Arduino
Arduino Code for DAC8568
/*
DAC8568
http://www.mouser.com/ds/2/405/sbas430d-94281.pdf
Vout = (Din/(2^n))*Vref*Gain
Din is straight binary
0 <= Din <= 65535
n = 16
Gain = 2
=> Vout = (Din/65536)*Vref*2
@PRNicovich
PRNicovich / Micromanager_Matlab_OMERO.m
Created December 9, 2015 02:44 — forked from bramalingam/Micromanager_Matlab_OMERO.m
Integration : Micromanager+Matlab+OMERO
%Multiple sites imaging
%and image analysis(identifying cells with a circularity index>0.8)
%feedback, based on number of cells, change objective to check assay qc
%Author : Balaji.R
%Init
clear all;close all;
%Import packages
import mmcorej.*;