finding headerline and transformation
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
I have a binary image that contains a headerline. I want to transform image so that header line will be in horizontal direction.
0 件のコメント
回答 (1 件)
Sean de Wolski
2013 年 12 月 9 日
Use flipud or, in R2013b or greater, flip.
I = imread('1.jpg');
imshow(flipud(I))
And:
doc flipud
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!