【发布时间】:2014-05-18 14:52:57
【问题描述】:
嗨,我找到了 2 张相似(但不相同)的图片之间的角度 ?
我用过
hVideoSrc = vision.VideoFileReader(filename, 'ImageColorSpace', 'Intensity');
imgA = step(hVideoSrc); % Read first frame into imgA
imgB = step(hVideoSrc); % Read second frame into imgB
figure; imshowpair(imgA, imgB, 'montage');
title(['Frame A', repmat(' ',[1 70]), 'Frame B']);
figure; imshowpair(imgA,imgB,'ColorChannels','red-cyan');
title('Color composite (frame A = red, frame B = cyan)');
来自http://www.mathworks.com/help/vision/examples/video-stabilization-using-point-feature-matching.html 但这无济于事 任何人都有idia
【问题讨论】:
-
该代码除了显示图像什么也不做。您是否尝试过完成示例的其余部分?
-
ops .. 我的错误是我没有将另一边归咎于...是的,我尝试了,但效果不佳...我想在示例中做同样的事情,但有旋转的想法
标签: image matlab image-processing video-processing matlab-cvst