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