python code from: https://github.com/ronaldosena/imagens-medicas-2/blob/40171a6c259edec7827a6693a93955de2bd39e76/Aulas/aula_2_-_uniform_filter/matlab_fspecial.py
(filter_type, *args, **kwargs)
| 207 | |
| 208 | |
| 209 | def fspecial(filter_type, *args, **kwargs): |
| 210 | ''' |
| 211 | python code from: |
| 212 | https://github.com/ronaldosena/imagens-medicas-2/blob/40171a6c259edec7827a6693a93955de2bd39e76/Aulas/aula_2_-_uniform_filter/matlab_fspecial.py |
| 213 | ''' |
| 214 | if filter_type == 'gaussian': |
| 215 | return fspecial_gaussian(*args, **kwargs) |
| 216 | if filter_type == 'laplacian': |
| 217 | return fspecial_laplacian(*args, **kwargs) |
| 218 | |
| 219 | |
| 220 | """ |
no test coverage detected