Clear Filters
Clear Filters

how to avoid overlapping of 2 images

2 views (last 30 days)
Nisha Rajiv
Nisha Rajiv on 7 Sep 2012
I have 2 images whose boundary are extracted.
I have them plotted.But they are overlapping
this is the code
how to correct it
if true
%Leveling Y axis
[ymin mindx] = max(Temp_boundary(:,1));
[ymax maxdx] = max(Protein1_boundary(:,1));
ydiff = ymin - ymax;
if(ydiff >0)
Temp_boundary(:,1) = Temp_boundary(:,1) - ydiff;
end
%Leveling X axis
[xmin mindx] = min(Temp_boundary(:,2));
[xmax maxdx] = max(Protein1_boundary(:,2));
xdiff = xmin - xmax;
Temp_boundary(:,2) = Temp_boundary(:,2) - (-xdiff);
end
  1 Comment
Image Analyst
Image Analyst on 7 Sep 2012
Where did you upload your images? I need to see your original images and the overlapped results, and an image of how you'd like it to look.

Sign in to comment.

Answers (0)

Categories

Find more on Modify Image Colors in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!