Hessian2Ddec
Versione 1.0.0 (1,66 KB) da
Geoffrey Schivre
eigenvalues and eigenvectors of the Hessian of 2D matrix
Compute eigenvalues and eigenvectors of the Hessian of 2D matrix as gray images.
The miniature is obtain by following code :
I = mat2gray(imread('cameraman.tif'));
[n, m] = size(I);
idx = (1:20:(n*m))';
[rows, cols] = meshgrid(1:m, 1:n);
[l, v] = Hessian2Ddec(I, 10, true);
figure; imshow(I); hold on;
quiver(cols(idx), rows(idx), v(idx + n*m*2), v(idx + n*m*3), 'b')
Cita come
Geoffrey Schivre (2025). Hessian2Ddec (https://it.mathworks.com/matlabcentral/fileexchange/71713-hessian2ddec), MATLAB Central File Exchange. Recuperato .
Compatibilità della release di MATLAB
Creato con
R2018a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS LinuxCategorie
- MATLAB > Mathematics > Linear Algebra >
Scopri di più su Linear Algebra in Help Center e MATLAB Answers
Tag
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Scopri Live Editor
Crea script con codice, output e testo formattato in un unico documento eseguibile.
| Versione | Pubblicato | Note della release | |
|---|---|---|---|
| 1.0.0 |
