python High Pass Filter for image processing -


i want use high-pass filter on image(see appendix). high-pass filter should remove gradient of line in image. goal line without gradient.

i tried different methods: 1. use gaussian filter on image , subtract result original image like:

lowpass = ndimage.gaussian_filter(image, 3) gauss_highpass = image - lowpass 
  1. i saved value of y-coordinate of image in array , used high-pass filter. unfortunately dont result want....

image:

enter image description here


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -