
    cCibA                         S r SSKJr  SSKJrJr  SSKrSSKJ	r	J
r
Jr  SSKJrJrJr  SSKJrJrJrJrJrJrJrJrJrJrJr  SS	KJrJrJr  SS
K J!r!  \RD                  " \#5      r$\!" SS9 " S S\	5      5       r%S/r&g)z Image processor class for LeViT.    )Iterable)OptionalUnionN   )BaseImageProcessorBatchFeatureget_size_dict)get_resize_output_image_sizeresizeto_channel_dimension_format)IMAGENET_DEFAULT_MEANIMAGENET_DEFAULT_STDChannelDimension
ImageInputPILImageResamplinginfer_channel_dimension_formatis_scaled_imagemake_flat_list_of_imagesto_numpy_arrayvalid_imagesvalidate_preprocess_arguments)
TensorTypefilter_out_non_signature_kwargslogging)requires)vision)backendsc            !         ^  \ rS rSrSrS/rSS\R                  SSSSS\\	4
S\
S\\\\4      S	\S
\
S\\\\4      S\
S\\\4   S\
S\\\\\   4      S\\\\\   4      SS4U 4S jjjr\R                  SS4S\R(                  S\\\4   S	\S\\\\4      S\\\\4      S\R(                  4S jjr\" 5       SSSSSSSSSSS\R0                  S4S\S\\
   S\\\\4      S	\\   S
\\
   S\\\\4      S\\
   S\\   S\\
   S\\\\\   4      S\\\\\   4      S\\   S\S\\\\4      S\4S jj5       rSrU =r$ )LevitImageProcessor0   a
  
Constructs a LeViT image processor.

Args:
    do_resize (`bool`, *optional*, defaults to `True`):
        Wwhether to resize the shortest edge of the input to int(256/224 *`size`). Can be overridden by the
        `do_resize` parameter in the `preprocess` method.
    size (`dict[str, int]`, *optional*, defaults to `{"shortest_edge": 224}`):
        Size of the output image after resizing. If size is a dict with keys "width" and "height", the image will
        be resized to `(size["height"], size["width"])`. If size is a dict with key "shortest_edge", the shortest
        edge value `c` is rescaled to `int(c * (256/224))`. The smaller edge of the image will be matched to this
        value i.e, if height > width, then image will be rescaled to `(size["shortest_edge"] * height / width,
        size["shortest_edge"])`. Can be overridden by the `size` parameter in the `preprocess` method.
    resample (`PILImageResampling`, *optional*, defaults to `Resampling.BICUBIC`):
        Resampling filter to use if resizing the image. Can be overridden by the `resample` parameter in the
        `preprocess` method.
    do_center_crop (`bool`, *optional*, defaults to `True`):
        Whether or not to center crop the input to `(crop_size["height"], crop_size["width"])`. Can be overridden
        by the `do_center_crop` parameter in the `preprocess` method.
    crop_size (`Dict`, *optional*, defaults to `{"height": 224, "width": 224}`):
        Desired image size after `center_crop`. Can be overridden by the `crop_size` parameter in the `preprocess`
        method.
    do_rescale (`bool`, *optional*, defaults to `True`):
        Controls whether to rescale the image by the specified scale `rescale_factor`. Can be overridden by the
        `do_rescale` parameter in the `preprocess` method.
    rescale_factor (`int` or `float`, *optional*, defaults to `1/255`):
        Scale factor to use if rescaling the image. Can be overridden by the `rescale_factor` parameter in the
        `preprocess` method.
    do_normalize (`bool`, *optional*, defaults to `True`):
        Controls whether to normalize the image. Can be overridden by the `do_normalize` parameter in the
        `preprocess` method.
    image_mean (`list[int]`, *optional*, defaults to `[0.485, 0.456, 0.406]`):
        Mean to use if normalizing the image. This is a float or list of floats the length of the number of
        channels in the image. Can be overridden by the `image_mean` parameter in the `preprocess` method.
    image_std (`list[int]`, *optional*, defaults to `[0.229, 0.224, 0.225]`):
        Standard deviation to use if normalizing the image. This is a float or list of floats the length of the
        number of channels in the image. Can be overridden by the `image_std` parameter in the `preprocess` method.
pixel_valuesTNgp?	do_resizesizeresampledo_center_crop	crop_size
do_rescalerescale_factordo_normalize
image_mean	image_stdreturnc                   > [         TU ]  " S0 UD6  Ub  UOSS0n[        USS9nUb  UOSSS.n[        USS9nXl        X l        X0l        X@l        XPl        X`l        Xpl	        Xl
        U	b  U	O[        U l        U
b  Xl        g [        U l        g )	Nshortest_edge   Fdefault_to_squareheightwidthr&   
param_name )super__init__r	   r"   r#   r$   r%   r&   r'   r(   r)   r   r*   r   r+   )selfr"   r#   r$   r%   r&   r'   r(   r)   r*   r+   kwargs	__class__s               j/home/james-whalen/.local/lib/python3.13/site-packages/transformers/models/levit/image_processing_levit.pyr9   LevitImageProcessor.__init__[   s     	"6"'tos-CTU;!*!6IsUX<Y	!)D	"	 ,"$,((2(>*DY&/&;AU    imagedata_formatinput_data_formatc                     [        USS9nSU;   a'  [        SUS   -  5      n[        XSUS9n	U	S   U	S   S.nS	U;  d  S
U;  a  [        SUR	                  5        35      e[        U4US	   US
   4UUUS.UD6$ )a  
Resize an image.

If size is a dict with keys "width" and "height", the image will be resized to `(size["height"],
size["width"])`.

If size is a dict with key "shortest_edge", the shortest edge value `c` is rescaled to `int(c * (256/224))`.
The smaller edge of the image will be matched to this value i.e, if height > width, then image will be rescaled
to `(size["shortest_edge"] * height / width, size["shortest_edge"])`.

Args:
    image (`np.ndarray`):
        Image to resize.
    size (`dict[str, int]`):
        Size of the output image after resizing. If size is a dict with keys "width" and "height", the image
        will be resized to (height, width). If size is a dict with key "shortest_edge", the shortest edge value
        `c` is rescaled to int(`c` * (256/224)). The smaller edge of the image will be matched to this value
        i.e, if height > width, then image will be rescaled to (size * height / width, size).
    resample (`PILImageResampling`, *optional*, defaults to `PILImageResampling.BICUBIC`):
        Resampling filter to use when resiizing the image.
    data_format (`str` or `ChannelDimension`, *optional*):
        The channel dimension format of the image. If not provided, it will be the same as the input image.
    input_data_format (`ChannelDimension` or `str`, *optional*):
        The channel dimension format of the input image. If not provided, it will be inferred.
Fr0   r.   g$I$I?)r#   r1   rB   r      r2   r3   r4   zFSize dict must have keys 'height' and 'width' or 'shortest_edge'. Got )r#   r$   rA   rB   )r	   intr
   
ValueErrorkeysr   )
r:   r@   r#   r$   rA   rB   r;   	size_dictr.   output_sizes
             r=   r   LevitImageProcessor.resizez   s    D "$%@	d"d?.C CDM6UVgK $/q>KNKI9$y(@XYbYgYgYiXjk  
H%y'9:#/
 
 	
r?   imagesreturn_tensorsc                 `   Ub  UOU R                   nUb  UOU R                  nUb  UOU R                  nUb  UOU R                  nUb  UOU R                  nU	b  U	OU R
                  n	U
b  U
OU R                  n
Ub  UOU R                  nUb  UOU R                  n[        USS9nUb  UOU R                  n[        USS9n[        U5      n[        U5      (       d  [        S5      e[        UUU	U
UUUUUUS9
  U Vs/ s H  n[        U5      PM     nnU(       a(  [!        US   5      (       a  ["        R%                  S5        Uc  ['        US   5      nU(       a  U Vs/ s H  oR)                  XXNS	9PM     nnU(       a  U Vs/ s H  oR+                  XUS	9PM     nnU(       a  U Vs/ s H  oR-                  XUS	9PM     nnU	(       a  U Vs/ s H  oR/                  XXS	9PM     nnU Vs/ s H  n[1        XUS
9PM     nnSU0n[3        UUS9$ s  snf s  snf s  snf s  snf s  snf s  snf )a  
Preprocess an image or batch of images to be used as input to a LeViT model.

Args:
    images (`ImageInput`):
        Image or batch of images to preprocess. Expects a single or batch of images with pixel values ranging
        from 0 to 255. If passing in images with pixel values between 0 and 1, set `do_rescale=False`.
    do_resize (`bool`, *optional*, defaults to `self.do_resize`):
        Whether to resize the image.
    size (`dict[str, int]`, *optional*, defaults to `self.size`):
        Size of the output image after resizing. If size is a dict with keys "width" and "height", the image
        will be resized to (height, width). If size is a dict with key "shortest_edge", the shortest edge value
        `c` is rescaled to int(`c` * (256/224)). The smaller edge of the image will be matched to this value
        i.e, if height > width, then image will be rescaled to (size * height / width, size).
    resample (`PILImageResampling`, *optional*, defaults to `PILImageResampling.BICUBIC`):
        Resampling filter to use when resiizing the image.
    do_center_crop (`bool`, *optional*, defaults to `self.do_center_crop`):
        Whether to center crop the image.
    crop_size (`dict[str, int]`, *optional*, defaults to `self.crop_size`):
        Size of the output image after center cropping. Crops images to (crop_size["height"],
        crop_size["width"]).
    do_rescale (`bool`, *optional*, defaults to `self.do_rescale`):
        Whether to rescale the image pixel values by `rescaling_factor` - typical to values between 0 and 1.
    rescale_factor (`float`, *optional*, defaults to `self.rescale_factor`):
        Factor to rescale the image pixel values by.
    do_normalize (`bool`, *optional*, defaults to `self.do_normalize`):
        Whether to normalize the image pixel values by `image_mean` and `image_std`.
    image_mean (`float` or `list[float]`, *optional*, defaults to `self.image_mean`):
        Mean to normalize the image pixel values by.
    image_std (`float` or `list[float]`, *optional*, defaults to `self.image_std`):
        Standard deviation to normalize the image pixel values by.
    return_tensors (`str` or `TensorType`, *optional*):
        The type of tensors to return. Can be one of:
            - Unset: Return a list of `np.ndarray`.
            - `TensorType.TENSORFLOW` or `'tf'`: Return a batch of type `tf.Tensor`.
            - `TensorType.PYTORCH` or `'pt'`: Return a batch of type `torch.Tensor`.
            - `TensorType.NUMPY` or `'np'`: Return a batch of type `np.ndarray`.
            - `TensorType.JAX` or `'jax'`: Return a batch of type `jax.numpy.ndarray`.
    data_format (`str` or `ChannelDimension`, *optional*, defaults to `ChannelDimension.FIRST`):
        The channel dimension format for the output image. If unset, the channel dimension format of the input
        image is used. Can be one of:
        - `"channels_first"` or `ChannelDimension.FIRST`: image in (num_channels, height, width) format.
        - `"channels_last"` or `ChannelDimension.LAST`: image in (height, width, num_channels) format.
    input_data_format (`ChannelDimension` or `str`, *optional*):
        The channel dimension format for the input image. If unset, the channel dimension format is inferred
        from the input image. Can be one of:
        - `"channels_first"` or `ChannelDimension.FIRST`: image in (num_channels, height, width) format.
        - `"channels_last"` or `ChannelDimension.LAST`: image in (height, width, num_channels) format.
        - `"none"` or `ChannelDimension.NONE`: image in (height, width) format.
Fr0   r&   r5   zkInvalid image type. Must be of type PIL.Image.Image, numpy.ndarray, torch.Tensor, tf.Tensor or jax.ndarray.)
r'   r(   r)   r*   r+   r%   r&   r"   r#   r$   r   zIt looks like you are trying to rescale already rescaled images. If the input images have pixel values between 0 and 1, set `do_rescale=False` to avoid rescaling them again.)rB   )input_channel_dimr!   )datatensor_type)r"   r$   r%   r'   r(   r)   r*   r+   r#   r	   r&   r   r   rF   r   r   r   loggerwarning_oncer   r   center_croprescale	normalizer   r   )r:   rK   r"   r#   r$   r%   r&   r'   r(   r)   r*   r+   rL   rA   rB   r@   rO   s                    r=   
preprocessLevitImageProcessor.preprocess   sn   H "+!6IDNN	'38+9+E4K^K^#-#9Zt
+9+E4K^K^'3'?|TEVEV#-#9Zt
!*!6IDNN	'tTYYTU;!*!6IDNN	!)D	)&1F##:  	&!)%!)	
 6<<VE.'V</&)44s
 $ >vay Ikqrkqbgkk%xk]kqFrkqrkqbg&&uK\&]kqFrlrslrchll5L]l^lrFsououfku)aou  
 ou
ntej'N_`nt 	 
 '>BB? = s s t
s$   ;HHH)H!H&.H+)
r&   r%   r)   r'   r"   r*   r+   r$   r(   r#   )__name__
__module____qualname____firstlineno____doc__model_input_namesr   BICUBICr   r   boolr   dictstrrE   r   floatr   r9   npndarrayr   r   r   FIRSTr   r   r   rV   __static_attributes____classcell__)r<   s   @r=   r   r   0   s   %N (( )-'9'A'A#.2,3!>S=QVV tCH~&V %	V
 V DcN+V V c5j)V V U5(5/#9:;V E%%"89:V 
V VF (:'A'A>BDH5
zz5
 38n5
 %	5

 eC)9$9:;5
 $E#/?*?$@A5
 
5
n %& %))-15)-.2%)*.'+>B=A/3(8(>(>DHCCCC D>CC tCH~&	CC
 -.CC !CC DcN+CC TNCC !CC tnCC U5(5/#9:;CC E%%"89:CC !,CC &CC $E#/?*?$@ACC  
!CC 'CCr?   r   )'r\   collections.abcr   typingr   r   numpyrc   image_processing_utilsr   r   r	   image_transformsr
   r   r   image_utilsr   r   r   r   r   r   r   r   r   r   r   utilsr   r   r   utils.import_utilsr   
get_loggerrX   rQ   r   __all__r7   r?   r=   <module>rr      s    ' $ "  U U 
    J I * 
		H	% 
;DC, DC  DCN !
!r?   