Drawing perpendicular lines to the medial axis

1 Ansicht (letzte 30 Tage)
shivasakthi
shivasakthi am 10 Sep. 2012
Beantwortet: Image Analyst am 25 Mai 2014
I am trying to find the features of these kinds of chromosomes. I have extracted the medial axis of the chromosome using skeletonization function.The code goes like this:
c1 = imread('chromosome1.bmp'); c2 = bwmorph(BW1,'skel',Inf); imshow(BW1) figure, imshow(BW2)
I was able to identify the medial axis of the chromosome. Now i have to identify the centromere position of the chromosome that is highly constricted compared to the rest of the length of the chromosome. I have to draw perpendicular lines to the medial axis between the boundaries of the chromosome.
(Note: chromosome is not always straight but also curved so that the perpendicular axis need not lie on the same row of the image.)
Kindly help me with a matlab code and logic to draw perpendicular lines for the medial axis and find the shortest perpendicular line.
  2 Kommentare
Saranya
Saranya am 20 Dez. 2013
hi sivasakthi...
you can use this.. so that you can get the centre line alone I = imread('chromosome1.bmp'; J = rgb2gray(I); a = imcomplement(J); b = im2bw(a, 0.1); b2 = imfill(b,'holes'); c = bwmorph(b2,'skel',inf); d = bwmorph(b2,'thin', inf);
Saranya
Saranya am 20 Dez. 2013
hi sivasakthi... I too in need of matlab code to locate the centromere position

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 25 Mai 2014
Attached is my newest demo (below the image in blue text). It finds the longest line in the blob, and then the line perpendicular to that (at the mid point) and calculates the length of both.

Community Treasure Hunt

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

Start Hunting!

Translated by