averageColHistogram property
Returns the average column histogram across all template matrices.
Each entry is the average pixel count at that column position. Lazily computed and cached.
Implementation
List<double> get averageColHistogram {
return _cachedColHistogram ??= _computeAverageHistogram(true);
}