@@ -389,7 +389,7 @@ def plot_iris_filter_response(
389389 iris_filter_response : Union [iris_dc .IrisFilterResponse , Dict [str , List [np .ndarray ]]],
390390 space : Literal ["cartesian" , "polar" ] = "cartesian" ,
391391 plot_mask : bool = True ,
392- mask_threshold : float = 0.9 ,
392+ mask_threshold : float = 0.93 ,
393393 vlim : float = 1e-3 ,
394394 ax : Optional [matplotlib .axes ._axes .Axes ] = None ,
395395 ) -> Canvas :
@@ -399,7 +399,7 @@ def plot_iris_filter_response(
399399 iris_filter_response (Union[iris_dc.IrisFilterResponse, Dict[str, List[np.ndarray]]]): iris filter response to visualise.
400400 space (Literal["cartesian", "polar"], optional): Wether to plot the response in cartesian or polar coordinates. Defaults to cartesian.
401401 plot_mask (bool, optional): Wether to overlay the mask response in transparency. Defaults to True.
402- mask_threshold (float, optional): Wether to overlay the mask in transparency. Defaults to 0.9 .
402+ mask_threshold (float, optional): Wether to overlay the mask in transparency. Defaults to 0.93 .
403403 vlim (float, optional): The maximal value displayed in real, imaginary and amplitude graphs. Defaults to 1e-3
404404 ax (Optional[matplotlib.axes._axes.Axes]): ax to plot the figure at. Defaults to None.
405405
@@ -525,7 +525,7 @@ def plot_iris_template_and_normalized_iris(
525525 array = mask_code [:, :, 1 ],
526526 target_shape = normalized_iris .normalized_image .shape [::- 1 ],
527527 )
528- mask_resized [mask_resized > 0.9 ] = np .nan
528+ mask_resized [mask_resized > 0.93 ] = np .nan
529529 axs [2 * i + j ].imshow (mask_resized , alpha = 0.8 , cmap = "gray" , vmin = 0 , vmax = 1 )
530530
531531 return fig , axs
0 commit comments