0% found this document useful (0 votes)
5 views5 pages

Image Analysis: Blob Detection Techniques

The document outlines a process for analyzing an image by extracting and plotting a specific vertical line, generating a frequency content plot, and reconstructing a clean image by removing noise. It also describes an approach for detecting and displaying blobs within the image using adaptive thresholding and connected components for better segmentation. The analysis suggests that the image contains biological structures based on its vertical oscillations and intensity variations.

Uploaded by

sulamanm769
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views5 pages

Image Analysis: Blob Detection Techniques

The document outlines a process for analyzing an image by extracting and plotting a specific vertical line, generating a frequency content plot, and reconstructing a clean image by removing noise. It also describes an approach for detecting and displaying blobs within the image using adaptive thresholding and connected components for better segmentation. The analysis suggests that the image contains biological structures based on its vertical oscillations and intensity variations.

Uploaded by

sulamanm769
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

1) Loaded the original image

a) An individual line, in this case, the 1234th, can be extracted and plotted using the
following lines of code:

pdLine = pdTestImage(:,1234);

figure, plot(pdLine), title(‘line 1234’);

The index position of the carrier frequency for the 1234th vertical line is 306
b) Generated the plot of the frequency content for the 1234th line.
Number of points to the left: 10
Number of points to the right: 10

c) Final reconstructed clean image is generated after removing the noise and
demodulated the lines in image
d) carrier frequency index vs vertical line number

e) The image consist of the vertical oscillations with repetitive pattern and
intensity variation indicate the information is encoded within the frequency
[Link] image suggest the biological structure like Muscle fiber ,neuronal
structure or microtubes

2. Approach for Detecting and Displaying Blobs with Relative Intensity


• Loading and Displaying the Image
• Preprocessing to Enhance Blob Visibility
• Adaptive Thresholding for Better Segmentation
• Blob Detection Using Connected Components
• Displaying Results (Visual + Numerical Representation)
• Orignal image

• Blobs detected with center and relative intensity

You might also like