Image augmentation for machine learning experiments.
machine-learning
deep-learning
images
heatmap
crop
contrast
polygon
keypoints
affine-transformation
bounding-boxes
image-augmentation
augmentation
segmentation-maps
augment-images
-
Updated
Apr 7, 2022 - Python
Enhancement
A discussion in #614 revealed a good place for improvement - we should ensure that input image is continuous upon start of the augmentation pipeline. This could be implemented by adding
image = np.ascontiguousarray(image)to image and mask targets.A proposed place to add this call - somewhere at the beginning of
A.Compose.__call__.