Info
此问题已关闭。 请重新打开它进行编辑或回答。
I have a copy move forged image, want to match extracted features and display the result on my image(i just have a single image)
1 次查看(过去 30 天)
显示 更早的评论
I have a copy move forged image, have used detectMinEigenFeatures for corners and extracted feature descriptors using extractfeatures function and want to match them and display the result on my image(i just have a single image). Have used the Pdist function->linkage function->cluster function, but can't display on my image corners = detectMinEigenFeatures(HR); [features, valid_corners] = extractFeatures(HR, corners); D=pdist(double(features.Features)); DS=squareform(D); Z = Linkage(DS); T = cluster(Z,'maxclust',4); Plot on image???
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!