You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, a boxcar with a half-width of 5 doesn't change the first or last 5 pixels at all, because there isn't "enough room" to generate a full 11-pixel moving average. We'd like to change our boxcar implementation for the "wings" of the spectrum such that we boxcar as many pixels as possible, using the largest-possible symmetric window. In this case, the first and last [0 and -1] pixels would still be unmodified, but [1] and [-2] would each get a "boxcar 1", [2] and [-3] would get "boxcar 2", etc.
The text was updated successfully, but these errors were encountered:
Currently, a boxcar with a half-width of 5 doesn't change the first or last 5 pixels at all, because there isn't "enough room" to generate a full 11-pixel moving average. We'd like to change our boxcar implementation for the "wings" of the spectrum such that we boxcar as many pixels as possible, using the largest-possible symmetric window. In this case, the first and last [0 and -1] pixels would still be unmodified, but [1] and [-2] would each get a "boxcar 1", [2] and [-3] would get "boxcar 2", etc.
The text was updated successfully, but these errors were encountered: