how to join two image

조회 수: 141 (최근 30일)
Ibrahim Thorig
Ibrahim Thorig 2014년 5월 13일
편집: DGM 2023년 3월 29일
I have two fragments of one image, i want join these two piece. someone please tell me how to join these two fragments.
thanks in advance
  댓글 수: 3
Image Analyst
Image Analyst 2023년 3월 29일
@heba If you have any more questions, start a new question and then attach your data and code to read it in with the paperclip icon after you read this:
DGM
DGM 2023년 3월 29일
편집: DGM 2023년 3월 29일
There isn't enough information to provide an answer as-is, but this probably should be posted as a new question anyway.
I'd suggest starting a new question by using the 'Ask' link at the top of the page. When you do, provide an explanation of the specifics.
  • what files you have (provide examples that work/don't work if possible)
  • attach a minimal code example that demonstrates the problem
  • describe the specific goals, expectations, observations

댓글을 달려면 로그인하십시오.

답변 (2개)

Benjamin Avants
Benjamin Avants 2014년 5월 13일
You should use the cat() function.
if your images are A and B and you want to merge them so that you get AB (A on the left with be on the right) the command looks like this:
newImg = cat(2,A,B);
If you want A on top of B:
newImg = cat(1,A,B);
  댓글 수: 8
Vaibhav
Vaibhav 2023년 1월 24일
편집: Vaibhav 2023년 1월 24일
I used the cat function but the new image produced is changed in color
Image Analyst
Image Analyst 2023년 1월 24일
@Vaibhav it should not change the absolute color. Are both your images RGB? Or is one gray scale? Are both in a similar value range, like 0-1 or 0-255, or 0-65535? If the ranges are way different, then one may appear a lot darker than the other. If you still have problems, attach your code and both your images and create a new discussion thread.

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2014년 5월 13일
Have you checked out these similar questions: http://www.mathworks.com/matlabcentral/answers/?term=tag%3A%22torn%22
  댓글 수: 2
nicole
nicole 2022년 10월 21일
Not all posts are similar. I've gone through several threads with no answer because they've been tagged as similar.

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by