Superposed Two Images with Different Sizes on a Single Plot
이전 댓글 표시
Hi, can anyone help me to make the center of the slit of the green image be at the same spot of the pink one? And also how to change the pink color to be gray-scale white. Here is the code.
close all
A = imcomplement(rgb2gray(imread('flag.png')));
matrixPlot1 = matrixPlot;
matrixPlot1(matrixPlot<80) = 0;
% matrixPlot(matrixPlot>50) = 255;
B = matrixPlot1;
C = imfuse(A,B);
imshow(C)

답변 (1개)
Image Analyst
2015년 7월 21일
1 개 추천
Try imfuse() or imshowpair().
댓글 수: 2
Karry Li
2015년 7월 21일
Image Analyst
2015년 7월 21일
In the future, just leave the original question and post new question(s) separately. Now, no one knows what I answered. But since I apparently answered it correctly, can you mark it as Accepted?
For the new question, I'd use regionprops to find the centroid of the shapes, and then use circshift() to shift the centroid from the actual centroid location to the desired centroid location. See my Image Segmentation Tutorial if you need a tutorial in how to get centroid from regionprops(): http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!