intersection of multiple images
3 ビュー (過去 30 日間)
古いコメントを表示
hi chandra, what should i do if i want to display the intersection portion.
1 件のコメント
Image Analyst
2011 年 12 月 6 日
There is no context for this question. You should reply to your other thread and delete this one, or at the very least, put in a link to the other thread that you split off from.
採用された回答
Chandra Kurniawan
2011 年 12 月 6 日
Hello,
Sorry for waiting.
Here the code :
array = uint8(intersection);
for row = size(intersection,1) : -1 : 1
if ~any(find(intersection(row,:)))
array(row,:) = [];
end
end
for col = size(intersection,2) : -1 : 1
if ~any(find(intersection(:,col)))
array(:,col) = [];
end
end
imshow(array);
19 件のコメント
Chandra Kurniawan
2011 年 12 月 7 日
Hi, k
I think it is impossible.
You can only do matrix subtraction if both of dimension and size are same.
If we know about matrix concept, if we have matrix A [p x q] and B [r x s], subtraction matrix A with matrix B can be occur only is p == r and q == s.
So, you cannot perform it with different size of two matrices.
その他の回答 (1 件)
Chandra Kurniawan
2011 年 12 月 7 日
I got little confused with your question.
Let me pick one picture.
Then which another picture will be intersected with that image??
3 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!