Borrar filtros
Borrar filtros

How to get bilateral symmetry axis?

1 visualización (últimos 30 días)
Diah
Diah el 3 de Dic. de 2012
I have an image, and I have extracted the region of interest (ROI). This ROI have bilateral symmetry shape. How can I get the bilateral symmetry axis for it?

Respuestas (1)

Matt J
Matt J el 12 de Dic. de 2012
Editada: Matt J el 12 de Dic. de 2012
Maybe as follows.
fa=@(X) norm(X(:) - reshape(flipud(X),[],1) );
fb=@(theta) fa(imrotate(TheROI,-theta));
AngleOfAxis = fminsearch(fb,0)

Categorías

Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by