Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
DAT VUONG
DAT VUONG el 12 de Abr. de 2018
Comentada: Jan el 30 de Mayo de 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;

Respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by