在matlab中跟踪图像

时间:2010-06-01 06:48:31

标签: image matlab image-processing

例如,您如何在正在跟踪的图像上方放置一个蓝色圆圈?不是圆圈,而是更像甜甜圈。

2 个答案:

答案 0 :(得分:3)

以下是您在其他问题中基于Jonas' answer的示例:

%# sample image
I = imread('autumn.tif');
figure, imshow(I)

%# location of random feature points
featLoc = randi([1 200], [10 2]);

%# draw first 5 points as one set, the rest as another with a different color
lineProps = {'LineStyle','none', 'LineWidth',2, 'Marker','o', 'MarkerSize',10};
line(featLoc(1:5,1), featLoc(1:5,2), 'Color','r', lineProps{:})
line(featLoc(6:end,1), featLoc(6:end,2), 'Color','b', lineProps{:})

screenshot

答案 1 :(得分:2)

例如:

%# load image and display it
img = imread('autumn.tif');
figure,imshow(img);

%# make it such that plotting something doesn't erase 
%# the previous plot (i.e. the image)
hold on

%# plot a circle. MarkerSize controls the size of the circle
plot(200,100,'ob','MarkerSize',14)