是否可以将一个图像放入另一个图像中并始终将其大小调整为特定尺寸?
我正在使用opencv。问题是这样的:
我有一个窗口,在其中显示图像 A。我有一个来自摄像机的图像 B,该图像每次都有不同的尺寸/分辨率。是否可以在另一个图像中显示此图像(例如粘贴它),但始终在某个区域内,如果对于该精确区域(矩形)太小或太大,则自动调整其大小?
干杯
I'm using opencv. The problem is this:
I have a window where I'm displaying an Image A. I have an image B coming from a videocamera, that has every time different dimensions/resolutions. Is it possible to display this image (like paste it) in another image but always inside a certain area, auto-resizing it if too small or too big to that precise area (a rectangle)?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果 A 有 ROI,则
cvResize(B, A)
会将 B“粘贴”到 A 中的 ROI 中,并对其进行缩放和拉伸以适合。Yes, if A has a ROI, then
cvResize(B, A)
will "paste" B into the ROI in A, scaling and stretching it to fit.