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.