フィルターのクリア

How to find out height of the charcter image where the pixel value not wqual to zero?

1 回表示 (過去 30 日間)
Minu
Minu 2013 年 6 月 11 日
Hi
How to find the minimum and maximum position of pixel value that is not equal to zero? ie, I want to find out height of the character image when we segment the image into lines.How to solve this.Help me please...

回答 (1 件)

Matt J
Matt J 2013 年 6 月 11 日
編集済み: Matt J 2013 年 6 月 11 日
[i,~]=find(image);
height = min(i)-max(i) + 1;

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by