Если вы хотите получить номера строк и столбцов сетки, вы должны построить сетку с предварительно заданной строкой сетки и шириной столбца:
rowWidth = 52; % Grig row width in pixels
colWidth = 53; % Grig column width in pixels
[rows, columns, ~] = size(I);
for row = 1 : rowWidth : rows
line([1, columns], [row, row], 'Color', 'r');
end
for col = 1 : colWidth : columns
line([col, col], [1, rows], 'Color', 'r');
end
Чтобы получить номера строк и столбцов сетки (при условии, что у вас только один центроид):
% Get the row and column of the centroid (in grid units)
centroidGridCol = ceil(stat(1).Centroid(1) / colWidth);
centroidGridRow = ceil(stat(1).Centroid(2) / rowWidth);
Чтобы увидеть, что это правильно, вы можете рассчитать ограничивающую рамку сетки на графике:
% Get the bounding box of the grid containing the centroid (in pixel units)
centroidGridBox(1) = (centroidGridCol - 1) * colWidth;
centroidGridBox(2) = (centroidGridRow - 1) * rowWidth;
centroidGridBox(3) = colWidth;
centroidGridBox(4) = rowWidth;
% Plot the bounding box of the grid containing the centroid
hold on
rectangle('Position',centroidGridBox ,'EdgeColor','g','LineWidth',1);
hold off
Вы можете построить строку и столбец сетки в виде текста рядом с центроидом:
% Plot the grid row and column next to the centroid
text(stat(1).Centroid(1),stat(1).Centroid(2),...
['(' num2str(centroidGridCol), ', ', num2str(centroidGridRow) ')'],...
'color','b')