sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Discuss digital image processing techniques and algorithms. We encourage its application to ImageMagick but you can discuss any software solutions here.
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

Using my usual coterie of enlargements, between 7x and 32x, used in viewtopic.php?f=22&t=21804, here are the results with sigmoidized (contrast = 7.5) EWA (Elliptical Weighted Averaging) quadratic B-spline-windowed Jinc 3-lobe:

Code: Select all

magick input_small.png -colorspace RGB +sigmoidal-contrast 7.5 -define filter:window=Quadratic -define filter:lobes=3 -distort resize 800% -sigmoidal-contrast 7.5 -colorspace sRGB EWAQuadraticJincSig7p5.png
(Of course you can replace "magick" by "convert".)
Image
Image
Image
Image
Image
Image
Image
Image
As expected, it has no noticeable second halo (given that it is a 3-lobe method), and it is more jaggy and more blurry than, say, EWA LanczosSharp and EWA LanczosRadius3.
That's the price for an insignificant second halo.
Last edited by NicolasRobidoux on 2012-09-24T08:03:57-07:00, edited 1 time in total.
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

In viewtopic.php?f=1&t=20992&start=225#p90394, I show the results of EWA quadratic B-spline windowed Jinc 3-lobe, with my two favorite downsampling tests, the fly image, and the backpack image. Of course, sigmoidization is omitted.
BryantMoore
Posts: 56
Joined: 2011-04-23T22:21:52-07:00
Authentication code: 8675308

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by BryantMoore »

@NicolasRobidoux
Could you perhaps test your filter on the original image I have uploaded in this post?

viewtopic.php?p=90497#p90497

:)
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

I found an amusing name for this filter: Ka-ching ("QUAdratic-windowed JINC" -> "Ka-ching").
Good name, because this 3-love filter is "right in the money" as far as 2-lobe filters go.
(Amusing to me at least.)
BryantMoore
Posts: 56
Joined: 2011-04-23T22:21:52-07:00
Authentication code: 8675308

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by BryantMoore »

I like that name! :D
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

I bet you anything that Quadratic windowing would work well with tensor Sinc 3-lobe filtering. Will have to try.
(Spline too?)
P.S. It works well, but the only thing it has on EWA Quadratic-windowed Jinc 3 is that it is interpolatory and a tiny bit sharper (which may be good for very minor resizing operations).

Code: Select all

convert {input} -define filter:filter=Sinc -define filter:lobes=3 -define filter:window=Quadratic -resize {size} {output}
The spline version is almost identical. Unremarkable except for that it has basically no halo.
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

Maybe I was a bit harsh on tensor Quadratic-windowed Sinc 3.
Compared to my favorite tensor windowed-Sinc, namely Ginseng, it has much less halo, but it does not suppress moire as well.
Basically, it is a trade-off between less halo (tensor Quadratic-windowed Sinc 3 wins) and moire suppression and a bit of sharpness (tensor Ginseng wins).
In the balance of things, probably not worth pushing into the "pantheon".
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

Hann windowing also works well with EWA Jinc with the deblur that gives Radius 3.
P.S. And Spline windowing works well with EWA Jinc with the deblur that gives Radius 4.
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by anthony »

NicolasRobidoux wrote:Hann windowing also works well with EWA Jinc with the deblur that gives Radius 3.
P.S. And Spline windowing works well with EWA Jinc with the deblur that gives Radius 4.
I thought mixing the new LanczosRadius with a windowing function would perhaps let you do this.
But the order in which 'special filters' overrides defaults, prevents it from working. Sorry, this will be a DIY.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

OK with DYI, esp. if it's pain in the neck for you to "name".
----
And there was a mistake in the above:
Spline windowing with EWA Jinc Radius 3 works well (not Radius 4).
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

This being said, EWA Spline-windowed Jinc Radius 3 is an expensive way of getting a scheme which is very close to EWA Robidoux. (Noticeably better when downsampling? It's a little sharper and hopefully has "moire fighting" whiskers.)
henrywho
Posts: 188
Joined: 2011-08-17T06:46:40-07:00
Authentication code: 8675308

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by henrywho »

NicolasRobidoux wrote:This being said, EWA Spline-windowed Jinc Radius 3 is an expensive way of getting a scheme which is very close to EWA Robidoux. (Noticeably better when downsampling? It's a little sharper and hopefully has "moire fighting" whiskers.)
Yes, definitely better "moire fighting".... if you are talking about "-define filter:window=Spline -define filter:lobes=3 -distort resize"
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by anthony »

henrywho wrote:
NicolasRobidoux wrote:This being said, EWA Spline-windowed Jinc Radius 3 is an expensive way of getting a scheme which is very close to EWA Robidoux. (Noticeably better when downsampling? It's a little sharper and hopefully has "moire fighting" whiskers.)
Yes, definitely better "moire fighting".... if you are talking about "-define filter:window=Spline -define filter:lobes=3 -distort resize"

You do know that that is the exact definition of a 3 lobe Parzen Windowed Filter (though its normal default is 4 lobes)

Code: Select all

    -filter Parzen -define filter:lobes=3 -distort resize ...
Verification...

Code: Select all

convert xc: -define filter:verbose=1 -define filter:window=Spline -define filter:lobes=3 -distort resize 200% null: | grep '^#'
# Resampling Filter (for graphing)
#
# filter = Jinc
# window = Cubic
# support = 3.23832
# window-support = 3.23832
# scale-blur = 1
# practical-support = 3.23832
# B,C = 1,0

Code: Select all

convert xc: -define filter:verbose=1 -filter Parzen -define filter:lobes=3 -distort resize 200% null: | grep '^#'
# Resampling Filter (for graphing)
#
# filter = Jinc
# window = Cubic
# support = 3.23832
# window-support = 3.23832
# scale-blur = 1
# practical-support = 3.23832
# B,C = 1,0
Note the windowing function is Cubic and B,C values are the same.

And While I have not graphed it, it is likely to be similar to other sharpened filters, but without the blur shift of the zero crossing.

Nicholas, this may be a candidate for what I talked about in Qualitive classification of Cylindrical Resampling Filters, as it has different zero crossing point than the other sharpened filters. It may mean that the first zero crossing is not a good candidate for classifying filters.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

Yes, I knew it was Parzen-windowed Jinc 3-lobe with no deblur. (Probably should have called it that, too.)
Going back and forth between communities, and my terminology "slips" as a result.
NicolasRobidoux
Posts: 1944
Joined: 2010-08-28T11:16:00-07:00
Authentication code: 8675308
Location: Montreal, Canada

Re: sigmoidized EWA quadratic B-spline windowed Jinc 3-lobe

Post by NicolasRobidoux »

henrywho wrote: Yes, definitely better "moire fighting".... if you are talking about "-define filter:window=Spline -define filter:lobes=3 -distort resize"
Yes, I was.
It looks like "thin whiskers" do give something, at least in EWA.
Post Reply