Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi guys, i am currently working on a project about template matching using vb.net . i am using gray scale images. i want to detect fractures on an x-ray image. But it will be helpful if any kind of template matching code. please help me on this. thank you
Posted
Updated 24-Jul-11 5:03am
v3

There's a reason why you don't see image processing articles written in VB/VB.NET. With the lack of pointer support, it's far more difficult to do imaging processing with any acceptable speed.

That's about all anyone can say because you haven't really asked a question.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 24-Jul-11 14:13pm    
I can see massive down-votes of the answers like that these days. However, I voted 5 as this is a reasonable note. Even though its possible to work will LockBits and Dispatcher or WPF WritableBitmap.
--SA
You can use the AForge imaging library to do some of the work, but it's still a far cry.

Perhaps from the x-ray, if you have adequate metadata, you would be able to tell the alignment of the image?

The fracture would have to be fairly pronounced for it to show up...you could try a high-pass filter of some sort to get pixels that are > some value towards white.

Here's some info on AForge[^] image processing and some specifically on edge detection[^].

Cheers.
 
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