Effacer les filtres
Effacer les filtres

how to divide the image into equal sectors from central point.

1 vue (au cours des 30 derniers jours)
DAT VUONG
DAT VUONG le 12 Avr 2018
Commenté : Jan le 30 Mai 2018
I want to do following task.
  • # 1. Divide the image into equal sectors from a central point of the image
  • # 2. count the number of pixel in each sectorThis is code for find central point
C= imread('LED.png);
A=rbg2gray(C);
binaryImage= A>250;
labeledImage = bwlabel(binaryImage);
measurements = regionprops(labeledImage, 'Centroid', 'BoundingBox');
xCentroid = measurements.Centroid(1);
yCentroid = measurements.Centroid(2);
boundingBox = measurements.BoundingBox;

Réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by