Ë
    {�h_   ã            
       óþ  — d Z ddlZddlmZ ej
                  ej                  ej                  ej                  ej                  ej                  ej                  ej                  ej                  ej                  f
ZeD � ci c];  } |  ej                   | «      j"                   ej                   | «      j$                  f“Œ= c} Zej(                  dej*                  dej,                  dej.                  diZej3                  e«       ej5                  «       Zej3                  d„ ej9                  «       D «       «       ej3                  ddd	eej(                     eej.                     d
œ«       dd„Zd„ Zdd„Zyc c} w )z†Vendored code from scikit-image in order to limit the number of dependencies
Extracted from scikit-image/skimage/exposure/exposure.py
é    N)Úwarn)FT)éÿÿÿÿé   c              #   ó>   K  — | ]  \  }}|j                   |f–— Œ y ­w)N)Ú__name__)Ú.0ÚdÚlimitss      úY/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/plotly/express/imshow_utils.pyú	<genexpr>r       s   è ø€ ÒM©I¨A¨v�A—J‘J Ô'ÑMùs   ‚)r   iÿ  )r   iÿ  )r   iÿ?  )Úuint10Úuint12Úuint14ÚboolÚfloatc                 óè   — |dk(  r| j                   j                  }|dk(  r.t        j                  | «      }t        j                  | «      }||fS |t
        v rt
        |   \  }}|rd}||fS |\  }}||fS )af  Return image intensity range (min, max) based on desired value type.

    Parameters
    ----------
    image : array
        Input image.
    range_values : str or 2-tuple, optional
        The image intensity range is configured by this parameter.
        The possible values for this parameter are enumerated below.

        'image'
            Return image min/max as the range.
        'dtype'
            Return min/max of the image's dtype as the range.
        dtype-name
            Return intensity range based on desired `dtype`. Must be valid key
            in `DTYPE_RANGE`. Note: `image` is ignored for this range type.
        2-tuple
            Return `range_values` as min/max intensities. Note that there's no
            reason to use this function if you just want to specify the
            intensity range explicitly. This option is included for functions
            that use `intensity_range` to support all desired range types.

    clip_negative : bool, optional
        If True, clip the negative range (i.e. return 0 for min intensity)
        even if the image dtype allows negative values.
    ÚdtypeÚimager   )r   ÚtypeÚnpÚminÚmaxÚDTYPE_RANGE)r   Úrange_valuesÚclip_negativeÚi_minÚi_maxs        r   Úintensity_ranger   ,   sŠ   € ð8 �wÒØ—{‘{×'Ñ'ˆà�wÒÜ—‘�u“ˆÜ—‘�u“ˆð �%ˆ<Ðð 
œÑ	$Ü" <Ñ0‰ˆˆuÙØˆEð �%ˆ<Ðð $‰ˆˆuØ�%ˆ<Ðó    c                 óR  — t        | «      t        t        t        j                  fv rt        j
                  S t        | «      t         k(  r| S | t        v r 	 t        j                  | «      j                   S t        dt        | «      z  «      ‚# t        $ r t        j                  cY S w xY w)aO  Determine the output dtype for rescale_intensity.

    The dtype is determined according to the following rules:
    - if ``dtype_or_range`` is a dtype, that is the output dtype.
    - if ``dtype_or_range`` is a dtype string, that is the dtype used, unless
      it is not a NumPy data type (e.g. 'uint12' for 12-bit unsigned integers),
      in which case the data type that can contain it will be used
      (e.g. uint16 in this case).
    - if ``dtype_or_range`` is a pair of values, the output data type will be
      float.

    Parameters
    ----------
    dtype_or_range : type, string, or 2-tuple of int/float
        The desired range for the output, expressed as either a NumPy dtype or
        as a (min, max) pair of numbers.

    Returns
    -------
    out_dtype : type
        The data type appropriate for the desired output.
    z]Incorrect value for out_range, should be a valid image data type or a pair of values, got %s.)r   ÚlistÚtupler   ÚndarrayÚfloat_r   r   Ú	TypeErrorÚuint16Ú
ValueErrorÚstr)Údtype_or_ranges    r   Ú_output_dtyper*   W   s˜   € ô. ˆNÓ¤¤e¬R¯Z©ZÐ8Ñ8ä�y‰yÐÜˆNÓœtÒ#àÐØœÑ$ð	ä—8‘8˜NÓ+×0Ñ0Ð0ô
 ð0Ü25°nÓ2EñFó
ð 	
øô	 ò 	ä—9‘9Òð	ús   ÁB
 Â
