Path: utzoo!attcan!uunet!timbuk!cs.umn.edu!ub.d.umn.edu!rutgers!cs.utexas.edu!wuarchive!zaphod.mps.ohio-state.edu!unix.cis.pitt.edu!dsinc!netnews.upenn.edu!msuinfo!news From: leeda@cpsin3.cps.msu.edu (Dae Hee Lee) Newsgroups: comp.graphics Subject: Re: smoothing a binary image file? Message-ID: <1990Nov6.140616.12286@msuinfo.cl.msu.edu> Date: 6 Nov 90 14:06:16 GMT Sender: news@msuinfo.cl.msu.edu Reply-To: leeda@cpsin3.cps.msu.edu (Dae Hee Lee) Organization: Dept. of Computer Science, Michigan State University Lines: 13 I am interesting in smoothing a binary image file with characters. I have used a local averaging scheme: if v[i][j]+v[i][j-1]+v[i][j+1]+v[i-1][j]+v[i-1][j-1]+v[i-1][j+1]+v[i+1][j]+ v[i+1][j-1]+v[i+1][j+1] > 4 then v[i][j] = 1 else v[i][j] = 0. But it did not work well. Could you let me know other smoothing schemes? Thank you verymuch. Daehee