infer_subc/organelles/nuclei
fixed_infer_nuclei(in_img)
Procedure to infer cellmask from linearly unmixed input, with a fixed set of parameters for each step in the procedure. i.e. "hard coded"
Parameters
in_img
a 3d image containing all the channels
Returns
nuclei_object inferred nuclei
Source code in infer_subc/organelles/nuclei.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
get_nuclei(in_img, meta_dict, out_data_path)
load nucleus if it exists, otherwise calculate and write to ome.tif file
Parameters
in_img
a 3d np.ndarray image of the inferred organelle (labels or boolean)
out_data_path
Path object where tiffs are written to
Returns
exported file name
Source code in infer_subc/organelles/nuclei.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
|
infer_and_export_nuclei(in_img, meta_dict, out_data_path)
infer nuclei and write inferred nuclei to ome.tif file
Parameters
in_img
a 3d np.ndarray image of the inferred organelle (labels or boolean)
out_data_path
Path object where tiffs are written to
Returns
exported file name
Source code in infer_subc/organelles/nuclei.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
infer_nuclei_fromlabel(in_img, nuc_ch, median_sz, gauss_sig, thresh_factor, thresh_min, thresh_max, max_hole_w, small_obj_w)
Procedure to infer nuclei from linearly unmixed input.
Parameters
in_img
a 3d image containing all the channels; np.ndarray
median_sz
width of median filter for signal
gauss_sig
sigma for gaussian smoothing of signal
thresh_factor
adjustment factor for log Li threholding
thresh_min
abs min threhold for log Li threholding
thresh_max
abs max threhold for log Li threholding
max_hole_w
hole filling cutoff for nuclei post-processing0
small_obj_w
minimu object size cutoff for nuclei post-processing
Returns
nuclei_object mask defined extent of NU
Source code in infer_subc/organelles/nuclei.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
|