Click here to Skip to main content
15,886,797 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I am working with visual studio 2010 for image processing main.

My pictures are tables with gray level color(black-white-gray) I want to make it bi-linear, I mean I want to create an threshold box and make them black and white.

But before this I have to make this image clear and Improve the image edge sharp.

After that I want to cluster the same and near homes.

I need some good advise to do this work.
Posted
Updated 29-Nov-11 4:22am
v2
Comments
RaisKazi 29-Nov-11 10:22am    
Edited: 1) Formatting 2) Spelling corrections.
nilofar2010 29-Nov-11 12:13pm    
i have a grey value image.its contain table that is not clear(assume that its look like crossword puzzle with different color in each segment and i want to make this image blake and white)
i want to apply edge detection on it first to find edge and make edge enhancement .Then i want to binarize it with selective threshold value and at the end of the work i want to clustering the same color
lukeer 29-Nov-11 10:36am    
You have a grey value image.
You want to apply edge detection on it.
Then you want to binarize it.

Is that what you mean?
nilofar2010 29-Nov-11 12:15pm    
yes..i have a grey value image.its contain table that is not clear(assume that its look like crossword puzzle with different color in each segment and i want to make this image blake and white)
i want to apply edge detection on it first to find edge and make edge enhancement .Then i want to binarize it with selective threshold value and at the end of the work i want to clustering the same color

1 solution

A simple binarize operation would be possible to implement on your own. Edge detection is somewhat more complicated. But there are image processing libraries out there that contain tested code. And they are most likely speed-optimized to some degree. Have a look at OpenCV for C#[^]

Or read the article series by Christian Graus[^] dedicated to image processing.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900