how can reconstruct one grayscale image with the other??

2 ビュー (過去 30 日間)
sara
sara 2014 年 9 月 18 日
コメント済み: Image Analyst 2014 年 9 月 22 日
I have 2 grayimage m1:
and m2:
you can see that m1 and m2 has a little differences.. Is there any way to reconstruct m1 wit m2?? I want to have m1 without any holes and any thing that are like holes... should I turn this images to binary image?

回答 (2 件)

Image Analyst
Image Analyst 2014 年 9 月 18 日
I'm sure we've talked this before. You can use active contour (demo attached again) to fill in bays on your image. Then use that to extract the new gray scale image
smoothBorder = activecontour(grayImage, mask, 400, 'edge');
newGrayImage = grayImage; % Initialize
newGrayImage(~smoothBorder) = 0; % Black outside smoothed border.
  9 件のコメント
sara
sara 2014 年 9 月 20 日
編集済み: sara 2014 年 9 月 20 日
thanks Image Analyst yes I understand....I should try these things and merge these with "something that are in my mind and I think maybe is true" ... I will comeback soon.thank you for the time that you spend on my question. Always Your advice are very useful for me.
Image Analyst
Image Analyst 2014 年 9 月 22 日
If it's the best answer you'll think you'll get from anyone, and at least got you started in the right direction, then can you mark it as accepted?

サインインしてコメントする。


sara
sara 2014 年 9 月 22 日
dear Image Analyst
If we want to use activecontour our mask should be larger than marker...so If we have for example 13 slices that we want to reconstruct one of them with the others so first we should know that wich one can be mask??am I right?
  1 件のコメント
Image Analyst
Image Analyst 2014 年 9 月 22 日
I haven't used activecontour a lot. I don't know if the starter mask has to be larger than the final mask, or if it can be smaller, or go both inside and outside. Not sure - you'd have to try it. At least that's what I think you were asking, because morphological reconstruction with a marker image using imreconstruct() is a different thing.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by