选择图像的特定区域进行过滤

发布于 2024-12-11 11:05:28 字数 572 浏览 0 评论 0原文

我正在尝试提取图像的红色部分,如链接图像

http://tinypic.com/r/ 所示2qntaip/7

我像这样计算

RGB = imread('Frame 0233.jpeg');
RGB =im2double(RGB );
img = rgb2gray(RGB);
n=[2 -1 -1;-1 2 -1;-1 -1 2];%detecting -45 degree lines in image
pout_adapthisteq = adapthisteq(img);
a3 = imfilter(pout_adapthisteq,n);
figure(1),imshow(a3);

得到了这样的结果图像 http://tinypic.com/view.php?pic=ad1zn&s=7

任何人都可以帮我提取仅在红色部分的行

Am trying to extract the red portion of image as shown in the link image

http://tinypic.com/r/2qntaip/7

I worked out like this

RGB = imread('Frame 0233.jpeg');
RGB =im2double(RGB );
img = rgb2gray(RGB);
n=[2 -1 -1;-1 2 -1;-1 -1 2];%detecting -45 degree lines in image
pout_adapthisteq = adapthisteq(img);
a3 = imfilter(pout_adapthisteq,n);
figure(1),imshow(a3);

Got the result image like this http://tinypic.com/view.php?pic=ad1zn&s=7

Can anyone help me to extract the line only in the red portion

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

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

发布评论

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

评论(1

一杆小烟枪 2024-12-18 11:05:28

这就是我在 Mathematica 中的做法:

在此处输入图像描述

This is how I would do it in Mathematica:

enter image description here

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