Ask Your Question
0

How to refine the edges of an image?

asked 2017-01-05 00:28:18 -0600

AJ94 gravatar image

updated 2017-01-10 00:41:11 -0600

berak gravatar image

Hi all,

I extracted the following object using grabcut alogrithm.

image description

However, i wish to have more refined edges of the extracted object. Is there any filer which can be used here? I tried with bilateral filter,but the output was not satisfactory.

I am using opencv and python. Thanks in advance

edit retag flag offensive close merge delete

Comments

How about making a binary mask first, then smooth that mask and use it as some sort of alpha channel for transparency? That might make it more appealing. How about this.

StevenPuttemans gravatar imageStevenPuttemans ( 2017-01-05 06:29:14 -0600 )edit
1

@StevenPuttemans Hey thanks for the answer. But this is not what i was looking for. Turns out that,the image was of very low resolution,hence the distortion in the edges.

AJ94 gravatar imageAJ94 ( 2017-01-09 01:26:38 -0600 )edit

Hmmm you can also take a look at the work of Michal Irani, she has worked on edge preservation and noise/blurring removal to sharpen up images and get the edges back stronger and undeformed.

StevenPuttemans gravatar imageStevenPuttemans ( 2017-01-10 00:30:59 -0600 )edit

Thanks. I'll take a look into it

AJ94 gravatar imageAJ94 ( 2017-01-10 22:29:21 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
0

answered 2017-03-28 15:39:04 -0600

updated 2017-03-28 15:46:11 -0600

blur = cv2.GaussianBlur(img,(5,5),0)
smooth = cv2.addWeighted(blur,1.5,img,-0.5,0)

this will do the work, you can adjust the kernel size for the blur according to your requirement..

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2017-01-05 00:28:18 -0600

Seen: 17,306 times

Last updated: Mar 28 '17