summaryrefslogtreecommitdiff
path: root/macros/imimposemin.sci
blob: 1d0d582e2ca6d7e62da374aa4f18fcc595277b78 (plain)
1
2
3
4
5
6
7
8
9
10
11
function[dstMat] = imimposemin(maskImg, markerImg)
	
	out = opencv_imimposemin(maskImg, markerImg)
	
	channel = size(out)
	
	for i = 1: channel
		dstMat(:,:,i) = out(i)
	end
	
endfunction