Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

design and analysis of image segmention in region growing using vhdl and vlsi

Status
Not open for further replies.

damodharkulkarni

Newbie level 1
Joined
Oct 6, 2010
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,285
please help how to start it and give me the guide lines to do it
 

Hi,

as segmentation is defined as to separate out the regions of the image corresponding to objects in which we are interested, from the regions of the image that correspond to background.
There are many segmentation algorithms which are available the basic being thresholding -->

so in a thresholding algo we set some range of intensity either from the histogram or in general lets say around 150(for 8 bit pixels, gray scale images) so In a single pass, each pixel in the image is compared with this threshold. If the pixel's intensity is higher than the threshold, the pixel is set to white in the output. If it is less than the threshold, it is set to black.

so according to the above the i/p to the verilog module could be a single pixel and output a pixel and here u have the comparator module comparing the pixels with the base value, then u get a o/p which is the required segmented image.

Finally it depends on the algo which u have selected for segmentation. here is a link of a seg alg and its source code
Image Segmentation
pls check it
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top