在 MATLAB 中使用 ROI

发布于 2024-10-15 05:55:13 字数 156 浏览 0 评论 0原文

我有一个 MATLAB 期末项目,需要帮助。

我构建了一个 GUI 并使用 imshow 函数显示图像,现在我想要 从图像中选择区域并获取所选区域的像素。

我知道 ROI 方法,但我不知道如何使用它,所以如果 有人可以向我解释一下。 谢谢。

I have a final project in MATLAB and I need help.

I build a GUI and display an image using imshow function, now i want
to select area from the image and get the pixls of the Selected area.

i know the ROI method but i don't know how to use it, so i be very happy if
someone could explain it to me.
thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

萌吟 2024-10-22 05:55:13

如果您有图像处理工具箱,选择 ROI 就非常容易。有很多方法可以做到这一点,但我建议使用 roipoly 函数。简单写下:

BW = roipoly(I);

哪里有我就是你的形象。然后,您将被提升为您的投资回报率选择积分。输出 BW 将是二值图像,ROI 内部值为 1,外部值为 0。

有关详细信息,请参阅:

http://www.mathworks.com/help /toolbox/images/ref/roipoly.html

编辑:

您可以使用函数 imrect 创建矩形 ROI。请注意,此函数适用于当前轴,因此您需要在 imrect 之前使用 imshow。该函数的输出是一个 roi 句柄,因此您需要使用函数 createMask 来获取二进制图像。

imshow(I); 
h = imrect;
BW = createMask(h);

http://www.mathworks.com/help/toolbox/images/ref /imrect.html

Selecting a ROI is pretty easy if you have the image processing toolbox. There are many ways to do it, but I recommend using the roipoly function. Simply write:

BW = roipoly(I);

where I is your image. You will then be promoted to select points for your ROI. The output BW will be a binary image with value 1 inside the ROI and 0 outside.

For more information look at:

http://www.mathworks.com/help/toolbox/images/ref/roipoly.html

EDIT:

You can use the function imrect to create rectangular ROIs. Note that this function works on the current axes, so you need to use imshow before imrect. The output of the function is a roi handle, so you need to use the function createMask to get a binary image out.

imshow(I); 
h = imrect;
BW = createMask(h);

http://www.mathworks.com/help/toolbox/images/ref/imrect.html

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