3*3 kernal slide
Mostra commenti meno recenti
I'm working on local tri directional quienry pattern (LTriDP) for 3*3 matrix it works fine but my kernal is not moving on next 3(overlapping window) matrix elements to calculate LTDP. need help how can my kernal move after calculating firts 3*3 here is the code below.
1 Commento
Walter Roberson
il 19 Gen 2019
Goodness! Convert that long chain of if /else if /else if statements into if /elseif/ elseif, and then use the Smart Indent feature of the editor. Your indentation makes the code hard to follow.
Risposta accettata
Più risposte (1)
Walter Roberson
il 19 Gen 2019
0 voti
Why should it move? You loop i=1:3, j=1:3 and that is it.
You calculate [r ,c]=size(LTDP) but after that you never refer to r or c so at no point are you looping over the rows or columns of LTDP.
2 Commenti
ayesha abbassi
il 19 Gen 2019
Walter Roberson
il 19 Gen 2019
Yes but you have no code to move the kernel. You would need one or more loops around the "for i" loop, moving the starting row and column.
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!