File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 33import warnings
44from typing import TYPE_CHECKING , Any
55
6- import matplotlib .axes
7- import matplotlib .projections .polar
86import numpy as np
97import numpy .typing as npt
108from skimage .color import rgb2gray , rgba2rgb
1412if TYPE_CHECKING :
1513 from typing import TypeAlias
1614
15+ import matplotlib .projections .polar
16+
1717 ImageType : TypeAlias = npt .NDArray [np .integer [Any ] | np .floating [Any ]]
1818 ImageTypeUint64 : TypeAlias = npt .NDArray [np .uint8 ]
1919 ImageTypeFloat64 : TypeAlias = npt .NDArray [np .float64 ]
@@ -262,7 +262,7 @@ def determine_skew_debug_images(
262262 axe1 .set_title ("Corrected angles" )
263263
264264 def fill_polar (
265- axe : matplotlib .projections .polar .PolarAxes ,
265+ axe : " matplotlib.projections.polar.PolarAxes" ,
266266 freqs : dict [np .float64 , int ],
267267 angles : list [float ],
268268 limits : list [tuple [float , float ]],
You can’t perform that action at this time.
0 commit comments