Category: MATLAB
matpy – call Python from MATLAB
Hello everyone! If you ever wanted to call Python from MATLAB, here goes something for you. Today I’d like to present matpy – a MATLAB extension for accessing Python. It is more or less an equivalent to pymat but the other way around. At the moment it’s for sure more […]
Lindenberg's watershed-based blob detection for MATLAB
Just something I needed recently and haven’t found any existing standalone implementation. Algorithm description can be found on Wikipedia. Usage is quite simple: % Where I is 1-, 2- or 3-dimensional image [~, index] = sort(reshape(I, numel(I), 1), 1, ‘descend’); blobs = ls_blob_detect(I, index);
Recent Comments