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