フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can i know that dataaugmentation works correctly ? this function will do that ?

1 回表示 (過去 30 日間)
Afaf Saad
Afaf Saad 2018 年 9 月 22 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
imageAugmenter = imageDataAugmenter( ... 'RandRotation',[90 270], ... 'RandXReflection',true)
Iam trying to rotate my images to 90, 180, 270.
  2 件のコメント
Afaf Saad
Afaf Saad 2018 年 9 月 22 日
I don’t understand I want to rotate every image 90 degree and 180 degree and 270 degree

回答 (1 件)

Image Analyst
Image Analyst 2018 年 9 月 22 日
Help says:
Range of rotation, in degrees, applied to the input image, specified as one of the following.
2-element numeric vector. The second element must be larger than or equal to the first element. The rotation angle is picked randomly from a continuous uniform distribution within the specified interval.
function handle. The function must accept no input arguments and return the rotation angle as a numeric scalar. Use a function handle to pick rotation angles from a disjoint interval or using a nonuniform probability distribution. For more information about function handles, see Create Function Handle (MATLAB).
So you need to supply a function handle instead of a 2-element range. Your function should randomly give one of the 3 values you want.
  1 件のコメント
Walter Roberson
Walter Roberson 2018 年 9 月 22 日
And if each image is to be rotated by each of those three values exactly once, then you should not use imageDataAugmenter, which is for making random changes.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by