-2

I want to remove the skin particles from my X-Ray of hand image. I want bones as white Color and all other areas including the skin area in the x ray as black. I am doing my project in mat lab.

oz123
  • 27,559
  • 27
  • 125
  • 187

2 Answers2

1

You can use this script for Local Adaptive Thresholding.

Or if you want bones as white color you should use sobel-operator, as in this example.

Plo_Koon
  • 2,953
  • 3
  • 34
  • 41
  • I tried that methods but the bone seperation is difficult and the some of the bone regions are also removing by this methode.. – Nikhil Dharman Nov 16 '13 at 15:23
0

A simple way,you can just change the value of a pixel, when it is higher than 125 change it to 255,or set 0. the number 125,you can change it,to get a best one. you can search "binarization" on google to get more information.

zawdd
  • 311
  • 1
  • 3
  • 12
  • But i want to separate each bones in an x ray also. that means each bone white colour and all others background and skin and gap between each bones are also to be black.. can you help? – Nikhil Dharman Nov 16 '13 at 15:22