File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 16
16
import quaternion as quat
17
17
import xarray as xr
18
18
from PIL import Image
19
+
19
20
from .utils import download , is_notebook , pushd
20
21
21
22
Image .MAX_IMAGE_PIXELS = None
@@ -1426,18 +1427,18 @@ def array_to_rgba(
1426
1427
if opacity <= 1.0 :
1427
1428
opacity = int (255 * opacity )
1428
1429
rgba [::, ::, 3 ] = opacity
1429
- elif opacitymap is True : # ndarrays are incompatible with bool().
1430
+ elif opacitymap is True : # ndarrays are incompatible with bool().
1430
1431
oarray = (array * 255 ).round ().astype (np .uint8 )
1431
1432
rgba [::, ::, 3 ] = oarray
1432
- elif hasattr (opacitymap , ' __array__' ): # numpy compatible object
1433
+ elif hasattr (opacitymap , " __array__" ): # numpy compatible object
1433
1434
oarray = normalise_array (opacitymap )
1434
1435
if flip :
1435
1436
oarray = np .flipud (np .array (oarray ))
1436
1437
if oarray .max () <= 1.0 :
1437
1438
oarray = (oarray * 255 ).round ().astype (np .uint8 )
1438
1439
rgba [::, ::, 3 ] = oarray
1439
1440
elif opacitymap :
1440
- raise TypeError (' Unknown opacitymap type: Expected bool or ndarray' )
1441
+ raise TypeError (" Unknown opacitymap type: Expected bool or ndarray" )
1441
1442
1442
1443
return rgba
1443
1444
You can’t perform that action at this time.
0 commit comments