This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #@ Img image | |
| #@ Double (value=1.0, description="minimum percentile value for normalization") pmin | |
| #@ Double (value=99.8, description="maximum percentile value for normalization") pmax | |
| #@ Double (value=0.479, description="Polygon probability threshold") prob_threshold | |
| #@ Double (value=0.3, description="Non-Maximum Suppression threshold") nms_threshold | |
| #@ Boolean (value=true, description="Set True for GPU inference via WebGPU, False for CPU inference") gpu | |
| #@output Img labels |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //ImageJ macro making a tilted movie out of stack | |
| //uses shear transform + rotation | |
| //Eugene Katrukha katpyxa at gmail.com | |
| requires("1.48h"); | |
| sTitle=getTitle(); | |
| sMovieTitle=sTitle+"_tilt_movie"; | |
| setBatchMode(true); | |
| //Dialog |