Jaemin Song, Hyunbum Kim, Yong Oh Lee
Heliyon, Dec 2024

Motivation

Accurate early diagnosis of laryngeal cancer and related diseases using voice data is still challenging.
Most existing studies rely on mel-frequency cepstral coefficients (MFCC), which are excellent at capturing speech patterns that align with human auditory perception.

However, MFCC compresses low-frequency regions (including the fundamental frequency and sub-formant ranges) into very few filters.
This is problematic because:

  • The fundamental frequency (≈90–130 Hz in male voices) and regions below the first formant (<700 Hz) often contain pathological cues.
  • Early changes in laryngeal cancer or vocal fold paralysis manifest as subtle irregularities in these low-frequency ranges.
  • By under-representing these regions, MFCC risks losing critical diagnostic information.

Why 1/3 Octave Band Filters?

The 1/3 octave band filter was adopted because:

  • It provides logarithmic spacing of frequency bands, offering finer resolution at lower frequencies and coarser resolution at higher ones.
  • This matches how voice disorders actually alter signals:
    • Low-frequency instability (fundamental and sub-formant changes in cancer/paralysis).
    • Over-formant noise (irregular high-frequency harmonics caused by pathological vocal fold vibration).
  • Compared to MFCC:
    • <200 Hz region: MFCC → 2 filters, OFSE(1/3 octave) → ~12 filters.
    • <700 Hz (below F1): MFCC → 6 filters, OFSE → ~17 filters.

Thus, OFSE preserves the acoustic nuances most affected by laryngeal disease, while still representing formant and higher frequencies.


Table 1. Frequency Band Details for Mel Frequency Filter (Hz)
Filter IndexLower edgeCenter FrequencyUpper edge Filter IndexLower edgeCenter FrequencyUpper edge
1096.33205.92143041.473556.354142.09
296.33205.92330.59153556.354142.094808.44
3205.92330.59472.41164142.094808.445566.49
4330.59472.41633.76174808.445566.496428.86
5472.41633.76817.3185566.496428.867409.91
6633.76817.31026.11196428.867409.918525.96
7817.31026.111263.65207409.918525.969795.6
81026.111263.651533.88218525.969795.611239.96
91263.651533.881841.29229795.611239.9612883.09
101533.881841.292191.022311239.9612883.0914752.34
111841.292191.022588.872412883.0914752.3416878.83
122191.022588.873041.472514752.3416878.8319297.96
132588.873041.473556.352616878.8319297.9622050
Table 2. Frequency Band Details for 1/3 Octave Band Filter (Hz)
Filter IndexLower edgeCenter FrequencyUpper edge Filter IndexLower edgeCenter FrequencyUpper edge
011.2212.5914.1318707.95794.33891.25
114.1315.8517.7819891.251000.001122.02
217.7819.9522.39201122.021258.931412.54
322.3925.1228.18211412.541584.891778.28
428.1831.6235.48221778.281995.262238.72
535.4839.8144.67232238.722511.892818.38
644.6750.1256.23242818.383162.283548.13
756.2363.1070.79253548.133981.074466.84
870.7949.4389.13264466.845011.875623.41
989.13100.00112.20275623.416309.577079.46
10112.20125.89141.25287079.467943.288912.51
11141.25158.49177.83298912.5110000.0011220.18
12177.83199.53223.873011220.1812589.2514125.38
13223.87251.19281.843114125.3815848.9317782.79
14281.84316.23354.813217782.7919952.6222387.21
15354.81398.11446.683322387.2125118.8628183.83
16446.68501.19562.343428183.8331622.7835481.34
17562.34630.96707.953535481.3439810.7244668.36
Unlike MFCC, OFSE uses an octave-band filter, which better preserves low-frequency details—important for analyzing pathological voices.

It processes audio by segmenting it into frames and converting them to the frequency domain, but instead of the mel scale, it applies a logarithmic octave filter bank.

This enhances resolution in low frequencies, making OFSE especially effective for detecting subtle anomalies in laryngeal pathologies.


Methods (Summary)

  • Dataset: 363 male voices (155 healthy, 30 cancer, 81 benign mucosal disease, 97 paralysis).
  • Feature Extraction:
    • MFCC: 26 mel filters, 13 coefficients.
    • OFSE (1/3 octave): Full-band 11–44.6 kHz, segmented into 36 logarithmic filters.
  • Model: ResNet CNN, trained with 5-fold CV.
  • Explainability: Grad-CAM used to visualize discriminative frequency regions.
Fig. 1 Data conversion: MFCC and OFSE
Fig. 1. Data conversion: MFCC and OFSE

We delve into the technical nuances of Mel Frequency Cepstral Coefficients (MFCC) and octave frequency spectrum energy (OFSE), comparing their suitability and effectiveness in processing voice data for the detection of laryngeal cancer

Fig. 2. Transformation process of octave frequency spectrum energy
Fig. 2. Transformation process of octave frequency spectrum energy

Results

  • Binary tasks:
    • Healthy vs. Cancer → OFSE = 1.00, MFCC = 0.99
    • Healthy vs. Paralysis → OFSE = 0.99, MFCC = 0.90
    • Healthy vs. Benign → OFSE = 0.99, MFCC = 0.90
  • Four-class classification:
    • OFSE = 0.94 ± 0.02, MFCC = 0.71 ± 0.06

Grad-CAM confirmed that under-formant (<700 Hz)** and **over-formant (>1.7 kHz) regions were decisive for accurate classification — precisely the ranges where octave band filters provide finer resolution.


Discussion

The decision to use 1/3 octave band filters was driven by the clinical insight that laryngeal pathology manifests most strongly in low-frequency voice characteristics.
MFCC, though widely used, sacrifices resolution in these regions.
By contrast, OFSE distributes more filters to the fundamental and sub-formant ranges, making subtle changes visible to CNN models.

This explains why OFSE outperforms MFCC not only in binary tasks (healthy vs. cancer) but especially in the harder cases: benign vs. healthy, or paralysis vs. healthy.


Conclusion

1/3 octave band filters were chosen because they align both with human auditory perception and with the acoustic signatures of laryngeal disease.
By preserving critical low-frequency details, OFSE achieves higher diagnostic accuracy and improves interpretability through Grad-CAM.
This establishes OFSE as a promising feature extraction method for AI-driven, non-invasive voice-based diagnosis.