フィルターのクリア

to flip an image block across main diagonal line y=x

11 ビュー (過去 30 日間)
Indu Aggarwal
Indu Aggarwal 2015 年 5 月 1 日
コメント済み: Indu Aggarwal 2015 年 5 月 8 日
I have an image of size 256x256 and it is divided into 58081 overlapping blocks of size 16x16. I flipped each and every block vertically and horizontally using flipdim(image block, dimension)function. Is there any function to flip every block across the main diagonal line y=x?
  1 件のコメント
Image Analyst
Image Analyst 2015 年 5 月 1 日
If they're overlapping , then it must look like a totally unrecognizable mess as some pixels get flipped over and over and over again and end up who knows where.

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

採用された回答

Jeff E
Jeff E 2015 年 5 月 1 日
transpose
img_block_diag = transpose(img_block);
  1 件のコメント
Indu Aggarwal
Indu Aggarwal 2015 年 5 月 8 日
It works. Thank you very much.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeColor Space Formatting and Conversions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by