albumentations_examples
albumentations_examples copied to clipboard
Augmentations usage examples for albumentations library
I found that it works at the moment with ``` !pip install opencv-python-headless==4.1.2.30 ``` in example_bboxes.pynb, but it might be a more general problem.
def forward(ctx, classifications, regressions, anchors, annotations):
it is mentioned how to convert torchvision transform:normalize to albumetaions transform:normalize when using the same pipe line. but it is not metioned how to convert torchvision normalize to albumentaions normalize...
Hi, I occasionally get this error when I use A.RandomShadow(p=0.5). If I disable this augmenter in the conveyor, the error does not appear anymore. What can it be related to?...
Hello How are you? Thanks for contributing to this project. I am going to implement an operation for center-padding along with the shortest side while keeping the longest side. There...
## Running [`pytorch_semantic_segmentation.ipynb`](https://github.com/albumentations-team/albumentations_examples/blob/master/notebooks/pytorch_semantic_segmentation.ipynb) confronts a bug: > AttributeError: module 'albumentations.augmentations.functional' has no attribute 'resize' ## Fix: > In [28]: full_sized_mask = F.resize( to > In [28]: full_sized_mask = A.resize(
Hi, thanks for providing this awesome package :) Is the problem just me or has it been seen by others? ...\lib\site-packages\albumentations\augmentations\functional.py:1258: RuntimeWarning: divide by zero encountered in power table =...
AttributeError Traceback (most recent call last) [](https://localhost:8080/#) in () 3 image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) 4 ----> 5 resized_image = F.resize(image, height=256, width=256) 6 padded_image = F.pad(image, min_height=512, min_width=512) 7 padded_constant_image...
This is like the[ issue #136](https://github.com/albumentations-team/albumentations/issues/136) that was closed 2 years ago. I would like to request a Google Colab example of using Albumentations in TensorFlow for Test Time Augmentations...