フィルターのクリア

How can I Draw circles from matched points of stereo camera images.

1 回表示 (過去 30 日間)
yatie SUAIB
yatie SUAIB 2013 年 5 月 30 日
Hello, I have left image and right image. I want to detect features and match the features from left and right images using SURF method. from the matched points in the left and right images, i want to calculate the midpoints(mean) and the variance. Using the mean and variance value, i want to illustrate circle in order to see how much the variance variate from its mean. Can you help me to do this task? Thanks you.

採用された回答

David Sanchez
David Sanchez 2013 年 5 月 30 日
once you have the coordinates of the circle's center (x,y), you can draw a circle of radius r with the following:
ang = 0:0.01:2*pi;
xp = r*cos(ang);
yp = r*sin(ang);
plot( x+xp,y+yp );
  1 件のコメント
yatie SUAIB
yatie SUAIB 2013 年 5 月 30 日
thank you, i'll try to do it according to your code.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCamera Calibration についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by