visualization
create_rgb_mask(mask, color_map, ignore_classes=None, ground_truth_mask=None)
¶
Convert index mask to RGB mask.
Source code in quadra/utils/patch/visualization.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
plot_patch_reconstruction(reconstruction, idx_to_class, class_to_idx, ignore_classes=None, is_polygon=True)
¶
Helper function for plotting the patch reconstruction.
Parameters:
-
reconstruction
(
dict
) –Dict following this structure { "file_path": str, "mask_path": str, "prediction": { "label": str, "points": [{"x": int, "y": int}] } } if is_polygon else { "file_path": str, "mask_path": str, "prediction": np.ndarray }
-
idx_to_class
(
dict[int, str]
) –Dictionary mapping indices to label names
-
class_to_idx
(
dict[str, int]
) –Dictionary mapping class names to indices
-
ignore_classes
(
list[int] | None
, default:None
) –Eventually the classes to not plot
-
is_polygon
(
bool
, default:True
) –Boolean indicating if the prediction is a polygon or a mask.
Returns:
-
Figure
–Matplotlib plot showing predicted patch regions and eventually gt
Source code in quadra/utils/patch/visualization.py
18 19 20 21 22 23 24 25 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 89 90 91 92 93 |
|
plot_patch_results(image, prediction_image, ground_truth_image, class_to_idx, plot_original=True, ignore_classes=None, image_height=10, save_path=None, cmap=None)
¶
Function used to plot the image predicted.
Parameters:
-
prediction_image
(
ndarray
) –The prediction image
-
image
(
ndarray
) –The original image to plot
-
ground_truth_image
(
ndarray | None
) –The ground truth image
-
class_to_idx
(
dict[str, int]
) –Dictionary mapping class names to indices
-
plot_original
(
bool
, default:True
) –Boolean to plot the original image
-
ignore_classes
(
list[int] | None
, default:None
) –The classes to ignore, default is 0
-
image_height
(
int
, default:10
) –The height of the output figure
-
save_path
(
str | None
, default:None
) –The path to save the figure
-
cmap
(
Colormap | None
, default:None
) –The colormap to use. If None, tab20 is used
Returns:
-
Figure
–The matplotlib figure
Source code in quadra/utils/patch/visualization.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
|
show_mask_on_image(image, mask)
¶
Plot mask on top of the original image.
Source code in quadra/utils/patch/visualization.py
96 97 98 99 100 101 102 |
|