how to detect corner of image and find coordinate of corner - I need M-file code
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Please help , i had tried to find corner and coordinate of corner automatically,,, but still have problem to solve,, can u help me to make code-mfile,, i still confuse how to find corner and find coordinate automatically,, i have image tile square , how to detect 4 corner of tile ceramic and find value of coorninate 4 corner of tile ,
0 commentaires
Réponses (3)
Sean de Wolski
le 21 Juin 2012
How about:
doc cornermetric
as a place to start?
3 commentaires
Image Analyst
le 20 Oct 2020
Try this page: Computer Vision Toolbox functions
Lots of corner-related functions there.
matlab_image
le 21 Juin 2012
Please try with following links...... http://www.mathworks.com/matlabcentral/fileexchange/9272-harris-corner-detector/content/Harris.m http://www.mathworks.in/help/toolbox/images/ref/corner.html
2 commentaires
Walter Roberson
le 21 Juin 2012
Unfortunately we do not know if the poster is using a version of MATLAB new enough to have the "corner" routine. The poster was asked in one of the numerous threads the poster has started on this topic, but did not answer.
Image Analyst
le 21 Juin 2012
I thought from your prior messages on this tile that you needed the corners to know how to warp the image. Now it looks like you're saying that you warped it somehow without the corners. But unfortunately you warped it incorrectly so that it's still not square.
But if it were the binary image, you could simply use find() in the first and last row of the binary image to find the corners.
upperLeftCornerX = find(binaryImage(1,:), 1, 'first');
upperRightCornerX = find(binaryImage(1,:), 1, 'last');
lowerLeftCornerX = find(binaryImage(end,:), 1, 'first');
lowerRightCornerX = find(binaryImage(end,:), 1, 'last');
but again, you must already have the corners to do that incorrect warping so why not just do it correctly, using the code I gave you in the other posting? There is no need to correct the skewness only part way and then try to warp it again to get it all the way fixed.
7 commentaires
Image Analyst
le 21 Juin 2012
No until sometime this weekend, but by then you'll probably have it all solved.
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!