blob: 8d8f82d9972189424bbcfbed23024f4a66ed1ec4 (
plain)
1
2
3
4
5
6
7
|
function [outputImg]= cornerMinEigenVal(inputImage, blockSize, kSize, borderType)
inputList=mattolist(inputImage);
outputList=opencv_cornerMinEigenVal(inputList, blockSize, kSize, borderType);
for i=1:size(outputList)
outputImg(:,:,i)=outputList(i)
end
endfunction
|