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