Using a user defined fucntion with blockproc
조회 수: 2(최근 30일)
표시 이전 댓글
Is there a mistake in my syntax using blocproc:
Binary1=blockproc(OrigImage,[tileRowSize, tileColSize],@(x) myOperation(hObject, eventdata, handles, x.data));
the function I use "myOperation" is as follows:
function myOperation(hObject, eventdata, handles,tile)
[thresh1, thresh2] = Threshold(hObject, eventdata, handles,tile); %my personal thresholding function
%Create Binary Image
size(tile)
ix=tile;
level=thresh2
ix(ix<level)=0;
ix(ix>level+1)=1;
Im getting
Binary1 =
[]
댓글 수: 0
답변(2개)
Image Analyst
2015년 1월 15일
I don't have time to look at it now, but in the meantime, see my blockproc demos, attached.
댓글 수: 0
Iain
2015년 1월 15일
What does your "myfunction" function output? It looks like it's not producing any output.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!