Effacer les filtres
Effacer les filtres

1D gaussian filter for A-scans (OCT)

9 vues (au cours des 30 derniers jours)
Iliana
Iliana le 18 Juil 2024 à 23:18
Commenté : Iliana il y a environ 4 heures
Hello all,
I would like to implement a gaussian filter on my A-scan (1D) from an OCT image (B-scan, 2D). The A-scan essentially represents how the intensity values fluctuate versus the depth.
I would appreciate your help.
Thank you :)

Réponses (1)

Matt J
Matt J le 19 Juil 2024 à 1:16
Modifié(e) : Matt J le 19 Juil 2024 à 1:22
See imgaussfilt, e.g.,
A=zeros(1,11); A((end+1)/2)=1
A = 1x11
0 0 0 0 0 1 0 0 0 0 0
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
B=imgaussfilt(A,1.2)
B = 1x11
0 0 0.0146 0.0831 0.2356 0.3333 0.2356 0.0831 0.0146 0 0
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
  1 commentaire
Iliana
Iliana il y a environ 4 heures
Thank you :)

Connectez-vous pour commenter.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by