Info

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

finding headerline and transformation

1 回表示 (過去 30 日間)
ganesh
ganesh 2013 年 12 月 9 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have a binary image that contains a headerline. I want to transform image so that header line will be in horizontal direction.

回答 (1 件)

Sean de Wolski
Sean de Wolski 2013 年 12 月 9 日
Use flipud or, in R2013b or greater, flip.
I = imread('1.jpg');
imshow(flipud(I))
And:
doc flipud

Community Treasure Hunt

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

Start Hunting!

Translated by