We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
p2ch13/model.py の _build2dTransformMatrixについて質問です アフィン変換のoffsetの部分(110行目)は
transform_t[2, i] = offset_float * random_float
ではなく
transform_t[i, 2] = offset_float * random_float
ではないでしょうか?1行3列目と2行3列目に移動量を適応させるべきと思ったのですが, 間違っていたらすみません。
The text was updated successfully, but these errors were encountered:
SStakafumi さま
ご質問いただきありがとうございます。 また、ご連絡が大変遅くなり誠に申し訳ございません。
該当部分を確認したところ、SStakafumi 様にご指摘いただいたとおり
が正しいです。
ご報告していただき誠にありがとうございます。 今後ともよろしくお願いいたします。
Sorry, something went wrong.
No branches or pull requests
p2ch13/model.py の _build2dTransformMatrixについて質問です
アフィン変換のoffsetの部分(110行目)は
transform_t[2, i] = offset_float * random_float
ではなく
transform_t[i, 2] = offset_float * random_float
ではないでしょうか?1行3列目と2行3列目に移動量を適応させるべきと思ったのですが, 間違っていたらすみません。
The text was updated successfully, but these errors were encountered: