OutputSizeMode error in augmentedImageDatastore?
1 view (last 30 days)
Show older comments
The images in my dataset are all 512x512 color images but when I process them with the following code:
imageSize=[299 299];
imageAugmenter = imageDataAugmenter('RandXReflection',true, 'RandXTranslation',[-100 100],'RandYTranslation',[-100 100],'RandRotation',[-5,5]);
augimdsTrain = augmentedImageDatastore(imageSize,imdsTrain,'DataAugmentation',imageAugmenter,'OutputSizeMode','centercrop');
augimdsValidation = augmentedImageDatastore(imageSize,imdsValidation,'OutputSizeMode','centercrop');
I get the error that the image size should be smaller then OutputSizeMode which is already true as the images are larger then [299 299]. Please assist me to guide where I am wrong.
When 'OutputSizeMode' in augmentedImageDatastore is 'centercrop', requested 'OutputSize' must be smaller than input image size.
0 Comments
Answers (0)
See Also
Categories
Find more on Read, Write, and Modify Image in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!