public async Task <double> GetQualityScoreAsync(IList <double> brisqueFeatures)
 {
     if (brisqueFeatures?.Count > 0)
     {
         return(await QualityScoreProvider.GetQualityScoreAsync(brisqueFeatures));
     }
     throw ServerSide.NoBrisqueFeatures();
 }