Image Processing Question - Correlating Watershed Segmented Image with Original Image

1 次查看(过去 30 天)
Hello,
I have created a segmented image of an original image (both 256x256 pixels) with a watershed algorithm. In the segmented image, the lines (or segments) correspond to "grain boundaries" in my original image, which are significant features. I need to determine the gray values in the original image at these grain boundaries.
What I have done thus far is create a text file for the original image and for the segmented image which are both 256x256 lists of gray values, 0-255. The text file for the segmented image only has 0s (black in the image) and 255s (white in the image). The pixels with 255s are the places where the grain boundaries are in the original image. Therefore I need a code that returns the gray values in the original image that correspond to the 255 values in the segmented image. Do you have an idea of how to accomplish this?
Or, perhaps there is a simpler approach?
Anything helps!
Thanks,
John

采纳的回答

Image Analyst
Image Analyst 2013-3-21
You can extract the edge pixels with the edge mask like this:
edgePixels = grayImage(edgeMask);
where edgeMask is the binary image (true/false, 1/0, white/black) of your edge locations. Then get the mean value of that by
meanEdgeGrayLevel = mean(edgePixels(:));
  3 个评论
Image Analyst
Image Analyst 2013-3-21
It's just a 1D list of all the gray levels under the edge mask. You can just do
[pixelCounts, grayLevels] = imhist(edgePixels, 256);
bar(grayLevels, pixelCounts);
xlim([0 255]);

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by