Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to update the value of next pixel in chain code?

1 Ansicht (letzte 30 Tage)
Ekta Sharma
Ekta Sharma am 4 Mär. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I am getting first non zero pixel and its chain code but then i need to go to next pixel depending upon that direction.How I can proceed further? Thanks in advance.
  2 Kommentare
Walter Roberson
Walter Roberson am 4 Mär. 2016
There is code for Freeman chain in the File Exchange
Ekta Sharma
Ekta Sharma am 6 Mär. 2016
Yes Sir...You are right.Code is available but I am unable to understand it.How to provide input to the function?

Antworten (1)

Walter Roberson
Walter Roberson am 6 Mär. 2016
Use bwboundaries to extract boundaries. The first output of it will be a cell array, one entry for each region found. Pass the contents of each entry in the cell array to the chaincode routine at http://www.mathworks.com/matlabcentral/fileexchange/29518-freeman-chain-code
B = bwboundaries(YourImage);
numregions = length(B);
chains = cell(numregions,1);
for blobnum = 1 : numregions
chains{blobnum} = chaincode(B{blobnum});
end

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by