Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
plz help me to store center values alone in matrix form according to 3x3 blocks,also i need to convert binary into decimal in form of idx=[1 2 3 6 9 8 7 4] and save these values in another matrix, i attach my code below
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
k=imread('D:\research work\clock.tiff');
[rows, columns] = size(k);
thresholds = k(2:3:end, 2:3:end); % Get centers of 3x3
% Make same size as data
thresholds = imresize(thresholds, [rows, columns], 'nearest');
out = k > thresholds;
idx=[1 2 3 6 9 8 7 4];
B=cellfun(@(c)c(idx),out,'uni',0);
B=bin2dec(vertcat(B{:}));
0 Kommentare
Antworten (0)
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!