我有一个“倒立摆”视频,我试图找到移动部分的中点。我正在使用计算机视觉工具箱
我使用检测到的坐标更改中点的颜色。假设X
是检测到的中点的帧的行号,Y
是列号。
while ~isDone(hVideoFileReader)
frame = step(hVideoFileReader);
...
frame(X-3:X+3, Y-3:Y+3, 1) = 1; % # R=1 make the defined region red
frame(X-3:X+3, Y-3:Y+3, 2) = 0; % # G=0
frame(X-3:X+3, Y-3:Y+3, 3) = 0; % # B=0
step(hVideoPlayer, frame);
end
然后我轻松拥有一个红色方块。但我想在检测到的点上添加一个红色圆圈,而不是方形。我怎么能这样做?
答案 0 :(得分:4)
您可以使用insertShape
功能。例如:
img = imread('peppers.png');
img = insertShape(img, 'FilledCircle', [150 280 35], ...
'LineWidth',5, 'Color','blue');
imshow(img)
position参数指定为[x y radius]
这是我们手动绘制圆形(透明)的替代方法:
% some RGB image
img = imread('peppers.png');
[imgH,imgW,~] = size(img);
% circle parameters
r = 35; % radius
c = [150 280]; % center
t = linspace(0, 2*pi, 50); % approximate circle with 50 points
% create a circular mask
BW = poly2mask(r*cos(t)+c(1), r*sin(t)+c(2), imgH, imgW);
% overlay filled circular shape by using the mask
% to fill the image with the desired color (for all three channels R,G,B)
clr = [0 0 255]; % blue color
a = 0.5; % blending factor
z = false(size(BW));
mask = cat(3,BW,z,z); img(mask) = a*clr(1) + (1-a)*img(mask);
mask = cat(3,z,BW,z); img(mask) = a*clr(2) + (1-a)*img(mask);
mask = cat(3,z,z,BW); img(mask) = a*clr(3) + (1-a)*img(mask);
% show result
imshow(img)
我使用图像处理工具箱中的poly2mask
功能来创建圆形遮罩(来自此post的想法)。如果您无法访问此功能,可以选择以下方法:
[X,Y] = ndgrid((1:imgH)-c(2), (1:imgW)-c(1));
BW = (X.^2 + Y.^2) < r^2;
通过这种方式,您只能使用核心MATLAB函数(无工具箱!)
答案 1 :(得分:1)
如果安装了计算机视觉系统工具箱的旧版MATLAB,则可以使用vision.ShapeInserter
系统对象。
答案 2 :(得分:1)
感谢@Dima,我创建了一个shapeInserter对象。
greenColor = uint8([0 255 0]);
hFilledCircle = vision.ShapeInserter('Shape','Circles',...
'BorderColor','Custom',...
'CustomBorderColor', greenColor ,...
'Fill', true, ...
'FillColor', 'Custom',...
'CustomFillColor', greenColor );
...
fc = int32([Y X 7;]);
frame = step(hFilledCircle, frame, fc);
然后我将它应用于检测点。