We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e82553 commit ee57c3aCopy full SHA for ee57c3a
no_self_loops.m
@@ -1,3 +1,10 @@
1
+% Graph-based scalable sampling of 3D point cloud attributes
2
+% IEEE. Transactions on Image Processing
3
+% Author: Shashank N. Sridhara, University of Southern California
4
+
5
+%Function to compute self-loop weights for each block (zero self loop weights in this case)
6
7
8
function loop_wts_mat = no_self_loops(A, block_logical)
9
n_block = nnz(block_logical);
10
loop_wts_mat = sparse(n_block, n_block);
0 commit comments