対応点のマッチングする関数を教えてください.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
koji Akano
el 16 de En. de 2017
Comentada: Tohru Kikawada
el 20 de En. de 2017
二つの異なった画像のコーナー検出を行いました. この後,二つの異なった画像の対応点のマッチングをしたいのですが,matlab内の関数でどのようなものが相応しいでしょうか. basic matching(http://www.vlfeat.org/overview/sift.html)のような処理を行いたいのですが,処理に相応しい関数を存じ上げませんので,どなたかご存知の方はいらっしゃいませんか. vl_siftという関数は未定義と表記され実行できませんので別の関数を実行する必要があります.
私は救いようの無い馬鹿ですが,なにとぞよろしくお願いします. 誰か救ってください.
知識がなさ過ぎてすみません.
ーーーーーーーーーーーーーーーコーナー検出ーーーーーーーーーーーーーーーーーー
I = imread('DSC07471.JPG');
I= rgb2gray(I);
corners = detectFASTFeatures(I,'MinContrast',0.1);
J = insertMarker(I,corners,'circle');
figure;
imshow(J);
I2 = imread('DSC07472.JPG');
I2= rgb2gray(I2);
corners = detectFASTFeatures(I2,'MinContrast',0.1);
J = insertMarker(I2,corners,'circle');
figure;
imshow(J);
0 comentarios
Respuesta aceptada
Tohru Kikawada
el 16 de En. de 2017
対応点ã®ãƒžãƒƒãƒãƒ³ã‚°ã‚’ã™ã‚‹é–¢æ•°ã¯Computer Vision System Toolboxã® matchFeatures ã«ãªã‚Šã¾ã™ã€‚
下記ã®ä¾‹ãŒåˆ†ã‹ã‚Šã‚„ã™ã„ã‹ã¨æ€ã„ã¾ã™ã®ã§ã”å‚ç…§ãã ã•ã„。
Más respuestas (0)
Ver también
Categorías
Más información sobre Feature Detection and Extraction 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!