필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

cell as an input argument for normxcorr2

조회 수: 1 (최근 30일)
emar
emar 2017년 4월 20일
댓글: emar 2017년 4월 21일
Hello, I want to calculate normalized cross correlation for an image with a lot of templates(31 templates). When I define templates as a cell and i compile :
parfor ii =1 :100
% T {ii,:}=normxcorr2(template{:} ,image{ii});
end
It returns an error, because the inputs of normxcorr2 can't be cells. I can of course use a for loop like :
parfor ii =1 :100
for j= 25:55
% T {ii,j}=normxcorr2(template{j} ,image{ii});
end
end
However it makes more time (because of the nested loop).
My question is if there is a solution to use a cell as a parameter,in order to not use a nested loop.
Thank you in advance

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by