B&Â%B&c           	      ó*  — |dv r t        | j                  j                  «      }nt        |«      }t        t        t        | |«      «      \  }}t        t        t        | ||dk\  ¬«      «      \  }}t        j                  t        j                  ||||g«      «      rt        dd¬«       t        j                  | ||«      } ||k7  r+| |z
  ||z
  z  } t        j                  | ||z
  z  |z   |¬«      S t        j                  | ||«      j                  |«      S )a  Return image after stretching or shrinking its intensity levels.

    The desired intensity range of the input and output, `in_range` and
    `out_range` respectively, are used to stretch or shrink the intensity range
    of the input image. See examples below.

    Parameters
    ----------
    image : array
        Image array.
    in_range, out_range : str or 2-tuple, optional
        Min and max intensity values of input and output image.
        The possible values for this parameter are enumerated below.

        'image'
            Use image min/max as the intensity range.
        'dtype'
            Use min/max of the image's dtype as the intensity range.
        dtype-name
            Use intensity range based on desired `dtype`. Must be valid key
            in `DTYPE_RANGE`.
        2-tuple
            Use `range_values` as explicit min/max intensities.

    Returns
    -------
    out : array
        Image array after rescaling its intensity. This image is the same dtype
        as the input image.

    Notes
    -----
    .. versionchanged:: 0.17
        The dtype of the output array has changed to match the output dtype, or
        float if the output range is specified by a pair of floats.

    See Also
    --------
    equalize_hist

    Examples
    --------
    By default, the min/max intensities of the input image are stretched to
    the limits allowed by the image's dtype, since `in_range` defaults to
    'image' and `out_range` defaults to 'dtype':

    >>> image = np.array([51, 102, 153], dtype=np.uint8)
    >>> rescale_intensity(image)
    array([  0, 127, 255], dtype=uint8)

    It's easy to accidentally convert an image dtype from uint8 to float:

    >>> 1.0 * image
    array([ 51., 102., 153.])

    Use `rescale_intensity` to rescale to the proper range for float dtypes:

    >>> image_float = 1.0 * image
    >>> rescale_intensity(image_float)
    array([0. , 0.5, 1. ])

    To maintain the low contrast of the original, use the `in_range` parameter:

    >>> rescale_intensity(image_float, in_range=(0, 255))
    array([0.2, 0.4, 0.6])

    If the min/max value of `in_range` is more/less than the min/max image
    intensity, then the intensity levels are clipped:

    >>> rescale_intensity(image_float, in_range=(0, 102))
    array([0.5, 1. , 1. ])

    If you have an image with signed integers but want to rescale the image to
    just the positive range, use the `out_range` parameter. In that case, the
    output dtype will be float:

    >>> image = np.array([-10, 0, 10], dtype=np.int8)
    >>> rescale_intensity(image, out_range=(0, 127))
    array([  0. ,  63.5, 127. ])

    To get the desired range with a specific dtype, use ``.astype()``:

    >>> rescale_intensity(image, out_range=(0, 127)).astype(np.int8)
    array([  0,  63, 127], dtype=int8)

    If the input image is constant, the output will be clipped directly to the
    output range:
    >>> image = np.array([130, 130, 130], dtype=np.int32)
    >>> rescale_intensity(image, out_range=(0, 127)).astype(np.int32)
    array([127, 127, 127], dtype=int32)
    )r   r   r   )r   z´One or more intensity levels are NaN. Rescaling will broadcast NaN to the full image. Provide intensity levels yourself to avoid this. E.g. with np.nanmin(image), np.nanmax(image).é   )Ú
stacklevel)r   )r*   r   r   Úmapr   r   r   ÚanyÚisnanr   ÚclipÚasarrayÚastype)r   Úin_rangeÚ	out_rangeÚ	out_dtypeÚiminÚimaxÚominÚomaxs           r   Úrescale_intensityr;   ƒ   s   € ðx Ð&Ñ&Ü! %§+¡+×"2Ñ"2Ó3‰	ä! )Ó,ˆ	ä”UœO¨E°8Ó<Ó=�J€Dˆ$ÜÜŒ˜u iÀÈÁ	ÔKó�J€Dˆ$ô 
‡v�vŒb�h‰h˜˜d D¨$Ð/Ó0Ô1ÜðHð õ		
ô �G‰G�E˜4 Ó&€Eàˆt‚|Ø˜‘ $¨¡+Ñ.ˆÜ�z‰z˜% 4¨$¡;Ñ/°$Ñ6¸iÔHÐHä�w‰w�u˜d DÓ)×0Ñ0°Ó;Ð;r   )r   F)r   r   ) Ú__doc__Únumpyr   Úwarningsr   ÚbyteÚubyteÚshortÚushortÚintcÚuintcÚint_ÚuintÚlonglongÚ	ulonglongÚ_integer_typesÚiinfor   r   Ú_integer_rangesÚbool_Úfloat16Úfloat32Úfloat64Údtype_rangeÚupdateÚcopyr   Úitemsr   r*   r;   )Úts   0r   ú<module>rU      sP  ðñó å ð ‡G�GØ‡H�HØ‡H�HØ‡I�IØ‡G�GØ‡H�HØ‡G�GØ‡G�GØ‡K�KØ‡L�Lð€ð CQÖQ¸Q�1�x�r—x‘x “{—‘¨¨¯©°«¯©Ð8Ñ8ÒQ€à‡H�HˆmØ‡J�J�Ø‡J�J�Ø‡J�J�ð	€ð × Ñ �?Ô #ð ×ÑÓ €Ø × Ñ ÑM¸×9JÑ9JÓ9LÔMÔ MØ × Ñ à Ø Ø Ø˜BŸH™HÑ%Ø˜RŸZ™ZÑ(ñôó(òV)
ôXt<ùò] Rs   ÂA E: