Info
此问题已关闭。 请重新打开它进行编辑或回答。
finding headerline and transformation
1 次查看(过去 30 天)
显示 更早的评论
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!