i
Describes response of imaging system to a point like object
Currently implemented in Ops (beta)
IJ Macro to crop (to center) and reverse PSF
run("Make Substack...", " slices=28-155");
run("Reverse");
# @OpService ops
# @UIService ui
# @Dataset image
# @Dataset psf
from net.imglib2.meta import ImgPlus
deconvolved=ops.deconvolve().richardsonLucyTV(None, image, psf, [0,0,0], None, \
None, None, None, None, None, 100, 0.0001, True, True);
ui.show("deconvolved", ImgPlus(deconvolved));
Left to right: Original, ImageJ-Ops-RLTV
Original Image
Imagej-ops RLTV 100 iterations
Left to right: Original, ImageJ-Ops-RLTV
Left to right: Original, ImageJ-Ops-RLTV
Christian Dietz |
Mark Hiner |
Curtis Rueden |
Johannes Schindelin |