File tree Expand file tree Collapse file tree 1 file changed +2
-15
lines changed
Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Original file line number Diff line number Diff line change 44module is `PixelMask`. Any type of region of interest selection results in a `PixelMask` object. A mask can be applied
55to any pixel dataset (EITData, PixelMap) with the same shape.
66
7- Several default masks have been predefined. NB: the right side of the patient is to the left side of the EIT image and
8- vice versa.
9-
10- - `VENTRAL_MASK` includes only the first 16 rows;
11- - `DORSAL_MASK` includes only the last 16 rows;
12- - `ANATOMICAL_RIGHT_MASK` includes only the first 16 columns;
13- - `ANATOMICAL_LEFT_MASK` includes only the last 16 columns;
14- - `QUADRANT_1_MASK` includes the top right quadrant;
15- - `QUADRANT_2_MASK` includes the top left quadrant;
16- - `QUADRANT_3_MASK` includes the bottom right quadrant;
17- - `QUADRANT_4_MASK` includes the bottom left quadrant;
18- - `LAYER_1_MASK` includes only the first 8 rows;
19- - `LAYER_2_MASK` includes only the second set of 8 rows;
20- - `LAYER_3_MASK` includes only the third set of 8 rows;
21- - `LAYER_4_MASK` includes only the last 8 rows.
7+ Predefined default masks can be created using `get_geometric_mask()`. These masks are based on common anatomical regions
8+ of interest.
229"""
2310
2411from __future__ import annotations
You can’t perform that action at this time.
0 commit comments