how to sparse represent a image?
6 ビュー (過去 30 日間)
古いコメントを表示
hi,
i'm trying to create a sparse matrix for an image.
i've given the command as,
a=imread('imagename.format')
b=sparse(a)
i'm getting the output for the first command and for the second command i'm getting a error as mentioned below,
Undefined function 'sparse' for input arguments of type 'uint8'
please help thanks in advance
0 件のコメント
採用された回答
Shoaibur Rahman
2014 年 12 月 27 日
Convert a to double first, and the use that in sparse. Make sure that a is not in 3D, if so, then make it 2D before using in sparse.
a = double(a);
b = sparse(a); % for 3D a, you may use b = sparse(a(:,:,1)); or 2 or 3 instead of 1 here.
spy(b) % see the sparsity pattern
4 件のコメント
Snigdha KN
2017 年 1 月 26 日
This code shows an error when executed. It shows undefined function 'sparse' for argument type 'double'
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!