
    qi=_                        d Z ddlZddlmZmZmZ ddlmZm	Z	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mZ ddlmZ ddlmZmZmZ dd	l m!Z!  ejD                  e#      Z$ e!       rddl%Z% G d
 ded      Z& G d de      Z'dgZ(y)z!Image processor class for Nougat.    N   )BaseImageProcessorBatchFeatureget_size_dict)get_resize_output_image_sizepadresizeto_channel_dimension_formatto_pil_image)IMAGENET_DEFAULT_MEANIMAGENET_DEFAULT_STDChannelDimension
ImageInputPILImageResamplingget_image_sizeinfer_channel_dimension_formatis_scaled_imagemake_flat_list_of_imagesto_numpy_arrayvalid_imagesvalidate_preprocess_arguments)ImagesKwargs)
TensorTypefilter_out_non_signature_kwargslogging)is_vision_availablec                   0    e Zd ZU dZeed<   eed<   eed<   y)NougatImageProcessorKwargsa  
    do_crop_margin (`bool`, *optional*, defaults to `True`):
        Whether to crop the image margins.
    do_thumbnail (`bool`, *optional*, defaults to `True`):
        Whether to resize the image using thumbnail method.
    do_align_long_axis (`bool`, *optional*, defaults to `False`):
        Whether to align the long axis of the image with the long axis of `size` by rotating by 90 degrees.
    do_crop_margindo_thumbnaildo_align_long_axisN)__name__
__module____qualname____doc__bool__annotations__     d/opt/pipecat/venv/lib/python3.12/site-packages/transformers/models/nougat/image_processing_nougat.pyr   r   4   s     r)   r   F)totalc            $       |    e Zd ZdZdgZeZdddej                  ddddddddfde	de	d	e
eef   dz  d
ede	de	de	de	deez  de	deee   z  dz  deee   z  dz  ddf fdZdej"                  fdZd Z	 	 	 d#dej"                  dededz  deez  dz  dej"                  f
dZ	 	 d$dej"                  d	e
eef   deez  dz  deez  dz  dej"                  f
dZ	 	 d$dej"                  d	e
eef   deez  dz  deez  dz  dej"                  f
dZej0                  ddfdej"                  d	e
eef   d
edeez  dz  deez  dz  dej"                  fdZej0                  ddfdej"                  d	e
eef   d
edeez  dz  deez  dz  dej"                  fdZ e       dddddddddddddej8                  dfd ede	dz  de	dz  d	e
eef   dz  d
edz  de	dz  de	dz  de	dz  de	dz  deez  dz  de	dz  deee   z  dz  deee   z  dz  d!eez  dz  dedz  deez  dz  dej@                  j@                  f"d"       Z! xZ"S )%NougatImageProcessora	  
    Constructs a Nougat image processor.

    Args:
        do_crop_margin (`bool`, *optional*, defaults to `True`):
            Whether to crop the image margins.
        do_resize (`bool`, *optional*, defaults to `True`):
            Whether to resize the image's (height, width) dimensions to the specified `size`. Can be overridden by
            `do_resize` in the `preprocess` method.
        size (`dict[str, int]` *optional*, defaults to `{"height": 896, "width": 672}`):
            Size of the image after resizing. Can be overridden by `size` in the `preprocess` method.
        resample (`PILImageResampling`, *optional*, defaults to `Resampling.BILINEAR`):
            Resampling filter to use if resizing the image. Can be overridden by `resample` in the `preprocess` method.
        do_thumbnail (`bool`, *optional*, defaults to `True`):
            Whether to resize the image using thumbnail method.
        do_align_long_axis (`bool`, *optional*, defaults to `False`):
            Whether to align the long axis of the image with the long axis of `size` by rotating by 90 degrees.
        do_pad (`bool`, *optional*, defaults to `True`):
            Whether to pad the images to the largest image size in the batch.
        do_rescale (`bool`, *optional*, defaults to `True`):
            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`):
            Whether to normalize the image. Can be overridden by `do_normalize` in the `preprocess` method.
        image_mean (`float` or `list[float]`, *optional*, defaults to `IMAGENET_DEFAULT_MEAN`):
            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 (`float` or `list[float]`, *optional*, defaults to `IMAGENET_DEFAULT_STD`):
            Image standard deviation.
    pixel_valuesTNFgp?r   	do_resizesizeresampler    r!   do_pad
do_rescalerescale_factordo_normalize
image_mean	image_stdreturnc                     t        |   di | ||nddd}t        |      }|| _        || _        || _        || _        || _        || _        || _	        || _
        |	| _        |
| _        ||nt        | _        ||| _        y t        | _        y )Ni  i  )heightwidthr(   )super__init__r   r   r/   r0   r1   r    r!   r2   r3   r4   r5   r   r6   r   r7   )selfr   r/   r0   r1   r    r!   r2   r3   r4   r5   r6   r7   kwargs	__class__s                 r*   r=   zNougatImageProcessor.__init__i   s      	"6"'tc-JT","	 ("4$,((2(>*DY&/&;AUr)   imagec                     t        j                  t        j                  |            }|ddddgf   }|j                  ddd      }|S )zGThis is a reimplementation of a findNonZero function equivalent to cv2.N   r      )npcolumn_stacknonzeroreshape)r>   rA   non_zero_indicesidxvecs       r*   python_find_non_zeroz)NougatImageProcessor.python_find_non_zero   sC    ??2::e+<=!!aV),Aq)r)   c                     t        j                  |d      j                  t              }t        j                  |d      j                  t              }|d   |d   }}|d   |z
  dz   }|d   |z
  dz   }||||fS )zHThis is a reimplementation of a BoundingRect function equivalent to cv2.r   rC   )axisr   rC   )rF   minastypeintmax)r>   coordinates
min_values
max_valuesx_miny_minr;   r:   s           r*   python_bounding_rectz)NougatImageProcessor.python_bounding_rect   s~    VVKf5<<SA
VVKf5<<SA
!!}jmu1%)A&*eUF**r)   gray_thresholddata_formatinput_data_formatc                    |t        |      }t        ||      }t        j                  |j	                  d            j                  t        j                        }|j                         }|j                         }||k(  rEt        j                  |      }t        ||t        j                        }|t        |||      }|S |}|S ||z
  ||z
  z  dz  }||k  }| j                  |      }	| j                  |	      \  }
}}}|j                  |
||
|z   ||z   f      }t        j                  |      j                  t        j                        }t        ||t        j                        }|t        |||      }|S |}|S )a  
        Crops the margin of the image. Gray pixels are considered margin (i.e., pixels with a value below the
        threshold).

        Args:
            image (`np.ndarray`):
                The image to be cropped.
            gray_threshold (`int`, *optional*, defaults to `200`)
                Value below which pixels are considered to be gray.
            data_format (`ChannelDimension`, *optional*):
                The channel dimension format of the output image. If unset, will use the inferred format from the
                input.
            input_data_format (`ChannelDimension`, *optional*):
                The channel dimension format of the input image. If unset, will use the inferred format from the input.
        r\   L   )r   r   rF   arrayconvertrQ   uint8rS   rP   r
   r   LASTrL   rY   crop)r>   rA   rZ   r[   r\   datamax_valmin_valgraycoordsrW   rX   r;   r:   s                 r*   crop_marginz NougatImageProcessor.crop_margin   s   , $ >u EU6GHxxc*+22288<((*((*gHHUOE/7HJZJ_J_`E * ,E;@QR 
 L  
 Lw7W#45;n$**40&*&?&?&G#ueV

E5%%-HI&&rxx0+E3DFVF[F[\ S^Ri'{<MN 	  pu 	 r)   c                 @   t        ||      \  }}|d   |d   }}|t        |      }|t        j                  k(  rd}	n$|t        j                  k(  rd}	nt        d|       ||k  r||kD  s
||kD  r||k  rt        j                  |d|	      }|t        |||	      }|S )
a  
        Align the long axis of the image to the longest axis of the specified size.

        Args:
            image (`np.ndarray`):
                The image to be aligned.
            size (`dict[str, int]`):
                The size `{"height": h, "width": w}` to align the long axis to.
            data_format (`str` or `ChannelDimension`, *optional*):
                The data format of the output image. If unset, the same format as the input image is used.
            input_data_format (`ChannelDimension` or `str`, *optional*):
                The channel dimension format of the input image. If not provided, it will be inferred.

        Returns:
            `np.ndarray`: The aligned image.
        channel_dimr:   r;   rN   )rC   rE   zUnsupported data format: r   )axesinput_channel_dim)	r   r   r   rd   FIRST
ValueErrorrF   rot90r
   )
r>   rA   r0   r[   r\   input_heightinput_widthoutput_heightoutput_widthrot_axess
             r*   align_long_axisz$NougatImageProcessor.align_long_axis   s    . %35FW$X!k&*8nd7m|$ >u E 0 5 55H"2"8"88H89J8KLMM=([<-G=([<-GHHUAH5E"/{VghEr)   c                     |d   |d   }}t        ||      \  }}||z
  }	||z
  }
|
dz  }|	dz  }|
|z
  }|	|z
  }||f||ff}t        ||||      S )a  
        Pad the image to the specified size at the top, bottom, left and right.

        Args:
            image (`np.ndarray`):
                The image to be padded.
            size (`dict[str, int]`):
                The size `{"height": h, "width": w}` to pad the image to.
            data_format (`str` or `ChannelDimension`, *optional*):
                The data format of the output image. If unset, the same format as the input image is used.
            input_data_format (`ChannelDimension` or `str`, *optional*):
                The channel dimension format of the input image. If not provided, it will be inferred.
        r:   r;   rm   rE   )r[   r\   )r   r   )r>   rA   r0   r[   r\   rw   rx   ru   rv   delta_widthdelta_heightpad_toppad_left
pad_bottom	pad_rightpaddings                   r*   	pad_imagezNougatImageProcessor.pad_image   s    ( '+8nd7m|$25FW$X!k"[0$|3!#!#!G+
(*	Z(8Y*?@5'{N_``r)   c           	          t        ||      \  }}|d   |d   }
}	t        ||	      }t        ||
      }||k(  r||k(  r|S ||kD  rt        ||z  |z        }n||kD  rt        ||z  |z        }t        |f||f|d||d|S )as  
        Resize the image to make a thumbnail. The image is resized so that no dimension is larger than any
        corresponding dimension of the specified size.

        Args:
            image (`np.ndarray`):
                The image to be resized.
            size (`dict[str, int]`):
                The size `{"height": h, "width": w}` to resize the image to.
            resample (`PILImageResampling`, *optional*, defaults to `PILImageResampling.BICUBIC`):
                The resampling filter to use.
            data_format (`Optional[Union[str, ChannelDimension]]`, *optional*):
                The data format of the output image. If unset, the same format as the input image is used.
            input_data_format (`ChannelDimension` or `str`, *optional*):
                The channel dimension format of the input image. If not provided, it will be inferred.
        rm   r:   r;   g       @)r0   r1   reducing_gapr[   r\   )r   rP   rR   r	   )r>   rA   r0   r1   r[   r\   r?   ru   rv   rw   rx   r:   r;   s                r*   	thumbnailzNougatImageProcessor.thumbnail#  s    2 %35FW$X!k&*8nd7m| \=1K.\!e{&:L+%f,|;<E<'-;<F
%#/
 
 	
r)   c                     t        |      }t        |d   |d         }t        ||d|      }t        |f||||d|}	|	S )a  
        Resizes `image` to `(height, width)` specified by `size` using the PIL library.

        Args:
            image (`np.ndarray`):
                Image to resize.
            size (`dict[str, int]`):
                Size of the output image.
            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.
        r:   r;   F)r0   default_to_squarer\   )r0   r1   r[   r\   )r   rP   r   r	   )
r>   rA   r0   r1   r[   r\   r?   shortest_edgeoutput_sizeresized_images
             r*   r	   zNougatImageProcessor.resizeV  sh    0 T"DNDM:2Rc
 
#/
 
 r)   imagesreturn_tensorsc           
      "   ||n| j                   }||n| j                  }||n| j                  }||n| j                  }||n| j                  }||n| j
                  }||n| j                  }|	|	n| j                  }	|
