File size: 43,208 Bytes
747451d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 | # /*---------------------------------------------------------------------------------------------
# * Copyright (c) 2025 STMicroelectronics.
# * All rights reserved.
# * This software is licensed under terms that can be found in the LICENSE file in
# * the root directory of this software component.
# * If no LICENSE file comes with this software, it is provided AS-IS.
# *--------------------------------------------------------------------------------------------*/
import os
import glob
import sys
import json
import shutil
import random
import math
import numpy as np
import tensorflow as tf
import onnxruntime
from pathlib import Path
from omegaconf import DictConfig
from torchvision.datasets.utils import download_and_extract_archive
from object_detection.tf.src.utils import bbox_center_to_corners_coords, bbox_abs_to_normalized_coords
def prepare_kwargs_for_dataloader(cfg: DictConfig):
# Extract image size from the model
input_shape = cfg.model.input_shape
model_path = getattr(cfg.model, 'model_path', None)
val_batch_size = 1
# Extract image size from the model
model_path = cfg.model.model_path
file_extension = str(model_path).split('.')[-1]
model_tmp = None
input_shape = None
input_shape = cfg.model.input_shape
if model_path:
if file_extension in ['h5', 'keras']:
model_tmp = tf.keras.models.load_model(model_path, compile=False)
input_shape = model_tmp.inputs[0].shape[1:]
image_size = tuple(input_shape)[:-1]
elif file_extension == 'tflite':
model_tmp = tf.lite.Interpreter(model_path=model_path)
model_tmp.allocate_tensors()
# Get the input details
input_details = model_tmp.get_input_details()
input_shape = tuple(input_details[0]['shape'])
image_size = tuple(input_shape)[-3:-1]
elif file_extension == 'onnx':
model_tmp = onnxruntime.InferenceSession(model_path)
# Get the model input shape
input_shape = model_tmp.get_inputs()[0].shape
image_size = tuple(input_shape)[-2:]
else:
# model_path not defined or empty, use first two dimensions
image_size = tuple(input_shape)[0:2]
print("input_shape=", input_shape)
print("image_size=", image_size)
target = "host"
if cfg.evaluation and cfg.evaluation.target:
target = cfg.evaluation.target
model_batch_size = input_shape[0]
if model_batch_size != 1 and target == 'host':
val_batch_size = 64
else:
val_batch_size = 1
# Prepare kwargs
batch_size = getattr(cfg.training, 'batch_size', 32) if hasattr(cfg, 'training') and cfg.training else 32
dataloader_kwargs = {
'training_path': getattr(cfg.dataset, 'training_path', None),
'validation_path': getattr(cfg.dataset, 'validation_path', None),
'quantization_path': getattr(cfg.dataset, 'quantization_path', None),
'test_path': getattr(cfg.dataset, 'test_path', None),
'prediction_path': getattr(cfg.dataset, 'prediction_path', None),
'validation_split': getattr(cfg.dataset, 'validation_split', None),
'quantization_split': getattr(cfg.dataset, 'quantization_split', None),
'image_size': image_size,
'interpolation': getattr(cfg.preprocessing.resizing, 'interpolation', None),
'aspect_ratio': getattr(cfg.preprocessing.resizing, 'aspect_ratio', None),
'color_mode': getattr(cfg.preprocessing, 'color_mode', None),
'batch_size': batch_size,
'val_batch_size': val_batch_size,
'seed': getattr(cfg.dataset, 'seed', 127),
'rescaling_scale': getattr(cfg.preprocessing.rescaling, 'scale', 1.0/255.0),
'rescaling_offset': getattr(cfg.preprocessing.rescaling, 'offset', 0),
'normalization_mean': getattr(cfg.preprocessing.normalization, 'mean', 0.0),
'normalization_std': getattr(cfg.preprocessing.normalization, 'std', 1.0),
'data_dir': getattr(cfg.dataset, 'data_dir', './datasets/'),
'data_download': getattr(cfg.dataset, 'data_download', True),
}
return dataloader_kwargs
def _check_detection_dataset_already_exists(data_root: str = './datasets/', dataset_name: str = '') -> bool:
"""
Check presence of common object-detection datasets under `data_root`.
Supported dataset_name values:
- 'coco' : expects `coco/annotations` + image folders (train2017/val2017/...)
- 'coco_person' : either a dedicated `coco_person` folder or coco annotations containing person files
- 'pascal_voc' : Pascal VOC structure (VOCdevkit/*/Annotations + JPEGImages) or direct VOCxxxx folders
Returns True if dataset layout looks present, False otherwise.
"""
# COCO: annotations + at least one images folder present
if dataset_name == 'coco':
print("Checking if COCO dataset is already downloaded...")
annotations_dir = os.path.join(data_root, 'annotations')
imgs_candidates = [os.path.join(data_root, p) for p in ('train2017', 'val2017', 'train2014', 'val2014')]
imgs_present = any(os.path.exists(p) for p in imgs_candidates)
# Check if annotations directory exists and contains at least one .json file
annotations_exist = False
if os.path.exists(annotations_dir) and os.path.isdir(annotations_dir):
json_files = [f for f in os.listdir(annotations_dir) if f.endswith('.json')]
annotations_exist = len(json_files) > 0
return annotations_exist and imgs_present
# COCO person: prefer dedicated folder, otherwise look for person-related annotation files inside coco/annotations
elif dataset_name == 'coco_person':
print("Checking if COCO person dataset is already downloaded...")
coco_person = os.path.join(data_root, 'coco_person')
if os.path.exists(coco_person):
return True
annotations_dir = os.path.join(data_root, 'annotations')
if not os.path.exists(annotations_dir):
return False
person_files = (
'person_keypoints_train2017.json',
'person_keypoints_val2017.json',
'instances_train2017.json',
'instances_val2017.json'
)
all_files_exist = all(os.path.exists(os.path.join(annotations_dir, f)) for f in person_files)
return all_files_exist
# Pascal VOC: VOCdevkit/<VOCxxx>/Annotations + JPEGImages or direct VOCxxxx folders
elif dataset_name in ('pascal_voc', 'voc'):
print("Checking if Pascal VOC dataset is already downloaded...")
voc_root = os.path.join(data_root, 'VOCdevkit')
if os.path.exists(voc_root):
for entry in os.listdir(voc_root):
candidate = os.path.join(voc_root, entry)
if os.path.isdir(candidate) and os.path.exists(os.path.join(candidate, 'Annotations')) and os.path.exists(os.path.join(candidate, 'JPEGImages')):
return True
# direct VOC folders (VOC2012, VOC2007, ...)
for name in ('VOC2012', 'VOC2007', 'VOC2010', 'VOC2009', 'VOC2011'):
p = os.path.join(data_root, name)
if os.path.exists(p) and os.path.exists(os.path.join(p, 'Annotations')) and os.path.exists(os.path.join(p, 'JPEGImages')):
return True
return False
else:
return False
def download_dataset(data_root: str, dataset_name: str) -> str:
"""
Download and extract common object-detection datasets into `data_root`.
Supported dataset_name values: same as `_check_detection_dataset_already_exists`.
Returns the path where the dataset files are (best-effort).
"""
os.makedirs(data_root, exist_ok=True)
if dataset_name == 'coco':
# If already present, return
if _check_detection_dataset_already_exists(data_root=data_root, dataset_name='coco'):
print('COCO files found! Using existing files!')
return os.path.join(data_root, 'coco')
coco_root = os.path.join(data_root, 'coco')
os.makedirs(coco_root, exist_ok=True)
print(f'Files not found! Downloading COCO dataset in {coco_root}')
# annotations + images (train2017 and val2017). We download annotations and val set by default to keep size reasonable.
annotations_url = 'http://images.cocodataset.org/annotations/annotations_trainval2017.zip'
val2017_url = 'http://images.cocodataset.org/zips/val2017.zip'
train2017_url = 'http://images.cocodataset.org/zips/train2017.zip'
# download annotations
download_and_extract_archive(url=annotations_url, download_root=coco_root)
print("COCO annotations downloaded and extracted successfully.")
# download train2017
download_and_extract_archive(url=train2017_url, download_root=coco_root)
print("COCO train2017 images downloaded and extracted successfully.")
# download val2017
download_and_extract_archive(url=val2017_url, download_root=coco_root)
print("COCO val2017 images downloaded and extracted successfully.")
# For 'coco person' the annotations already contain person info; we've downloaded val2017 + annotations
return coco_root
elif dataset_name == 'pascal_voc':
if _check_detection_dataset_already_exists(data_root=data_root, dataset_name='pascal_voc'):
print('Pascal VOC files found! Using existing files!')
# prefer VOCdevkit path if available
vocdev = os.path.join(data_root, 'VOCdevkit')
if os.path.exists(vocdev):
return vocdev
# fallback to data_root
return data_root
print(f'Files not found! Downloading Pascal VOC 2012 trainval into {data_root}')
voc_url = 'http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar'
# download into data_root; the tar contains VOCdevkit/VOC2012
download_and_extract_archive(url=voc_url, download_root=data_root)
print("Pascal VOC 2012 trainval dataset downloaded and extracted successfully.")
return os.path.join(data_root, 'VOCdevkit') if os.path.exists(os.path.join(data_root, 'VOCdevkit')) else data_root
else:
raise TypeError("The chosen dataset is not supported for detection. Choose one of: ['coco', 'coco person', 'pascal_voc']")
def _get_sample_paths(dataset_root: str = None, shuffle: bool = True, seed: int = None) -> list:
"""
Gets all the paths to .jpg image files and corresponding .tfs labels
files under a dataset root directory.
Image and label file paths are grouped in pairs as follows:
[
[dataset_root/basename_1.jpg, dataset_root/basename_1.tfs],
[dataset_root/basename_2.jpg, dataset_root/basename_2.tfs],
...
]
If the .tfs file that corresponds to a given .jpg file is missing,
the .jpg file is ignored.
If the function is called with the `shuffle` argument set to True
and without the `seed` argument, or with the `seed` argument set
to None, the file paths are shuffled but results are not reproducible.
if the `shuffle` argument is set to False, paths are sorted
in alphabetical order.
Arguments:
dataset_root:
A string, the path to the directory that contains the image
and labels files.
shuffle:
A boolean, specifies whether paths should be shuffled or not.
Defaults to True.
seed:
An integer, the seed to use to make paths shuffling reproducible.
Used only when `shuffle` is set to True.
Returns:
A list of [<image-file-path>, <labels-file-path>] pairs.
"""
if not os.path.isdir(dataset_root):
raise ValueError(f"Unable to find dataset directory {dataset_root}")
jpg_file_paths = glob.glob(os.path.join(Path(dataset_root), "*.jpg"))
if not jpg_file_paths:
raise ValueError(f"Could not find any .jpg image files in directory {dataset_root}")
tfs_file_paths = glob.glob(os.path.join(Path(dataset_root), "*.tfs"))
if not tfs_file_paths:
raise ValueError(f"Could not find any .tfs labels files in directory {dataset_root}")
if shuffle:
random.seed(seed)
random.shuffle(jpg_file_paths)
else:
jpg_file_paths.sort()
samples_paths = []
for jpg_path in jpg_file_paths:
tfs_path = os.path.join(dataset_root, Path(jpg_path).stem + ".tfs")
if os.path.isfile(tfs_path):
samples_paths.append([jpg_path, tfs_path])
return samples_paths
def _get_image_paths(dataset_root: str = None, shuffle: bool = True, seed: int = None) -> list:
"""
Gets all the paths to .jpg image files under a dataset root directory.
If the function is called with the `shuffle` argument set to True
and without the `seed` argument, or with the `seed` argument set
to None, the file paths are shuffled but results are not reproducible.
if the `shuffle` argument is set to False, paths are sorted
in alphabetical order.
Arguments:
dataset_root:
A string, the path to the directory that contains the image files.
shuffle:
A boolean, specifies whether file paths should be shuffled or not.
Defaults to True.
seed:
An integer, the seed to use to make paths shuffling reproducible.
Used only when `shuffle` is set to True.
Returns:
A list of image file paths.
"""
if not os.path.isdir(dataset_root):
raise ValueError(f"Unable to find dataset directory {dataset_root}")
jpg_file_paths = glob.glob(os.path.join(Path(dataset_root), "*.jpg"))
if not jpg_file_paths:
raise ValueError(f"Could not find any .jpg image files in directory {dataset_root}")
if shuffle:
random.seed(seed)
random.shuffle(jpg_file_paths)
else:
jpg_file_paths.sort()
return jpg_file_paths
def _split_file_paths(data_paths, split_ratio=None):
"""
Splits a list in two according to a specified split ratio.
Arguments:
paths:
A list, the list to split. Items can be either image file paths
or (image, labels) pairs of file paths.
split_ratio:
A float greater than 0 and less than 1, specifies the ratio
to use to split the input list.
Returns:
Two sub-lists of the input list. The length of the first sublist is
N*(1 - split_ratio) and the length of the second one is N*split_ratio.
"""
num_examples = len(data_paths)
size = num_examples - math.floor(split_ratio * num_examples)
return data_paths[:size], data_paths[size:]
def _create_image_and_labels_loader(
example_paths: list = None,
image_size: tuple = None,
batch_size: int = 64,
rescaling: tuple = None,
interpolation: str = None,
aspect_ratio: str = None,
color_mode: str = None,
normalize: bool = None,
clip_boxes: bool = True,
shuffle_buffer_size: bool = False,
prefetch: bool = False) -> tf.data.Dataset:
""""
Creates a tf.data.Dataset data loader for object detection.
Supplies batches of images with their groundtruth labels.
Labels in the dataset .tfs files must be in (class, x, y, w, h)
format. The (x, y, w, h) bounding box coordinates must be
normalized. The data loader converts them to a pair of diagonally
opposite corners coordinates (x1, y1, x2, y2), with either normalized
or absolute values.
As the coordinates of input bounding boxes are in normalized
(x, y, w, h) format, they don't need to be updated as the image
gets resized. They are invariant.
Arguments:
example_paths:
List of (<image-file-path>, <labels-file-path>) pairs,
each pair being a dataset example.
image_size:
A tuple of 2 integers: (width, height).
Size of the images supplied by the data loader.
batch_size:
An integer, the size of data batches supplied
by the data loader.
rescaling:
A tuple of 2 floats: (scale, offset). Specifies
the factors to use to rescale the input images.
interpolation:
A string, the interpolation method to use to resize
the input images.
aspect_ratio:
A string, the aspect ratio method to use to resize
the input images (fit, crop, pad).
color_mode:
A string, the color mode (rgb or grayscale).
normalize:
A boolean. If True, the coordinates values of the bounding
boxes supplied by the generator are normalized. If False,
they are absolute.
clip_boxes:
A boolean. If True, the coordinates of the bounding boxes
supplied by the generator are clipped to [0, 1] if they are
normalized and to the image dimensions if they are absolute.
If False, they are left as is.
Defaults to True.
shuffle_buffer_size:
An integer, specifies the size of the shuffle buffer.
If not set or set to 0, no shuffle buffer is used.
prefetch:
A boolean, specifies whether prefetch should be used.
Defaults to False.
Returns:
A tf.data.Dataset data loader.
"""
def _load_with_fit(data_paths):
image_path = data_paths[0]
labels_path = data_paths[1]
# Load the input image
channels = 1 if color_mode == "grayscale" else 3
data = tf.io.read_file(image_path)
image_in = tf.io.decode_jpeg(data, channels=channels)
if color_mode.lower()=='bgr':
image_in = image_in[...,::-1]
# Resize the input image
width_out = image_size[0]
height_out = image_size[1]
image_out = tf.image.resize(image_in, (height_out, width_out), method=interpolation)
# Rescale the output image
image_out = tf.cast(image_out, tf.float32)
image_out = rescaling[0] * image_out + rescaling[1]
# Load the input labels
data = tf.io.read_file(labels_path)
labels_in = tf.io.parse_tensor(data, out_type=tf.float32)
# Convert the input boxes coordinates from
# normalized (x, y, w, h) to absolute opposite
# corners coordinates (x1, y1, x2, y2)
boxes_out = bbox_center_to_corners_coords(
tf.expand_dims(labels_in[..., 1:], axis=0),
image_size=(width_out, height_out),
normalize=normalize,
clip_boxes=clip_boxes)
boxes_out = tf.squeeze(boxes_out)
# Concatenate classes and output boxes
labels_out = tf.concat([labels_in[..., 0:1], boxes_out], axis=-1)
return image_out, labels_out
def _load_with_crop_or_pad(data_paths):
image_path = data_paths[0]
labels_path = data_paths[1]
# Load the input image
channels = 1 if color_mode == "grayscale" else 3
data = tf.io.read_file(image_path)
image_in = tf.io.decode_jpeg(data, channels=channels)
# Resize the input image with crop or pad
width_out = image_size[0]
height_out = image_size[1]
image_out = tf.image.resize_with_crop_or_pad(image_in, height_out, width_out)
# Rescale the output image
image_out = tf.cast(image_out, tf.float32)
image_out = rescaling[0] * image_out + rescaling[1]
# Read the input labels
data = tf.io.read_file(labels_path)
labels_in = tf.io.parse_tensor(data, out_type=tf.float32)
# Convert the input boxes coordinates from
# normalized (x, y, w, h) to absolute opposite
# corners coordinates (x1, y1, x2, y2)
width_in = tf.shape(image_in)[1]
height_in = tf.shape(image_in)[0]
boxes_in = bbox_center_to_corners_coords(
tf.expand_dims(labels_in[..., 1:], axis=0),
image_size=(width_in, height_in),
normalize=False,
clip_boxes=True)
boxes_in = tf.squeeze(boxes_in)
# Convert input/output image dimensions to floats
w_in = tf.cast(width_in, tf.float32)
h_in = tf.cast(height_in, tf.float32)
w_out = tf.cast(width_out, tf.float32)
h_out = tf.cast(height_out, tf.float32)
# Calculate the opposite corners coordinates of the output boxes
x1 = tf.round(boxes_in[:, 0] - 0.5 * (w_in - w_out))
y1 = tf.round(boxes_in[:, 1] - 0.5 * (h_in - h_out))
x2 = tf.round(boxes_in[:, 2] - 0.5 * (w_in - w_out))
y2 = tf.round(boxes_in[:, 3] - 0.5 * (h_in - h_out))
# Keep track of boxes that are outside of the output
# image (this may happen when cropping the input image)
cond_x = tf.math.logical_or(x2 <= 0, x1 >= w_out)
cond_y = tf.math.logical_or(y2 <= 0, y1 >= h_out)
is_outside_image = tf.math.logical_or(cond_x, cond_y)
# Clip the calculated coordinates of the output
# boxes to the size of the output image
x1 = tf.math.maximum(x1, 0)
y1 = tf.math.maximum(y1, 0)
x2 = tf.math.minimum(x2, w_out)
y2 = tf.math.minimum(y2, h_out)
boxes_out = tf.stack([x1, y1, x2, y2], axis=-1)
if normalize:
boxes_out = tf.expand_dims(boxes_out, axis=0)
boxes_out = bbox_abs_to_normalized_coords(boxes_out, (w_out, h_out), clip_boxes=clip_boxes)
boxes_out = tf.squeeze(boxes_out)
# The output padding boxes include the boxes that
# are outside of the output image and the boxes
# that correspond to input padding boxes.
coords_sum = tf.math.reduce_sum(boxes_in, axis=-1)
is_padding = tf.math.less_equal(coords_sum, 0)
is_padding = tf.math.logical_or(is_outside_image, is_padding)
# Gather the labels that are not padding labels
classes = labels_in[:, 0:1]
labels_out = tf.concat([classes, boxes_out], axis=-1)
indices = tf.where(tf.math.logical_not(is_padding))
true_labels = tf.gather_nd(labels_out, indices)
# Create the padding labels
pad_size = tf.math.reduce_sum(tf.cast(is_padding, dtype=tf.int32))
padding_labels = tf.zeros([pad_size, 5], dtype=tf.float32)
# Concatenate the true labels and padding labels
labels_out = tf.concat([true_labels, padding_labels], axis=0)
return image_out, labels_out
ds = tf.data.Dataset.from_tensor_slices((example_paths))
if shuffle_buffer_size:
buffer_size = len(example_paths)
ds = ds.shuffle(buffer_size, reshuffle_each_iteration=True)
if aspect_ratio == "fit":
ds = ds.map(_load_with_fit)
else:
ds = ds.map(_load_with_crop_or_pad)
ds = ds.batch(batch_size)
if prefetch:
ds = ds.prefetch(tf.data.AUTOTUNE)
return ds
def _create_image_loader(
image_paths: list,
image_size: tuple = None,
batch_size: int = None,
rescaling: tuple = None,
interpolation: str = None,
aspect_ratio: str = None,
color_mode: str = None) -> tf.data.Dataset:
"""
Creates a tf.data.Dataset data loader for images.
Arguments:
image_paths:
List of paths to image files.
image_size:
A tuple of 2 integers: (width, height).
Specifies the size of the images supplied by
the data loader.
batch_size:
An integer, the size of data batches supplied
by the data loader.
rescaling:
A tuple of 2 floats: (scale, offset). Specifies
the factors to use to rescale the input images.
interpolation:
A string, the interpolation method to use to resize
the input images.
aspect_ratio:
A string, the aspect ratio method to use to resize
the input images (fit, crop, pad).
color_mode:
A string, the color mode (rgb or grayscale).
Returns:
A tf.data.Dataset data loader.
"""
def _load_image(img_path):
# Load the input image
channels = 1 if color_mode == "grayscale" else 3
data = tf.io.read_file(img_path)
image_in = tf.io.decode_jpeg(data, channels=channels)
if color_mode.lower() == 'bgr':
image_in = image_in[...,::-1]
# Resize the input image
width_out = image_size[0]
height_out = image_size[1]
if aspect_ratio == "fit":
image_out = tf.image.resize(image_in, (height_out, width_out), method=interpolation)
else:
image_out = tf.image.resize_with_crop_or_pad(image_in, height_out, width_out)
# Rescale the output image
image_out = tf.cast(image_out, tf.float32)
# image_out = rescaling[0] * image_out + rescaling[1]
if isinstance(rescaling[0], (list, tuple)) or isinstance(rescaling[1], (list, tuple)):
# Assuming rescaling[0] and rescaling[1] are lists/tuples of length equal to number of channels
variances = tf.constant(rescaling[0], dtype=tf.float32)
means = tf.constant(rescaling[1], dtype=tf.float32)
image_out = (image_out / variances ) + means
else:
# Default scalar rescaling
image_out = rescaling[0] * image_out + rescaling[1]
return image_out, tf.convert_to_tensor(img_path)
ds = tf.data.Dataset.from_tensor_slices(image_paths)
ds = ds.map(_load_image)
ds = ds.batch(batch_size)
return ds
def _find_jpg_tfs_pairs(directory):
jpg_files = glob.glob(os.path.join(directory, '*.jpg'))
pairs = []
for jpg in jpg_files:
base = os.path.splitext(os.path.basename(jpg))[0]
tfs = os.path.join(directory, base + '.tfs')
if os.path.isfile(tfs):
pairs.append((jpg, tfs))
return pairs
def _move_files(file_pairs, dest_dir):
os.makedirs(dest_dir, exist_ok=True)
for jpg, tfs in file_pairs:
shutil.move(jpg, os.path.join(dest_dir, os.path.basename(jpg)))
shutil.move(tfs, os.path.join(dest_dir, os.path.basename(tfs)))
def get_training_dataloader(
cfg: DictConfig,
image_size: tuple = None,
train_batch_size: int = None,
val_batch_size: int = None,
normalize: bool = True,
clip_boxes: bool = True,
seed: int = None,
verbose: bool = True) -> tf.data.Dataset:
training_path = cfg.dataset.training_path
data_dir = getattr(cfg.dataset, 'data_dir', None)
validation_path = getattr(cfg.dataset, 'validation_path', None)
validation_split = cfg.dataset.validation_split
# Check if training_path contains jpg/tfs pairs
train_pairs = _find_jpg_tfs_pairs(training_path)
if len(train_pairs) == 0:
# If no pairs in training_path, check data_dir
if data_dir is None:
raise RuntimeError(f"No jpg/tfs pairs found in training_path '{training_path}' and no data_dir defined.")
data_dir_pairs = _find_jpg_tfs_pairs(data_dir)
if len(data_dir_pairs) == 0:
raise RuntimeError(f"No jpg/tfs pairs found in both training_path '{training_path}' and data_dir '{data_dir}'.")
# Split pairs into train and val
import random
if seed is not None:
random.seed(seed)
random.shuffle(data_dir_pairs)
split_index = int(len(data_dir_pairs) * (1 - validation_split))
train_split_pairs = data_dir_pairs[:split_index]
val_split_pairs = data_dir_pairs[split_index:]
# Move train files to training_path
_move_files(train_split_pairs, training_path)
# Determine validation_path if not defined
if validation_path is None:
parent_dir = os.path.dirname(training_path.rstrip('/\\'))
validation_path = os.path.join(parent_dir, 'val')
cfg.dataset.validation_path = validation_path # Update config dynamically if needed
# Move val files to validation_path
_move_files(val_split_pairs, validation_path)
if verbose:
print(f"Moved {len(train_split_pairs)} jpg/tfs pairs to training_path: {training_path}")
print(f"Moved {len(val_split_pairs)} jpg/tfs pairs to validation_path: {validation_path}")
if not image_size:
val_image_size = cfg.model.input_shape[:2]
train_image_size = cfg.model.input_shape[:2]
else:
train_image_size = image_size
val_image_size = image_size
if cfg.data_augmentation and cfg.data_augmentation.random_periodic_resizing is not None:
random_sizes = tf.cast(cfg.data_augmentation.random_periodic_resizing.image_sizes, tf.int32)
train_image_size = random_sizes[tf.argmax(tf.reduce_prod(random_sizes, -1))]
if not train_batch_size:
train_batch_size = cfg.training.batch_size
if not val_batch_size:
val_batch_size = cfg.training.batch_size
cds = cfg.dataset
if not seed:
seed = cds.seed
train_example_paths = _get_sample_paths(cds.training_path, seed=seed)
if cds.validation_path:
val_example_paths = _get_sample_paths(cds.validation_path, seed=seed)
else:
train_example_paths, val_example_paths = _split_file_paths(
train_example_paths, split_ratio=cds.validation_split)
if verbose:
print("Training set:")
print(" path:", cds.training_path)
print(" size:", len(train_example_paths))
print("Validation set:")
if cds.validation_path:
print(" path:", cds.validation_path)
else:
print(" created using {:.1f}% of the training data {}".format(100 * cds.validation_split, cds.training_path))
print(" size:", len(val_example_paths))
cpp = cfg.preprocessing
train_ds = _create_image_and_labels_loader(
train_example_paths,
image_size=train_image_size,
batch_size=train_batch_size,
rescaling=(cpp.rescaling.scale, cpp.rescaling.offset),
interpolation=cpp.resizing.interpolation,
aspect_ratio=cpp.resizing.aspect_ratio,
color_mode=cpp.color_mode,
normalize=normalize,
clip_boxes=clip_boxes,
shuffle_buffer_size=True,
prefetch=True)
val_ds = _create_image_and_labels_loader(
val_example_paths,
image_size=val_image_size,
batch_size=val_batch_size,
rescaling=(cpp.rescaling.scale, cpp.rescaling.offset),
interpolation=cpp.resizing.interpolation,
aspect_ratio=cpp.resizing.aspect_ratio,
color_mode=cpp.color_mode,
normalize=normalize,
clip_boxes=clip_boxes)
return train_ds, val_ds
def get_evaluation_dataloader(
cfg: DictConfig,
image_size: tuple = None,
val_batch_size: int = 64,
normalize: bool = None,
clip_boxes: bool = True,
seed: int = None,
verbose: bool =True) -> tf.data.Dataset:
"""
Creates a data loader for evaluating a model.
The evaluation dataset is chosen in the following precedence order:
1. test set
2. validation set
3. validation set created by splitting the training set
Arguments:
cfg:
A dictionary, the entire configuration file dictionary.
image_size:
A tuple of 2 integers: (width, height).
Specifies the size of the images supplied by
the data loaders.
batch_size:
An integer, the size of data batches supplied
by the data loader.
Defaults to 64.
normalize:
A boolean. If True, the coordinates values of the bounding
boxes supplied by the generators are normalized. If False,
they are absolute.
Defaults to True.
clip_boxes:
A boolean. If True, the coordinates of the bounding boxes
supplied by the generators are clipped to [0, 1] if they are
normalized and to the image dimensions if they are absolute.
If False, they are left as is.
Defaults to True.
seed:
An integer, the seed to use to make file paths shuffling and
training set splitting reproducible.
Defaults to cfg.dataset.seed
verbose:
A boolean. If True, the dataset path and size are displayed.
If False, no message is displayed.
Default to True.
Returns:
A tf.data.Dataset data loader
"""
cds = cfg.dataset
if not seed:
seed = cds.seed
if cds.test_path:
example_paths = _get_sample_paths(cds.test_path, seed=seed)
elif cds.validation_path:
example_paths = _get_sample_paths(cds.validation_path, seed=seed)
else:
train_example_paths = _get_sample_paths(cds.training_path, seed=seed)
_, example_paths = _split_file_paths(train_example_paths, split_ratio=cds.validation_split)
if verbose:
print("Evaluation dataset:")
if cds.test_path:
print(" path:", cds.test_path)
elif cds.validation_path:
print(" path:", cds.validation_path)
else:
print(" created using {:.1f}% of training data {}".
format(100*cds.validation_split, cds.training_path))
print(" size:", len(example_paths))
cpp = cfg.preprocessing
test_ds = _create_image_and_labels_loader(
example_paths,
image_size=image_size,
batch_size=val_batch_size,
rescaling=(cpp.rescaling.scale, cpp.rescaling.offset),
interpolation=cpp.resizing.interpolation,
aspect_ratio=cpp.resizing.aspect_ratio,
color_mode=cpp.color_mode,
normalize=normalize,
clip_boxes=clip_boxes)
return test_ds
def get_quantization_dataloader(
cfg: DictConfig,
image_size: tuple = None,
batch_size: int = 1,
image_paths_only: bool = False,
seed: int = None,
verbose: bool = True) -> tf.data.Dataset:
"""
Creates a data loader for quantizing a float model.
The dataset is chosen in the following precedence order:
1. quantization set
2. test set
2. training set
If a quantization split ratio was set, the chosen dataset
is split accordingly. Otherwise, it is used entirely.
If no dataset is available, the function returns None.
In this case, quantization will be done using fake data.
Arguments:
cfg:
A dictionary, the entire configuration file dictionary.
image_size:
A tuple of 2 integers: (width, height).
Specifies the size of the images supplied by
the data loaders.
batch_size:
An integer, the size of data batches supplied by the data
loader. Defaults to 1.
seed:
An integer, the seed to use to make file paths shuffling and
dataset splitting reproducible.
Defaults to cfg.dataset.seed
verbose:
A boolean. If True, the dataset path and size are displayed.
If False, no message is displayed.
Default to True.
Returns:
A tf.data.Dataset data loader
"""
# Quantize with fake data if quantization_split is set to 0
cds = cfg.dataset
if cds.quantization_split is not None and cds.quantization_split == 0:
return None
# Look for a dataset
if cds.quantization_path:
ds_path = cds.quantization_path
elif cds.training_path:
ds_path = cds.training_path
else:
# No dataset available, quantize with fake data
return None
if not seed:
seed = cds.seed
image_paths = _get_image_paths(ds_path, shuffle=True, seed=seed)
if cds.quantization_split:
num_images = int(len(image_paths) * cds.quantization_split)
percent_used = "{:.3f}%".format(100 * cds.quantization_split)
else:
# quantization_split is not set, get the entire dataset.
num_images = len(image_paths)
percent_used = "100% (use quantization_split to choose a different percentage)"
image_paths = image_paths[:num_images]
if verbose:
print("Quantization dataset:")
print(" path:", ds_path)
print(f" percentage used: {percent_used}")
print(f" number of images: {num_images}")
if not image_paths_only:
cpp = cfg.preprocessing
quantization_ds = _create_image_loader(
image_paths,
image_size=image_size,
batch_size=batch_size,
rescaling=(cpp.rescaling.scale, cpp.rescaling.offset),
interpolation=cpp.resizing.interpolation,
aspect_ratio=cpp.resizing.aspect_ratio,
color_mode=cpp.color_mode)
return quantization_ds
else:
return image_paths
def get_prediction_dataloader(
cfg: DictConfig,
image_size: tuple = None,
batch_size: int = 64,
seed: int = None,
verbose: bool = True) -> tf.data.Dataset:
"""
Creates a data loader for making predictions.
Arguments:
cfg:
A dictionary, the entire configuration file dictionary.
image_size:
A tuple of 2 integers: (width, height).
Specifies the size of the images supplied by
the data loaders.
batch_size:
An integer, the size of data batches supplied by the data
loader. Defaults to 64.
seed:
An integer, the seed to use to make file paths shuffling
reproducible.
Defaults to cfg.prediction.seed
verbose:
A boolean. If True, the dataset path and size are displayed.
If False, no message is displayed.
Default to True.
Returns:
A tf.data.Dataset data loader
"""
if not seed:
seed = cfg.prediction.seed
image_paths = _get_image_paths(cfg.dataset.prediction_path, seed=seed)
if verbose:
print("Prediction dataset:")
print(" path:", cfg.dataset.prediction_path)
print(" size:", len(image_paths))
print(" sampling seed:", cfg.prediction.seed)
cpp = cfg.preprocessing
predict_ds = _create_image_loader(
image_paths,
image_size=image_size,
batch_size=batch_size,
rescaling=(cpp.rescaling.scale, cpp.rescaling.offset),
interpolation=cpp.resizing.interpolation,
aspect_ratio=cpp.resizing.aspect_ratio,
color_mode=cpp.color_mode)
return predict_ds
def load_subset_dataloaders(cfg: DictConfig = None,
is_training: bool = False,
is_evaluation: bool = False,
is_prediction: bool = False,
is_quantization: bool = False,
image_size: tuple[int] = None,
train_batch_size: int = None,
val_batch_size: int= None,
seed: int = None
) -> dict[str, tf.data.Dataset]:
"""
Creates and returns a dictionary of TensorFlow datasets for requested data splits
(train, validation, quantization, test, and prediction) from a COCO-like dataset structure.
Each dataset is configured according to the provided config and automatically prefetched.
Args:
cfg (DictConfig): Configuration object containing dataset paths, preprocessing settings,
and training parameters. Must include dataset and preprocessing sections.
is_training (bool): Whether to load training and validation datasets.
is_evaluation (bool): Whether to load the test dataset.
is_prediction (bool): Whether to load the prediction dataset.
is_quantization (bool): Whether to load the quantization dataset.
image_size (tuple[int], optional): Target (height, width) for resizing images.
If None, uses size from cfg.model.input_shape.
batch_size (int, optional): Batch size for test dataset.
Training/validation use cfg.training.batch_size,
quantization/prediction use batch_size=1.
seed (int, optional): Random seed for shuffling. If None, uses seed from config.
Returns:
dict[str, tf.data.Dataset]: Dictionary containing dataset splits with keys:
- 'train': Training dataset or None
- 'valid': Validation dataset or None
- 'quantization': Quantization dataset or None
- 'test': Test dataset or None
- 'predict': Prediction dataset or None
Each loaded dataset is prefetched using tf.data.AUTOTUNE for optimal performance.
"""
train_ds, val_ds = None, None
test_ds = None
quantization_ds = None
predict_ds = None
if is_training:
train_ds, val_ds = get_training_dataloader(cfg=cfg,
image_size=image_size,
train_batch_size=cfg.training.batch_size,
val_batch_size=val_batch_size)
if is_evaluation:
test_ds = get_evaluation_dataloader(cfg=cfg,
image_size=image_size,
normalize=False,
val_batch_size=val_batch_size)
if is_quantization:
quantization_ds = get_quantization_dataloader(cfg=cfg,
image_size=image_size,
batch_size=1)
if is_prediction:
predict_ds = get_prediction_dataloader(cfg=cfg,
image_size=image_size,
batch_size=1,
seed=seed)
return {
'train': train_ds,
'valid': val_ds,
'quantization': quantization_ds,
'test': test_ds,
'predict': predict_ds
}
|