While performing the Contrast Limited Adaptive Histogram Equalization, I got the following warning message. How to avoid it and what does it indicate?
from skimage import exposure
img_adapteq = exposure.equalize_adapthist(image_gray, clip_limit=0.03)
C:\Users\ugwz\AppData\Local\Continuum\anaconda3\lib\site-packages\skimage\util\dtype.py:135: UserWarning: Possible precision loss when converting from float64 to uint16
.format(dtypeobj_in, dtypeobj_out))