// Copyright (c) the JPEG XL Project Authors. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file.
// No valid values outside [0, xsize), but the strategy may still safely load // the preceding vector, and/or round xsize up to the vector lane count. This // avoids needing PadImage. // Requires xsize >= kConvolveLanes + kConvolveMaxRadius. static constexpr size_t kConvolveMaxRadius = 3;
// Weights must already be normalized.
struct WeightsSymmetric3 { // d r d (each replicated 4x) // r c r // d r d float c[4]; float r[4]; float d[4];
};
struct WeightsSymmetric5 { // The lower-right quadrant is: c r R (each replicated 4x) // r d L // R L D float c[4]; float r[4]; float R[4]; float d[4]; float D[4]; float L[4];
};
// Weights for separable 5x5 filters (typically but not necessarily the same // values for horizontal and vertical directions). The kernel must already be // normalized, but note that values for negative offsets are omitted, so the // given values do not sum to 1. struct WeightsSeparable5 { // Horizontal 1D, distances 0..2 (each replicated 4x) float horz[3 * 4]; float vert[3 * 4];
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.