I need to match following images
1 次查看(过去 30 天)
显示 更早的评论
The following images are edge detected image I need to find precentage of matching
<</m
>>
0 个评论
采纳的回答
Shoaibur Rahman
2015-1-27
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 个评论
Shoaibur Rahman
2015-1-30
You can find that function here: http://www.mathworks.com/matlabcentral/fileexchange/42238-an-edge-adaptive-directional-total-variation-model/content/ssim.m
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision with Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!