How to find object is vertically or horizontally symmetry ?

5 ビュー (過去 30 日間)
Shivang Patel
Shivang Patel 2015 年 2 月 4 日
コメント済み: Shivang Patel 2015 年 2 月 4 日
i want to find symmetry mainly for character... handwritten . Like "A", "H" are the vertically symmetry and same as "C","K" are the horizontally... so how i find that this latter is symmetry. And how it also work with object have some angle...Because handwritten characters have some angles...
Thanks in advance.
Images like...
and

採用された回答

Rusty
Rusty 2015 年 2 月 4 日
編集済み: Rusty 2015 年 2 月 4 日
let the matrix be A
if A== fliplr(A)
%this means that it has vertical symmetry
disp(' it is vertically symmetrical ');
end
if A==flipud(A)
%this means that it has horizontal symmetry
disp(' it is horizontally symmetrical ');
end
  1 件のコメント
Shivang Patel
Shivang Patel 2015 年 2 月 4 日
First to Thanks for descriptive replay.
As i mention, I want this for handwritten character. and handwritten characters have some angle.... this thing not working with it...

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by