视频运动矢量图matlab

preMV = csvread('000000_10_9.txt'); %读运动矢量
curMV = csvread('000000_10_10.txt');

A = imread('000000_9.png');
[m,n]=size(A);
figure;
imshow('000000_9.png');

[X,Y]=meshgrid(1:16:n,1:16:m);
hold on;
GxAll = reshape(preMV(:,1), n, m); GxAll = GxAll';
GyAll = reshape(preMV(:,2), n, m); GyAll = GyAll';
Gx = GxAll(1:16:m,1:16:n);
Gy = GyAll(1:16:m,1:16:n);
quiver(X,Y,Gx,Gy,1,'color','b'); %利用quiver画图
% quiver(X,Y,Gx,Gy);
axis on;


如果像按照原比例画图,直接将这条语句改为:

quiver(X,Y,Gx,Gy,0,'color','b'); %利用quiver画图
 Matlab Spec中S的定义:

   quiver(U,V,S) or quiver(X,Y,U,V,S) automatically scales the
    arrows to fit within the grid and then stretches them by S.  Use
    S=0 to plot the arrows without the automatic scaling.

但是这个视觉效果没有设置为1的好!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值