GAN Training: Error with augmented image datastore

25 ビュー (過去 30 日間)
Nabiilah
Nabiilah 2020 年 8 月 2 日
編集済み: Walter Roberson 2020 年 8 月 3 日
Hi, I had this script running with one dataabse, however the generated images were far too pixelated, so I decided to switch the database to another(and nothing else) and now I'm getting the below error. I'm new to this, could I please have some help debugging it?
Error using augmentedImageDatastore/applyAugmentationPipeline (line 391)
augmentedImageDatastore cannot form MiniBatches of data because input image sizes differ in 3rd
dimension. Consider using 'ColorPreprocessing' option to ensure all augmented images have same
number of channels.
Error in augmentedImageDatastore>@(c)self.applyAugmentationPipeline(c) (line 372)
Xout = cellfun(@(c) self.applyAugmentationPipeline(c),X,'UniformOutput',false);
Error in augmentedImageDatastore/applyAugmentationPipelineToBatch (line 372)
Xout = cellfun(@(c) self.applyAugmentationPipeline(c),X,'UniformOutput',false);
Error in augmentedImageDatastore/read (line 308)
input = self.applyAugmentationPipelineToBatch(input);
Error in GANUTKFace (line 168)
data = read(augimds);

採用された回答

Walter Roberson
Walter Roberson 2020 年 8 月 2 日
編集済み: Walter Roberson 2020 年 8 月 3 日
You presently have a mix of rgb and grayscale images and need to be consistent; the option can automatically convert
  2 件のコメント
Nabiilah
Nabiilah 2020 年 8 月 3 日
Thank you for clarifying that, where in the script would I specify this option please?
Nabiilah
Nabiilah 2020 年 8 月 3 日
編集済み: Nabiilah 2020 年 8 月 3 日
I got it to work by adding the ColorReprocessing option to the below:
%Augment the data to include random horizontal flipping and to resize the image to 64x64
augmenter = imageDataAugmenter('RandXReflection', true);
augimds = augmentedImageDatastore([64 64], imds,'ColorPreprocessing', 'gray2rgb', 'DataAugmentation', augmenter);
Thank you :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRecognition, Object Detection, and Semantic Segmentation についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by