Skip to content
Snippets Groups Projects
Commit 5d1952b6 authored by vojtatom's avatar vojtatom
Browse files

Fourier implementation - comments

parent 8eab4aaf
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,12 @@
"iosfwd": "cpp",
"algorithm": "cpp",
"cmath": "cpp",
"new": "cpp"
"new": "cpp",
"array": "cpp",
"*.tcc": "cpp",
"memory": "cpp",
"istream": "cpp",
"tuple": "cpp",
"utility": "cpp"
}
}
\ No newline at end of file
......@@ -18,6 +18,9 @@ Výsledky jsou uloženy ve [složce monadic](./monadic) spolu s podrobnějším
Řešení domácích úkolů je koncipované jako jednoduchý commandline editor, do kterého budou postupně přidávány jednotlivé funkcionality.
## 2. úkol - Fourierova transformace
Kód je hotov, zbývá doladit občasné chyby v fftshift, ukázky budou ve [složce fourier](./fourier). TBA
## Kompilace
Je přiložen Makefile, vše by mělo fungovat na všech platformách (snad), jiné závislosti nejsou třeba. Vyvíjím na Linuxu.
......@@ -77,5 +80,10 @@ Je přiložen Makefile, vše by mělo fungovat na všech platformách (snad), ji
eqalize the image
on top of the image stack
fft
get amplitude spectrum of the image
on top of the image stack
exit
exit the application
\ No newline at end of file
......@@ -305,6 +305,9 @@ void Interface::print_help(istringstream & iss)
" equalize\n"
" eqalize the image\n"
" on top of the image stack\n\n"
" fft\n"
" get amplitude spectrum of the image\n"
" on top of the image stack\n\n"
" exit\n"
" exit the application\n\n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment