
    2VhDB                         d dl Zd dlmZ d dlmZ d dlmZ d dlmZ d dl	m
Z dZ edd	g      	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 dd
       Z	 	 	 	 	 ddZ	 	 ddZy)    N)keras_export)standardize_data_format)dataset_utils)image_utils
tensorflow)z.bmpz.gifz.jpegz.jpgz.pngz(keras.utils.image_dataset_from_directoryz0keras.preprocessing.image_dataset_from_directoryc                    |dvr7t        |t        t        f      st        d|       |rt        d| d|       |dvrt        d|       ||d}d}|dk(  rd	}n|d
k(  rd}n|dk(  rd}nt        d|       t        |t              r||f}n2t        |t        t        f      rt        |      dk(  st        d|       |j                         }d}||vrt        d| d|       t        j                  |	|
||       |t        j                  j                  d      }t        j                  | |t        |||||      \  }}}|dk(  rt        |      dk7  rt        d|       t        |      }||dz  }nd}|
dk(  rDt        j                  |||	d      \  }}t        j                  |||	d      \  }}|st        d|  dt               |st        d |  dt               t!        ||||||rt        |      nd!|||||||"      }t!        ||||||rt        |      nd!||||d#$      }|"|j#                  |      }|j#                  |      }|j%                  t&        j(                  j*                        }|j%                  t&        j(                  j*                        }||_        ||_        ||_        ||_        ||g}|S t        j                  |||	|
      \  }}|st        d%|  dt               t!        ||||||rt        |      nd!|||||||"      }||j#                  |      }|j%                  t&        j(                  j*                        }||_        ||_        |S )&ah  Generates a `tf.data.Dataset` from image files in a directory.

    If your directory structure is:

    ```
    main_directory/
    ...class_a/
    ......a_image_1.jpg
    ......a_image_2.jpg
    ...class_b/
    ......b_image_1.jpg
    ......b_image_2.jpg
    ```

    Then calling `image_dataset_from_directory(main_directory,
    labels='inferred')` will return a `tf.data.Dataset` that yields batches of
    images from the subdirectories `class_a` and `class_b`, together with labels
    0 and 1 (0 corresponding to `class_a` and 1 corresponding to `class_b`).

    Supported image formats: `.jpeg`, `.jpg`, `.png`, `.bmp`, `.gif`.
    Animated gifs are truncated to the first frame.

    Args:
        directory: Directory where the data is located.
            If `labels` is `"inferred"`, it should contain
            subdirectories, each containing images for a class.
            Otherwise, the directory structure is ignored.
        labels: Either `"inferred"`
            (labels are generated from the directory structure),
            `None` (no labels),
            or a list/tuple of integer labels of the same size as the number of
            image files found in the directory. Labels should be sorted
            according to the alphanumeric order of the image file paths
            (obtained via `os.walk(directory)` in Python).
        label_mode: String describing the encoding of `labels`. Options are:
            - `"int"`: means that the labels are encoded as integers
                (e.g. for `sparse_categorical_crossentropy` loss).
            - `"categorical"` means that the labels are
                encoded as a categorical vector
                (e.g. for `categorical_crossentropy` loss).
            - `"binary"` means that the labels (there can be only 2)
                are encoded as `float32` scalars with values 0 or 1
                (e.g. for `binary_crossentropy`).
            - `None` (no labels).
        class_names: Only valid if `labels` is `"inferred"`.
            This is the explicit list of class names
            (must match names of subdirectories). Used to control the order
            of the classes (otherwise alphanumerical order is used).
        color_mode: One of `"grayscale"`, `"rgb"`, `"rgba"`.
            Whether the images will be converted to
            have 1, 3, or 4 channels. Defaults to `"rgb"`.
        batch_size: Size of the batches of data. Defaults to 32.
            If `None`, the data will not be batched
            (the dataset will yield individual samples).
        image_size: Size to resize images to after they are read from disk,
            specified as `(height, width)`.
            Since the pipeline processes batches of images that must all have
            the same size, this must be provided. Defaults to `(256, 256)`.
        shuffle: Whether to shuffle the data. Defaults to `True`.
            If set to `False`, sorts the data in alphanumeric order.
        seed: Optional random seed for shuffling and transformations.
        validation_split: Optional float between 0 and 1,
            fraction of data to reserve for validation.
        subset: Subset of the data to return.
            One of `"training"`, `"validation"`, or `"both"`.
            Only used if `validation_split` is set.
            When `subset="both"`, the utility returns a tuple of two datasets
            (the training and validation datasets respectively).
        interpolation: String, the interpolation method used when
            resizing images.
            Supports `"bilinear"`, `"nearest"`, `"bicubic"`, `"area"`,
            `"lanczos3"`, `"lanczos5"`, `"gaussian"`, `"mitchellcubic"`.
            Defaults to `"bilinear"`.
        follow_links: Whether to visit subdirectories pointed to by symlinks.
            Defaults to `False`.
        crop_to_aspect_ratio: If `True`, resize the images without aspect
            ratio distortion. When the original aspect ratio differs from the
            target aspect ratio, the output image will be cropped so as to
            return the largest possible window in the image
            (of size `image_size`) that matches the target aspect ratio. By
            default (`crop_to_aspect_ratio=False`), aspect ratio may not be
            preserved.
        pad_to_aspect_ratio: If `True`, resize the images without aspect
            ratio distortion. When the original aspect ratio differs from the
            target aspect ratio, the output image will be padded so as to
            return the largest possible window in the image
            (of size `image_size`) that matches the target aspect ratio. By
            default (`pad_to_aspect_ratio=False`), aspect ratio may not be
            preserved.
        data_format: If None uses keras.config.image_data_format()
            otherwise either 'channel_last' or 'channel_first'.
        verbose: Whether to display number information on classes and
            number of files found. Defaults to `True`.

    Returns:

    A `tf.data.Dataset` object.

    - If `label_mode` is `None`, it yields `float32` tensors of shape
        `(batch_size, image_size[0], image_size[1], num_channels)`,
        encoding images (see below for rules regarding `num_channels`).
    - Otherwise, it yields a tuple `(images, labels)`, where `images` has
        shape `(batch_size, image_size[0], image_size[1], num_channels)`,
        and `labels` follows the format described below.

    Rules regarding labels format:

    - if `label_mode` is `"int"`, the labels are an `int32` tensor of shape
        `(batch_size,)`.
    - if `label_mode` is `"binary"`, the labels are a `float32` tensor of
        1s and 0s of shape `(batch_size, 1)`.
    - if `label_mode` is `"categorical"`, the labels are a `float32` tensor
        of shape `(batch_size, num_classes)`, representing a one-hot
        encoding of the class index.

    Rules regarding number of channels in the yielded images:

    - if `color_mode` is `"grayscale"`,
        there's 1 channel in the image tensors.
    - if `color_mode` is `"rgb"`,
        there are 3 channels in the image tensors.
    - if `color_mode` is `"rgba"`,
        there are 4 channels in the image tensors.
    )inferredNa[  `labels` argument should be a list/tuple of integer labels, of the same size as the number of image files in the target directory. If you wish to infer the labels from the subdirectory names in the target directory, pass `labels="inferred"`. If you wish to get a dataset that only contains images (no labels), pass `labels=None`. Received: labels=zIYou can only pass `class_names` if `labels="inferred"`. Received: labels=z, and class_names=>   Nintbinarycategoricalzc`label_mode` argument must be one of "int", "categorical", "binary", or None. Received: label_mode=Nrgb   rgba   	grayscale   zO`color_mode` must be one of {"rgb", "rgba", "grayscale"}. Received: color_mode=   zQInvalid `image_size` value. Expected a tuple of 2 integers. Received: image_size=)bilinearnearestbicubicarealanczos3lanczos5gaussianmitchellcubicz*Argument `interpolation` should be one of z. Received: interpolation=g    .A)formatsclass_namesshuffleseedfollow_linksverboser   z_When passing `label_mode="binary"`, there must be exactly 2 class_names. Received: class_names=)data_format      bothtraining
validationz&No training images found in directory z. Allowed formats: z(No validation images found in directory r   )image_paths
image_sizenum_channelslabels
label_modenum_classesinterpolationcrop_to_aspect_ratiopad_to_aspect_ratior#   r   shuffle_buffer_sizer    F)r)   r*   r+   r,   r-   r.   r/   r0   r1   r#   r   zNo images found in directory )
isinstancelisttuple
ValueErrorr   lenlowerr   check_validation_split_argnprandomrandintindex_directoryALLOWLIST_FORMATSr    get_training_or_validation_splitpaths_and_labels_to_datasetbatchprefetchtfdataAUTOTUNEr   
file_paths)	directoryr,   r-   r   
color_mode
batch_sizer*   r   r    validation_splitsubsetr/   r!   r0   r1   r#   r"   r+   supported_interpolationsr)   r2   image_paths_trainlabels_trainimage_paths_val
labels_valtrain_datasetval_datasetdatasets                               S/home/dcms/DCMS/lib/python3.12/site-packages/keras/src/utils/image_dataset_utils.pyimage_dataset_from_directoryrU      s   l ''&4-0E FLHN  99? A*m- 
 ??--7L:
 	

 ~+
U	v		{	"$$.<1
 	

 *c" *-

T5M2#j/Q:N$$.<1
 	

 "'')M	  448'( )''4o7
 	
 ,,&'4 |yy  %'4'D'D!!	($K X#k"2a"722=@
 	

 *kBK(1n" ::!1:
	
 ::!1<
	
 !8 D$$5#68  :9+ F$$5#68  4)!%!,7K(Q'!5 3# 3
  2'!%!,7K(Q'!5 3#
 !)//
;M%++J7K%..rww/?/?@!**277+;+;< %0!"- $5 !0 +.J NG ,LL!16
V /	{ ;$$5#68 
 .#!%!,7K(Q'!5 3# 3
  !mmJ/G""277#3#34) )N    c                    t         j                  j                  j                  |       }|rCt	        j
                  |||      }t         j                  j                  j                  ||f      }n|}|
r|j                  |xs d|      }||||||	f|r0|j                  fdt         j                  j                        }|S |j                  fdt         j                  j                        }|S )z*Constructs a dataset of images and labels.r%   )buffer_sizer    c                      t        | g |fS N
load_image)xyargss     rT   <lambda>z-paths_and_labels_to_dataset.<locals>.<lambda>  s    *Q..2 rV   )num_parallel_callsc                     t        | g S rZ   r[   )r]   r_   s    rT   r`   z-paths_and_labels_to_dataset.<locals>.<lambda>  s    j*T* rV   )
rC   rD   Datasetfrom_tensor_slicesr   labels_to_datasetzipr   maprE   )r)   r*   r+   r,   r-   r.   r/   r#   r0   r1   r   r2   r    path_dslabel_dsdsr_   s                   @rT   r@   r@   k  s      ggoo00=G 22J
 WW__  '8!45ZZ$7$?4dZK 	D VV2!ww//  
 I VV*rww?O?O  
 IrV   c                    t         j                  j                  |       }t         j                  j	                  ||d      }|r|rt        d      |r<ddlm} |dk(  rt        j                  |d      }t        j                  |||||      }n|rEt         j                  j                  ||d   |d	   |
      }|dk(  rTt        j                  |d      }n=t         j                  j                  |||
      }|dk(  rt        j                  |d      }|dk(  r|j                  |d   |d	   |f       |S |j                  ||d   |d	   f       |S )z(Load an image from a path and resize it.F)channelsexpand_animationszOOnly one of `pad_to_aspect_ratio`, `crop_to_aspect_ratio` can be set to `True`.r   r   channels_first)r   r   r   )r/   r#   backend_moduler   )methodchannels_last)rC   io	read_fileimagedecode_imager6   keras.src.backendr   	transposer   smart_resizeresize_with_padresize	set_shape)	pathr*   r+   r/   r#   r0   r1   img
tf_backends	            rT   r\   r\     sW    %%//$
C
((

le   C 3%
 	

 >**,,sI.C&&'#%
 
hh&&A
1m ' 
 **,,sI.Chhooc:moD**,,sI.Co%z!}jm\BC J 	|Z]JqMBCJrV   )r
   r   Nr       )   r   TNNNr   FFFNT)FFFNN)FF)numpyr:   keras.src.api_exportr   keras.src.backend.configr   keras.src.utilsr   r   keras.src.utils.module_utilsr   rC   r>   rU   r@   r\    rV   rT   <module>r      s     - < ) ' 9=  2: 	#VVD 	-l 0rV   