python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Changing RGB channel intensities using Keras ImageDataGenerator
I have been trying to augment my around 360 images while training a model. This is how the code looks like
img_data_gen_args = dict(rotation_range=90,
width_shift_range=0.3,
...
Dan Py
Votes: 0
Answers: 1
Image augmentation on deep learning training data
I have a question about mean and standard deviation in image augmentation.
Are the two parameters recommended to be filled in?
If so, how could I know the number? Do I have to iterate through the data...
Amnesie
Votes: 0
Answers: 1
Image Augmentation - TypeError: only size-1 arrays can be converted to Python scalars
I have a dataset of 279 images and i wish to perform augmentations with batch size of 4. Following is the code sample that i have written
import numpy as np
from skimage import io
import os
from PIL i...
DevanDev
Votes: 0
Answers: 1
Is it possible to iterate through Tensor in graph mode?
I am trying to implement Aleju's Imgaug to TFOD API. Noticed that you can not iterate through Tensors in the graph mode . I looked up for the solution and tried many suggestions but neither of them wo...
Ahmet Mert Saygu
Votes: 0
Answers: 1