I need to match following images
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
kavya p
el 27 de En. de 2015
Comentada: Shoaibur Rahman
el 30 de En. de 2015
The following images are edge detected image I need to find precentage of matching
<</m
>>
0 comentarios
Respuesta aceptada
Shoaibur Rahman
el 27 de En. de 2015
There are many sophisticated methods to do so. However, you can try with:
out = ssim(TestImage,refImage)
This computes the structural similarity index value for TestImage using refImage as the reference image.
out = 0, no matching out = 1, perfect matching So, you can convert the out value into percentage to find precentage of matching.
2 comentarios
Shoaibur Rahman
el 30 de En. de 2015
You can find that function here: http://www.mathworks.com/matlabcentral/fileexchange/42238-an-edge-adaptive-directional-total-variation-model/content/ssim.m
Más respuestas (0)
Ver también
Categorías
Más información sobre Computer Vision with Simulink 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!