Filter löschen
Filter löschen

Finding patterns in my array

2 Ansichten (letzte 30 Tage)
Matlabhelp
Matlabhelp am 29 Sep. 2016
Kommentiert: Image Analyst am 25 Aug. 2020
Hello
I'm trying to find a pattern within my matrix and then store and label that found pattern in a separate array. The code i have develop so far is as below, where roundData is my my 20x20 Matrix. The matrix consists of integers of 1-5 and Im trying to source from the whole array if a set of numbers such as all 1's form a block
1 1
1 1
Such as above. Once this pattern has been found it will store into another array showing that pattern has been found and denoted by anything else, eg an x or something. I'm wondering where in my code have i gone wrong and how do i store it in another array.
mapValue = 0;
mapValue1 = 0;
mapValue2 = 0;
mapValue3 = 0;
for r = 1:MAX_ROWS - 1
for c = 1:MAX_COLUMNS - 1
mapValue = roundData (r,c);
mapValue1 = roundData (r,c+1);
mapValue2 = roundData(r+1,c);
mapValue3 = roundData (r+1,c+1);
if mapValue == mapValue1 && mapValue == mapValue2 && mapValue == mapValue 3;
end
end
end
  1 Kommentar
Image Analyst
Image Analyst am 25 Aug. 2020
Original question in case he deletes it like he's done with other posts:
Hello
I'm trying to find a pattern within my matrix and then store and label that found pattern in a separate array. The code i have develop so far is as below, where roundData is my my 20x20 Matrix. The matrix consists of integers of 1-5 and Im trying to source from the whole array if a set of numbers such as all 1's form a block
1 1
1 1
Such as above. Once this pattern has been found it will store into another array showing that pattern has been found and denoted by anything else, eg an x or something. I'm wondering where in my code have i gone wrong and how do i store it in another array.
mapValue = 0;
mapValue1 = 0;
mapValue2 = 0;
mapValue3 = 0;
for r = 1:MAX_ROWS - 1
for c = 1:MAX_COLUMNS - 1
mapValue = roundData (r,c);
mapValue1 = roundData (r,c+1);
mapValue2 = roundData(r+1,c);
mapValue3 = roundData (r+1,c+1);
if mapValue == mapValue1 && mapValue == mapValue2 && mapValue == mapValue 3;
end
end
end

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Massimo Zanetti
Massimo Zanetti am 29 Sep. 2016
Assume A is you matrix with values from 1 to 5. You can map automatically the entries having the same value in this way:
C = cell(1,5);
for k=1:5
C{k} = (A==k);
end
Every C{k} is a logical matrix storing the positions of the numbers.
  6 Kommentare
Matlabhelp
Matlabhelp am 29 Sep. 2016
I've had a read through and some elements of the page itself confuse me.
Just to clarify, BW = my array?
How does the CC = bwconncomp factor into the function?
Massimo Zanetti
Massimo Zanetti am 29 Sep. 2016
Sorry, wrong function. Better to use regionprops, asking for the area of the connected regions:
S = regionprops(C{1},'Area')
Inspect S to get more familiar.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by