1. 程式人生 > 實用技巧 >Normalized Cuts and Image Segmentation的執行程式碼錯誤

Normalized Cuts and Image Segmentation的執行程式碼錯誤

我在執行Normalized Cuts and Image Segmentation的程式碼demoNcutImage.m時,出現了
錯誤使用 arpackc
需要 2 個輸出引數

在這裡插入圖片描述
解決方法:
使用Matlab的eigs()函式,而不是normalized cuts包中提供的eigs_new()。

即ncut.m中的
[vbar,s,convergence] = eigs(@mex_w_times_x_symmetric,size(P,1),nbEigenValues,‘LA’,options,tril§);