|
n| j                  }
||n| j                  }||n| j                  }||n| j                  }t        |      }t        |      st        d      t        |	|
||||||       |D cg c]  }t!        |       }}|	r#t#        |d         rt$        j'                  d       |t)        |d         }|r |D cg c]  }| j+                  ||       }}|r!|D cg c]  }| j-                  |||       }}|r"|D cg c]  }| j/                  ||||       }}|r!|D cg c]  }| j1                  |||       }}|r!|D cg c]  }| j3                  |||       }}|	r!|D cg c]  }| j5                  ||
|	       }}|r"|D cg c]  }| j7                  ||||
       }}|D cg c]  }t9        |||       }}d|i}t;        ||      S c c}w c c}w c c}w c c}w c c}w c c}w c c}w c c}w c c}w )a+  
        Preprocess an image or batch of images.

        Args:
            images (`ImageInput`):
                Image to preprocess. Expects a single or batch of images with pixel values ranging from 0 to 255.
            do_crop_margin (`bool`, *optional*, defaults to `self.do_crop_margin`):
                Whether to crop the image margins.
            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 image after resizing. Shortest edge of the image is resized to min(size["height"],
                size["width"]) with the longest edge resized to keep the input aspect ratio.
            resample (`int`, *optional*, defaults to `self.resample`):
                Resampling filter to use if resizing the image. This can be one of the enum `PILImageResampling`. Only
                has an effect if `do_resize` is set to `True`.
            do_thumbnail (`bool`, *optional*, defaults to `self.do_thumbnail`):
                Whether to resize the image using thumbnail method.
            do_align_long_axis (`bool`, *optional*, defaults to `self.do_align_long_axis`):
                Whether to align the long axis of the image with the long axis of `size` by rotating by 90 degrees.
            do_pad (`bool`, *optional*, defaults to `self.do_pad`):
                Whether to pad the images to the largest image size in the batch.
            do_rescale (`bool`, *optional*, defaults to `self.do_rescale`):
                Whether to rescale the image by the specified scale `rescale_factor`.
            rescale_factor (`int` or `float`, *optional*, defaults to `self.rescale_factor`):
                Scale factor to use if rescaling the image.
            do_normalize (`bool`, *optional*, defaults to `self.do_normalize`):
                Whether to normalize the image.
            image_mean (`float` or `list[float]`, *optional*, defaults to `self.image_mean`):
                Image mean to use for normalization.
            image_std (`float` or `list[float]`, *optional*, defaults to `self.image_std`):
                Image standard deviation to use for normalization.
            return_tensors (`str` or `TensorType`, *optional*):
                The type of tensors to return. Can be one of:
                - Unset: Return a list of `np.ndarray`.
                - `TensorType.PYTORCH` or `'pt'`: Return a batch of type `torch.Tensor`.
                - `TensorType.NUMPY` or `'np'`: Return a batch of type `np.ndarray`.
            data_format (`ChannelDimension` or `str`, *optional*, defaults to `ChannelDimension.FIRST`):
                The channel dimension format for the output image. Can be one of:
                - `ChannelDimension.FIRST`: image in (num_channels, height, width) format.
                - `ChannelDimension.LAST`: image in (height, width, num_channels) format.
                - Unset: defaults to the channel dimension format of the input image.
            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.
        zSInvalid image type. Must be of type PIL.Image.Image, numpy.ndarray, or torch.Tensor)r3   r4   r5   r6   r7   r/   r0   r1   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.r^   )r0   r\   )rA   r0   r1   r\   )rA   r0   r\   )rA   scaler\   )rA   meanstdr\   rp   r.   )rf   tensor_type)r   r/   r0   r1   r    r!   r2   r3   r4   r5   r6   r7   r   r   rs   r   r   r   loggerwarning_oncer   rk   rz   r	   r   r   rescale	normalizer
   r   )r>   r   r   r/   r0   r1   r    r!   r2   r3   r4   r5   r6   r7   r   r[   r\   rA   rf   s                      r*   
preprocesszNougatImageProcessor.preprocess}  s   J ,:+E4K^K^!*!6IDNN	'tTYY'38'3'?|TEVEV3E3Q/W[WnWn!-4;;#-#9Zt
+9+E4K^K^'3'?|TEVEV#-#9Zt
!*!6IDNN	)&1F#rss%!)%!		
 6<<E.'<</&)4s
 $ >vay I`fgW\d&&u@Q&RgFgouvfkd**5tO`*avFv $ %dXYjkF 
 ouvfkdnn5tO`navFvouvfkdnn5tO`navFv $ 5RcdF 
  $ U^opF  ou
ej'{N_`
 
 '>BB_ = h w w w

s6   9I$I)*I.I31I8I=7JJ<J)   NN)NN)#r"   r#   r$   r%   model_input_namesr   valid_kwargsr   BILINEARr&   dictstrrR   floatlistr=   rF   ndarrayrL   rY   r   rk   rz   r   BICUBICr   r	   r   rr   r   r   PILImager   __classcell__)r@   s   @r*   r-   r-   C   s    D ((-L  $&*'9'B'B!#(&-!1504 V V  V 38nt#	 V
 % V  V ! V  V  V e V  V DK'$. V 4;&- V 
 VD"** + "/3;?2zz2 2 &,	2
 !11D82 
2r 6:;?-zz- 38n- ++d2	-
 !11D8- 
-f 6:;?!azz!a 38n!a ++d2	!a
 !11D8!a 
!aP (:'A'A59;?0
zz0
 38n0
 %	0

 ++d20
 !11D80
 
0
n (:'A'A59;?%zz% 38n% %	%
 ++d2% !11D8% 
%N %& '+!%&*.2$(*.""&-1$(150426/?/E/E;?#PCPC tPC $;	PC
 38nt#PC %t+PC TkPC !4KPC tPC 4KPC ed*PC TkPC DK'$.PC 4;&-PC j(4/PC  &,!PC" !11D8#PC$ 
%PC 'PCr)   r-   ))r%   numpyrF   image_processing_utilsr   r   r   image_transformsr   r   r	   r
   r   image_utilsr   r   r   r   r   r   r   r   r   r   r   r   processing_utilsr   utilsr   r   r   utils.import_utilsr   
get_loggerr"   r   r   r   r-   __all__r(   r)   r*   <module>r      s    (  U U     - I I 5 
		H	% U KC- KC\ "
"r)   