Skip to main content
1 vote
0 answers
112 views

We are using YOLO for object detection in satellite images to detect greenhouses. I'm annotating images through Roboflow. I've downloaded satellite images with different zoom levels. (zoom level means ...
Akila premarathna's user avatar
0 votes
0 answers
74 views

I'm new to tensorflow. I want to generate more images after image augmentation but images and labels are (10, None, 400, 400, 3) and (10, None, 1) respectively and I guess it artifically count as 1 ...
CChickii's user avatar
0 votes
0 answers
56 views

according to me, the given code should create 5700 images, which is 10 times the number of original images, instead, when I check the shape of it, it only gives 1140, which is twice the number of ...
dhruv Gangwani's user avatar
1 vote
1 answer
113 views

I'm following a tutorial on data augmentation by aladdin persson. In the tutorial, some preprocessing modules in tensorflow were still being experimented as at time (3yrs ago) such as RandomFlip, ...
Isesele Victor's user avatar
0 votes
1 answer
3k views

I am trying to implement prime augmentation on my dataset. Previously I was getting error raise ValueError('pic should be 2/3 dimensional. Got {} dimensions.'.format(pic.ndim)) ValueError: pic should ...
sccomp's user avatar
  • 17
0 votes
0 answers
491 views

I am trying to implement an augmentation function to my images and masks, I have defined the augmentations like below: if config.AUG == "PRIMEAugmentation": augmentations = [autocontrast,...
sccomp's user avatar
  • 17
0 votes
1 answer
83 views

I am trying to implement an augmentation function to my images and masks, I have defined the augmentations like below: if config.AUG == "PRIMEAugmentation": augmentations = [autocontrast,...
sccomp's user avatar
  • 17
0 votes
1 answer
73 views

I want to create an image dataset of leaf dataset. For this i captured images and found 6 classes, each classes has roughly 70-60 images. Noe while creating training and validation set, i know i ...
NazmulNafim's user avatar
0 votes
1 answer
37 views

This is my code. I have defined various operations like this: def identity(pil_img, pil_mask, _): return pil_img, pil_mask def autocontrast(pil_img, pil_mask, _): return ImageOps.autocontrast(...
Green_Cat's user avatar
1 vote
2 answers
1k views

I am trying to write a simple code to teach resnet50 on ImageNet dataset. I don't quite get why normalization does not work. When I use this transformation as data augmentation: train_transforms = ...
Chuck's user avatar
  • 65
0 votes
1 answer
602 views

I'm trying to expand the volume of my dataset using an image augmentation package called albumentations. I have 1145 images and their corresponding annotations labelled in Yolo format. I'm having a ...
baibhab07's user avatar
0 votes
1 answer
180 views

I'm trying to augment the ISIC 2019 dataset images with 9 classes. The 'NV' class is overrepresented (12876 of a total of 25331 images) so I'd like to exclude it from the augmentation process but ...
mongoq's user avatar
  • 21
1 vote
1 answer
758 views

I'm working on a custom Faster RCNN with Detectron2 framework and I have a doubt about transformation during training and inference. I created a custom Trainer inheriting from DefaultTrainer class and ...
Agostino Dorano's user avatar
1 vote
0 answers
1k views

In my project I have dataset of original images and correcponding masks. I want to perform augmentation so it is random, yet same for image and matching mask. For this I have defined keras sequential ...
Jan Mareš's user avatar
0 votes
1 answer
368 views

i used image augmentation in pytorch before training in unet like this class ProcessTrainDataset(Dataset): def __init__(self, x, y): self.x = x self.y = y self.pre_process = transforms....
anastasia's user avatar

15 30 50 per page
1
2 3 4 5 6