在 qt 中显示图像的最佳方式是什么?我也想放大特定区域

发布于 2024-10-31 13:26:54 字数 69 浏览 0 评论 0原文

我一直在使用标签来显示图像。我希望能够单击并创建一个边界框,然后能够拖动光标在图像中移动。我需要做什么才能做到这一点?谢谢。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素年丶 2024-11-07 13:26:54

我不是 100% 确定我明白你想要做什么,但我认为 QGraphicsScene 就是你正在寻找的。您可以(除许多其他操作外):

  • 渲染图像(例如,QGraphicsPixmapItem
  • QGraphicsView 上渲染场景时更改缩放级别。
  • 使用“橡皮筋”选择内容
  • 用鼠标移动项目(参见 QGraphicsItem::ItemIsMovable)
  • 等。

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):

  • Render images (QGraphicsPixmapItem, for example)
  • Change the zoom level when rendering the scene on a QGraphicsView.
  • Select things using a "rubber band"
  • Move items around with the mouse (see QGraphicsItem::ItemIsMovable)
  • etc.
一梦浮鱼 2024-11-07 13:26:54

您可能需要熟悉 Qt 的图形视图框架

You may need to get familiar with Qt's graphics view framework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文