
     `ibA                        d Z ddlmZ ddlmZmZ ddlZddlm	Z	m
Z
mZ ddlmZmZmZ ddlmZmZmZmZmZmZmZmZmZmZmZ dd	lmZmZmZ dd
l m!Z!  ej"        e#          Z$ e!d           G d de	                      Z%dgZ&dS )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            !           e Zd ZdZdgZddej        dddddeef
de	de
eeef                  ded	e	d
e
eeef                  de	deeef         de	de
eeee         f                  de
eeee         f                  ddf fdZej        ddfdej        deeef         dede
eeef                  de
eeef                  dej        fdZ e            dddddddddddej        dfdede
e	         de
eeef                  de
e         d	e
e	         d
e
eeef                  de
e	         de
e         de
e	         de
eeee         f                  de
eeee         f                  de
e         dede
eeef                  defd            Z xZS )LevitImageProcessora  
    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                 P    t                      j        di | ||nddi}t          |d          }||nddd}t          |d          }|| _        || _        || _        || _        || _        || _        || _	        || _
        |	|	nt          | _        |
|
nt          | _        d S )	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               /home/jaya/work/projects/VOICE-AGENT/VIET/agent-env/lib/python3.11/site-packages/transformers/models/levit/image_processing_levit.pyr8   zLevitImageProcessor.__init__[   s     	""6"""'ttos-CTU;;;!*!6IIsUX<Y<Y	!)DDD	"	 ,"$,((2(>**DY&/&;AU    imagedata_formatinput_data_formatc                 <   t          |d          }d|v r<t          d|d         z            }t          ||d|          }	|	d         |	d         d}d	|vsd
|vr$t          d|                                           t          |f|d	         |d
         f|||d|S )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.
        Fr/   r-   g$I$I?)r"   r0   r@   r      r1   r2   r3   zFSize dict must have keys 'height' and 'width' or 'shortest_edge'. Got )r"   r#   r?   r@   )r	   intr
   
ValueErrorkeysr   )
r9   r>   r"   r#   r?   r@   r:   	size_dictr-   output_sizes
             r<   r   zLevitImageProcessor.resizez   s    D "$%@@@	d""d?.C CDDM6MUVg  K $/q>KNKKI9$$y(@(@kYbYgYgYiYikk   
H%y'9:#/
 
 
 
 	
r=   imagesreturn_tensorsc                 D   
 ||n j         }n j        ||n j        }||n j        }n j        |	|	n j        }	

n j        
n j        n j        t          d          n j
        t          d          t          |          }t          |          st          d          t          ||	
||
  
         d |D             }|r/t          |d	                   rt                               d
           t%          |d	                   |r fd|D             }|r fd|D             }|r fd|D             }|	r
 fd|D             }fd|D             }d|i}t'          ||          S )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.
        NFr/   r%   r4   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#   c                 ,    g | ]}t          |          S r6   )r   ).0r>   s     r<   
<listcomp>z2LevitImageProcessor.preprocess.<locals>.<listcomp>  s     <<<E.''<<<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.c                 B    g | ]}                     |           S )r@   )r   )rL   r>   r@   r#   r9   r"   s     r<   rM   z2LevitImageProcessor.preprocess.<locals>.<listcomp>#  s/    rrrbgdkk%xK\k]]rrrr=   c                 @    g | ]}                     |           S rO   )center_crop)rL   r>   r%   r@   r9   s     r<   rM   z2LevitImageProcessor.preprocess.<locals>.<listcomp>&  s0    rrrbgd&&uiK\&]]rrrr=   c                 @    g | ]}                     |           S rO   )rescale)rL   r>   r@   r'   r9   s     r<   rM   z2LevitImageProcessor.preprocess.<locals>.<listcomp>)  s-    ssschdll5.L]l^^sssr=   c                 B    g | ]}                     |           S rO   )	normalize)rL   r>   r)   r*   r@   r9   s     r<   rM   z2LevitImageProcessor.preprocess.<locals>.<listcomp>,  s;       fkuj)O`aa  r=   c                 4    g | ]}t          |           S ))input_channel_dim)r   )rL   r>   r?   r@   s     r<   rM   z2LevitImageProcessor.preprocess.<locals>.<listcomp>0  s7     
 
 
ej'{N_```
 
 
r=   r    )datatensor_type)r!   r#   r$   r&   r'   r(   r)   r*   r"   r	   r%   r   r   rD   r   r   loggerwarning_oncer   r   )r9   rH   r!   r"   r#   r$   r%   r&   r'   r(   r)   r*   rI   r?   r@   rX   s   `  `` ` ` `` `` r<   
preprocesszLevitImageProcessor.preprocess   s   H "+!6IIDN	'388+9+E4K^#-#9ZZt
+9+E4K^'3'?||TEV#-#9ZZt
!*!6IIDN	'ttTYTU;;;!*!6IIDN	!)DDD	)&11F## 	:   	&!)%!)	
 	
 	
 	
 =<V<<< 	/&)44 	s  
 $ >vay I I 	srrrrrrrkqrrrF 	srrrrrrkqrrrF 	tsssssslrsssF 	      ou  F
 
 
 
 
nt
 
 
 '>BBBBr=   )__name__
__module____qualname____doc__model_input_namesr   BICUBICr   r   boolr   dictstrrC   r   floatr   r8   npndarrayr   r   r   FIRSTr   r   r   r\   __classcell__)r;   s   @r<   r   r   0   s_       % %N (( )-'9'A#.2,3!>S=QV 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 V V V VF (:'A>BDH5
 5
z5
 38n5
 %	5

 eC)9$9:;5
 $E#/?*?$@A5
 
5
 5
 5
 5
n %$&& %))-15)-.2%)*.'+>B=A/3(8(>DHCC 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 CC '&CC CC CC CC CCr=   r   )'r`   collections.abcr   typingr   r   numpyrg   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_loggerr]   rZ   r   __all__r6   r=   r<   <module>ru      s   ' & $ $ $ $ $ $ " " " " " " " "     U U U U U U U U U U         
                          J I I I I I I I I I * * * * * * 
	H	%	% 
;DC DC DC DC DC, DC DC  DCN !
!r=   