vidaug icon indicating copy to clipboard operation
vidaug copied to clipboard

Effective Video Augmentation Techniques for Training Convolutional Neural Networks

Results 12 vidaug issues
Sort by recently updated
recently updated
newest added

Hello, First, I would like to thank you for this tremendous contribution to video data augmentation. I am looking for a way to use video data augmentation while training models...

Thank you for providing your code. While checking the example code ``` for batch_idx in range(1000): # 'video' should be either a list of images from type of numpy array...

Hello How are you? Thanks for contributing to this project. I have a question. Does this library contain a camera motion augmentation? Here the camera motion means a camera's vibration(shaking)....

I can not get the right effect for superpixel augmentation with the original video on the homepage. Would you please tell me what is the proper parameter configuration for the...

Added two new augmenters: DropRandomFrames : Randomly drops each frame in the video with a set probability DuplicateRandomFrames: Randomly duplicates each frame in the video with a set probability

Hello okankop! This is a really impressive repo and it definitely saved me from writing those data augmentation functions. Thanks greatly for the great work! But I do think it...

`nb_return_frame = np.floor(self.ratio * len(clip))` numpy floor return a value in float64 and linspace function doesn't support float to integer conversion. `nb_return_frame = int(np.floor(self.ratio * len(clip)))` I tried to run...

np.float deprecated since numpy 1.20.0 and removed from numpy 1.24.0. So, np.float is replaced with np.float64 as suggested by numpy warning.

Hi! First of all: thanks for this awesome package! But I'm receiving this numpy error: ``` AttributeError: module 'numpy' has no attribute 'float'. `np.float` was a deprecated alias for the...

Hey, when using RandomRotate with numpy arrays, the images are normalized. For most use cases it might be preferable to prevent the range of input imgs. Skikit.transform.rotate has the flag...