averageRowHistogram property

List<double> get averageRowHistogram

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);
}