在 qt 中显示图像的最佳方式是什么?我也想放大特定区域
我一直在使用标签来显示图像。我希望能够单击并创建一个边界框,然后能够拖动光标在图像中移动。我需要做什么才能做到这一点?谢谢。
I've been using label to display images. I'd like to be able to click and create a bounding box then be able to drag the cursor to move around in the image. What would I need to do this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不是 100% 确定我明白你想要做什么,但我认为
QGraphicsScene
就是你正在寻找的。您可以(除许多其他操作外):QGraphicsPixmapItem
)QGraphicsView
上渲染场景时更改缩放级别。I'm not 100% sure I understand what you are trying to do, but I think the
QGraphicsScene
is what you are looking for. You can (among many other things):QGraphicsPixmapItem
, for example)QGraphicsView
.QGraphicsItem::ItemIsMovable
)您可能需要熟悉 Qt 的图形视图框架。
You may need to get familiar with Qt's graphics view framework.