├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── README ├── THANKS ├── TODO ├── VERSION ├── arch.mk ├── common.mk ├── doc ├── Doxyfile └── Makefile ├── examples ├── Makefile ├── cdf97-test │ ├── Makefile │ └── cdf97.c ├── core-int │ ├── Makefile │ └── main.c ├── core-sym │ ├── Makefile │ └── sym.c ├── core-sym2 │ ├── Makefile │ └── sym.c ├── cores │ ├── Makefile │ ├── clock.c │ ├── clock.h │ ├── coords.c │ ├── coords.h │ ├── cores-d4.c │ ├── cores-d4.h │ ├── cores-haar.c │ ├── cores-haar.h │ ├── cores-nsls.c │ ├── cores-nsls.h │ ├── cores.c │ ├── cores.h │ ├── fix.c │ ├── fix.h │ ├── image2.c │ ├── image2.h │ └── main.c ├── displ-vectors │ ├── Makefile │ ├── README │ ├── dwt_generate.sh │ ├── dwt_plot.sh │ ├── plot.txt │ └── vectors.c ├── eaw │ ├── Makefile │ └── simple.c ├── filter-coeffs │ ├── Makefile │ └── wavelet.c ├── func2 │ ├── Makefile │ └── func2.c ├── function-iterating │ ├── Makefile │ └── wavelet.c ├── hdr │ ├── Makefile │ ├── exr.cpp │ ├── exr.h │ └── hdr.c ├── info │ ├── Makefile │ └── info.c ├── load-int │ ├── Makefile │ └── simple.c ├── load │ ├── Makefile │ └── simple.c ├── mra │ ├── Makefile │ ├── mra.c │ └── plot.txt ├── nsls │ ├── Makefile │ ├── nsls.c │ └── nsls97.c ├── opencv-int │ ├── Makefile │ └── showdwt.cpp ├── opencv-subbands │ ├── Makefile │ └── showdwt.cpp ├── opencv │ ├── Makefile │ └── showdwt.cpp ├── perf-plot-core │ ├── Makefile │ ├── perf.c │ └── plot.txt ├── perf-plot-line │ ├── Makefile │ ├── perf.c │ └── plot.txt ├── perf-plot-single │ ├── Makefile │ ├── perf.c │ ├── plot.txt │ └── table.sh ├── perf-plot-supercore │ ├── Makefile │ ├── perf.c │ └── plot.txt ├── perf-plot-sym │ ├── Makefile │ ├── perf.c │ └── plot.txt ├── perf-plot │ ├── Makefile │ ├── perf.c │ └── plot.txt ├── similarity │ ├── Makefile │ ├── cmp-tex-short.sh │ ├── cmp-tex.sh │ ├── cmp.sh │ └── compare.cpp ├── simple-double │ ├── Makefile │ └── simple.c ├── simple-int │ ├── Makefile │ └── simple.c ├── simple-interpl │ ├── Makefile │ └── simple.c ├── simple-newapi │ ├── Makefile │ └── simple.c ├── simple-perf-int │ ├── Makefile │ └── simple.c ├── simple-perf-line │ ├── Makefile │ └── simple.c ├── simple-perf-single-sdl │ ├── Makefile │ └── simple.c ├── simple-perf-single │ ├── Makefile │ └── simple.c ├── simple-perf │ ├── Makefile │ └── simple.c ├── simple-single-loop │ ├── Makefile │ └── simple.c ├── simple │ ├── Makefile │ └── simple.c ├── sl-core │ ├── Makefile │ └── core.c ├── spectra-aligned │ ├── Makefile │ └── spectra-aligned.c ├── spectra-blobs │ ├── Makefile │ ├── blobs.c │ ├── spectra-experimental.c │ └── spectra-experimental.h ├── spectra-dwt │ ├── Makefile │ └── main.c ├── spectra-fe │ ├── Makefile │ ├── fe.c │ ├── split.sh │ └── test.sh ├── spectra-fe2 │ ├── Makefile │ ├── fe.c │ ├── hole.c │ ├── split.sh │ └── test.sh ├── spectra-fe3 │ ├── Makefile │ ├── fe.c │ ├── hole.c │ ├── split.sh │ └── test.sh ├── spectra-swt │ ├── Makefile │ ├── main.c │ └── test.sh ├── spectra-tf │ ├── Makefile │ └── tf.c ├── start │ ├── Makefile │ └── start.c ├── subbands-int │ ├── Makefile │ └── subbands.c ├── subbands │ ├── Makefile │ └── subbands.c ├── test │ ├── Makefile │ └── test.c ├── time-freq │ ├── Makefile │ └── main.c └── wavelet-func │ ├── Makefile │ ├── plot.txt │ └── wavelet.c └── src ├── Makefile ├── core-int.c ├── core-int.h ├── cvdwt.cpp ├── cvdwt.h ├── denoise.c ├── denoise.h ├── dwt-core.c ├── dwt-core.h ├── dwt-simple.c ├── dwt-simple.h ├── dwt-sym-ms.c ├── dwt-sym-ms.h ├── dwt-sym.c ├── dwt-sym.h ├── dwt.c ├── dwt.h ├── eaw-experimental.c ├── eaw-experimental.h ├── firmware ├── Makefile ├── fw_fp01_lift4sa.c └── fw_fp01_lift4sb.c ├── gabor.c ├── gabor.h ├── image.c ├── image.h ├── inline-sdl.h ├── inline.h ├── libdwt.c ├── libdwt.h ├── mainpage.h ├── signal.c ├── signal.h ├── spectra.c ├── spectra.h ├── swt.c ├── swt.h ├── system.c ├── system.h ├── tutorial.h ├── util.c ├── util.h ├── volume-dwt.c ├── volume-dwt.h ├── volume.c └── volume.h /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/README -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2015-02-18-dev 2 | -------------------------------------------------------------------------------- /arch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/arch.mk -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/common.mk -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/doc/Makefile -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/cdf97-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cdf97-test/Makefile -------------------------------------------------------------------------------- /examples/cdf97-test/cdf97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cdf97-test/cdf97.c -------------------------------------------------------------------------------- /examples/core-int/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/core-int/Makefile -------------------------------------------------------------------------------- /examples/core-int/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/core-int/main.c -------------------------------------------------------------------------------- /examples/core-sym/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/core-sym/Makefile -------------------------------------------------------------------------------- /examples/core-sym/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/core-sym/sym.c -------------------------------------------------------------------------------- /examples/core-sym2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/core-sym2/Makefile -------------------------------------------------------------------------------- /examples/core-sym2/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/core-sym2/sym.c -------------------------------------------------------------------------------- /examples/cores/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/Makefile -------------------------------------------------------------------------------- /examples/cores/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/clock.c -------------------------------------------------------------------------------- /examples/cores/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/clock.h -------------------------------------------------------------------------------- /examples/cores/coords.c: -------------------------------------------------------------------------------- 1 | #include "coords.h" 2 | -------------------------------------------------------------------------------- /examples/cores/coords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/coords.h -------------------------------------------------------------------------------- /examples/cores/cores-d4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/cores-d4.c -------------------------------------------------------------------------------- /examples/cores/cores-d4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/cores-d4.h -------------------------------------------------------------------------------- /examples/cores/cores-haar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/cores-haar.c -------------------------------------------------------------------------------- /examples/cores/cores-haar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/cores-haar.h -------------------------------------------------------------------------------- /examples/cores/cores-nsls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/cores-nsls.c -------------------------------------------------------------------------------- /examples/cores/cores-nsls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/cores-nsls.h -------------------------------------------------------------------------------- /examples/cores/cores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/cores.c -------------------------------------------------------------------------------- /examples/cores/cores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/cores.h -------------------------------------------------------------------------------- /examples/cores/fix.c: -------------------------------------------------------------------------------- 1 | #include "fix.h" 2 | -------------------------------------------------------------------------------- /examples/cores/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/fix.h -------------------------------------------------------------------------------- /examples/cores/image2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/image2.c -------------------------------------------------------------------------------- /examples/cores/image2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/image2.h -------------------------------------------------------------------------------- /examples/cores/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/cores/main.c -------------------------------------------------------------------------------- /examples/displ-vectors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/displ-vectors/Makefile -------------------------------------------------------------------------------- /examples/displ-vectors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/displ-vectors/README -------------------------------------------------------------------------------- /examples/displ-vectors/dwt_generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/displ-vectors/dwt_generate.sh -------------------------------------------------------------------------------- /examples/displ-vectors/dwt_plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/displ-vectors/dwt_plot.sh -------------------------------------------------------------------------------- /examples/displ-vectors/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/displ-vectors/plot.txt -------------------------------------------------------------------------------- /examples/displ-vectors/vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/displ-vectors/vectors.c -------------------------------------------------------------------------------- /examples/eaw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/eaw/Makefile -------------------------------------------------------------------------------- /examples/eaw/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/eaw/simple.c -------------------------------------------------------------------------------- /examples/filter-coeffs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/filter-coeffs/Makefile -------------------------------------------------------------------------------- /examples/filter-coeffs/wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/filter-coeffs/wavelet.c -------------------------------------------------------------------------------- /examples/func2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/func2/Makefile -------------------------------------------------------------------------------- /examples/func2/func2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/func2/func2.c -------------------------------------------------------------------------------- /examples/function-iterating/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/function-iterating/Makefile -------------------------------------------------------------------------------- /examples/function-iterating/wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/function-iterating/wavelet.c -------------------------------------------------------------------------------- /examples/hdr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/hdr/Makefile -------------------------------------------------------------------------------- /examples/hdr/exr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/hdr/exr.cpp -------------------------------------------------------------------------------- /examples/hdr/exr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/hdr/exr.h -------------------------------------------------------------------------------- /examples/hdr/hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/hdr/hdr.c -------------------------------------------------------------------------------- /examples/info/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/info/Makefile -------------------------------------------------------------------------------- /examples/info/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/info/info.c -------------------------------------------------------------------------------- /examples/load-int/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/load-int/Makefile -------------------------------------------------------------------------------- /examples/load-int/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/load-int/simple.c -------------------------------------------------------------------------------- /examples/load/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/load/Makefile -------------------------------------------------------------------------------- /examples/load/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/load/simple.c -------------------------------------------------------------------------------- /examples/mra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/mra/Makefile -------------------------------------------------------------------------------- /examples/mra/mra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/mra/mra.c -------------------------------------------------------------------------------- /examples/mra/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/mra/plot.txt -------------------------------------------------------------------------------- /examples/nsls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/nsls/Makefile -------------------------------------------------------------------------------- /examples/nsls/nsls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/nsls/nsls.c -------------------------------------------------------------------------------- /examples/nsls/nsls97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/nsls/nsls97.c -------------------------------------------------------------------------------- /examples/opencv-int/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/opencv-int/Makefile -------------------------------------------------------------------------------- /examples/opencv-int/showdwt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/opencv-int/showdwt.cpp -------------------------------------------------------------------------------- /examples/opencv-subbands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/opencv-subbands/Makefile -------------------------------------------------------------------------------- /examples/opencv-subbands/showdwt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/opencv-subbands/showdwt.cpp -------------------------------------------------------------------------------- /examples/opencv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/opencv/Makefile -------------------------------------------------------------------------------- /examples/opencv/showdwt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/opencv/showdwt.cpp -------------------------------------------------------------------------------- /examples/perf-plot-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-core/Makefile -------------------------------------------------------------------------------- /examples/perf-plot-core/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-core/perf.c -------------------------------------------------------------------------------- /examples/perf-plot-core/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-core/plot.txt -------------------------------------------------------------------------------- /examples/perf-plot-line/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-line/Makefile -------------------------------------------------------------------------------- /examples/perf-plot-line/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-line/perf.c -------------------------------------------------------------------------------- /examples/perf-plot-line/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-line/plot.txt -------------------------------------------------------------------------------- /examples/perf-plot-single/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-single/Makefile -------------------------------------------------------------------------------- /examples/perf-plot-single/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-single/perf.c -------------------------------------------------------------------------------- /examples/perf-plot-single/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-single/plot.txt -------------------------------------------------------------------------------- /examples/perf-plot-single/table.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-single/table.sh -------------------------------------------------------------------------------- /examples/perf-plot-supercore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-supercore/Makefile -------------------------------------------------------------------------------- /examples/perf-plot-supercore/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-supercore/perf.c -------------------------------------------------------------------------------- /examples/perf-plot-supercore/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-supercore/plot.txt -------------------------------------------------------------------------------- /examples/perf-plot-sym/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-sym/Makefile -------------------------------------------------------------------------------- /examples/perf-plot-sym/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-sym/perf.c -------------------------------------------------------------------------------- /examples/perf-plot-sym/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot-sym/plot.txt -------------------------------------------------------------------------------- /examples/perf-plot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot/Makefile -------------------------------------------------------------------------------- /examples/perf-plot/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot/perf.c -------------------------------------------------------------------------------- /examples/perf-plot/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/perf-plot/plot.txt -------------------------------------------------------------------------------- /examples/similarity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/similarity/Makefile -------------------------------------------------------------------------------- /examples/similarity/cmp-tex-short.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/similarity/cmp-tex-short.sh -------------------------------------------------------------------------------- /examples/similarity/cmp-tex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/similarity/cmp-tex.sh -------------------------------------------------------------------------------- /examples/similarity/cmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/similarity/cmp.sh -------------------------------------------------------------------------------- /examples/similarity/compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/similarity/compare.cpp -------------------------------------------------------------------------------- /examples/simple-double/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-double/Makefile -------------------------------------------------------------------------------- /examples/simple-double/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-double/simple.c -------------------------------------------------------------------------------- /examples/simple-int/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-int/Makefile -------------------------------------------------------------------------------- /examples/simple-int/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-int/simple.c -------------------------------------------------------------------------------- /examples/simple-interpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-interpl/Makefile -------------------------------------------------------------------------------- /examples/simple-interpl/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-interpl/simple.c -------------------------------------------------------------------------------- /examples/simple-newapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-newapi/Makefile -------------------------------------------------------------------------------- /examples/simple-newapi/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-newapi/simple.c -------------------------------------------------------------------------------- /examples/simple-perf-int/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf-int/Makefile -------------------------------------------------------------------------------- /examples/simple-perf-int/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf-int/simple.c -------------------------------------------------------------------------------- /examples/simple-perf-line/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf-line/Makefile -------------------------------------------------------------------------------- /examples/simple-perf-line/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf-line/simple.c -------------------------------------------------------------------------------- /examples/simple-perf-single-sdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf-single-sdl/Makefile -------------------------------------------------------------------------------- /examples/simple-perf-single-sdl/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf-single-sdl/simple.c -------------------------------------------------------------------------------- /examples/simple-perf-single/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf-single/Makefile -------------------------------------------------------------------------------- /examples/simple-perf-single/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf-single/simple.c -------------------------------------------------------------------------------- /examples/simple-perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf/Makefile -------------------------------------------------------------------------------- /examples/simple-perf/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-perf/simple.c -------------------------------------------------------------------------------- /examples/simple-single-loop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-single-loop/Makefile -------------------------------------------------------------------------------- /examples/simple-single-loop/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple-single-loop/simple.c -------------------------------------------------------------------------------- /examples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple/Makefile -------------------------------------------------------------------------------- /examples/simple/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/simple/simple.c -------------------------------------------------------------------------------- /examples/sl-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/sl-core/Makefile -------------------------------------------------------------------------------- /examples/sl-core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/sl-core/core.c -------------------------------------------------------------------------------- /examples/spectra-aligned/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-aligned/Makefile -------------------------------------------------------------------------------- /examples/spectra-aligned/spectra-aligned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-aligned/spectra-aligned.c -------------------------------------------------------------------------------- /examples/spectra-blobs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-blobs/Makefile -------------------------------------------------------------------------------- /examples/spectra-blobs/blobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-blobs/blobs.c -------------------------------------------------------------------------------- /examples/spectra-blobs/spectra-experimental.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-blobs/spectra-experimental.c -------------------------------------------------------------------------------- /examples/spectra-blobs/spectra-experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-blobs/spectra-experimental.h -------------------------------------------------------------------------------- /examples/spectra-dwt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-dwt/Makefile -------------------------------------------------------------------------------- /examples/spectra-dwt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-dwt/main.c -------------------------------------------------------------------------------- /examples/spectra-fe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe/Makefile -------------------------------------------------------------------------------- /examples/spectra-fe/fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe/fe.c -------------------------------------------------------------------------------- /examples/spectra-fe/split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe/split.sh -------------------------------------------------------------------------------- /examples/spectra-fe/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe/test.sh -------------------------------------------------------------------------------- /examples/spectra-fe2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe2/Makefile -------------------------------------------------------------------------------- /examples/spectra-fe2/fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe2/fe.c -------------------------------------------------------------------------------- /examples/spectra-fe2/hole.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | while( EOF != fgetc(stdin) ) 6 | ; 7 | 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /examples/spectra-fe2/split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe2/split.sh -------------------------------------------------------------------------------- /examples/spectra-fe2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe2/test.sh -------------------------------------------------------------------------------- /examples/spectra-fe3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe3/Makefile -------------------------------------------------------------------------------- /examples/spectra-fe3/fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe3/fe.c -------------------------------------------------------------------------------- /examples/spectra-fe3/hole.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | while( EOF != fgetc(stdin) ) 6 | ; 7 | 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /examples/spectra-fe3/split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe3/split.sh -------------------------------------------------------------------------------- /examples/spectra-fe3/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-fe3/test.sh -------------------------------------------------------------------------------- /examples/spectra-swt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-swt/Makefile -------------------------------------------------------------------------------- /examples/spectra-swt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-swt/main.c -------------------------------------------------------------------------------- /examples/spectra-swt/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | time svm-grid data/fv.svm 4 | -------------------------------------------------------------------------------- /examples/spectra-tf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-tf/Makefile -------------------------------------------------------------------------------- /examples/spectra-tf/tf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/spectra-tf/tf.c -------------------------------------------------------------------------------- /examples/start/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/start/Makefile -------------------------------------------------------------------------------- /examples/start/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/start/start.c -------------------------------------------------------------------------------- /examples/subbands-int/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/subbands-int/Makefile -------------------------------------------------------------------------------- /examples/subbands-int/subbands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/subbands-int/subbands.c -------------------------------------------------------------------------------- /examples/subbands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/subbands/Makefile -------------------------------------------------------------------------------- /examples/subbands/subbands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/subbands/subbands.c -------------------------------------------------------------------------------- /examples/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/test/Makefile -------------------------------------------------------------------------------- /examples/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/test/test.c -------------------------------------------------------------------------------- /examples/time-freq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/time-freq/Makefile -------------------------------------------------------------------------------- /examples/time-freq/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/time-freq/main.c -------------------------------------------------------------------------------- /examples/wavelet-func/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/wavelet-func/Makefile -------------------------------------------------------------------------------- /examples/wavelet-func/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/wavelet-func/plot.txt -------------------------------------------------------------------------------- /examples/wavelet-func/wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/examples/wavelet-func/wavelet.c -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/core-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/core-int.c -------------------------------------------------------------------------------- /src/core-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/core-int.h -------------------------------------------------------------------------------- /src/cvdwt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/cvdwt.cpp -------------------------------------------------------------------------------- /src/cvdwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/cvdwt.h -------------------------------------------------------------------------------- /src/denoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/denoise.c -------------------------------------------------------------------------------- /src/denoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/denoise.h -------------------------------------------------------------------------------- /src/dwt-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt-core.c -------------------------------------------------------------------------------- /src/dwt-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt-core.h -------------------------------------------------------------------------------- /src/dwt-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt-simple.c -------------------------------------------------------------------------------- /src/dwt-simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt-simple.h -------------------------------------------------------------------------------- /src/dwt-sym-ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt-sym-ms.c -------------------------------------------------------------------------------- /src/dwt-sym-ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt-sym-ms.h -------------------------------------------------------------------------------- /src/dwt-sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt-sym.c -------------------------------------------------------------------------------- /src/dwt-sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt-sym.h -------------------------------------------------------------------------------- /src/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt.c -------------------------------------------------------------------------------- /src/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/dwt.h -------------------------------------------------------------------------------- /src/eaw-experimental.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/eaw-experimental.c -------------------------------------------------------------------------------- /src/eaw-experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/eaw-experimental.h -------------------------------------------------------------------------------- /src/firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/firmware/Makefile -------------------------------------------------------------------------------- /src/firmware/fw_fp01_lift4sa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/firmware/fw_fp01_lift4sa.c -------------------------------------------------------------------------------- /src/firmware/fw_fp01_lift4sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/firmware/fw_fp01_lift4sb.c -------------------------------------------------------------------------------- /src/gabor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/gabor.c -------------------------------------------------------------------------------- /src/gabor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/gabor.h -------------------------------------------------------------------------------- /src/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/image.c -------------------------------------------------------------------------------- /src/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/image.h -------------------------------------------------------------------------------- /src/inline-sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/inline-sdl.h -------------------------------------------------------------------------------- /src/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/inline.h -------------------------------------------------------------------------------- /src/libdwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/libdwt.c -------------------------------------------------------------------------------- /src/libdwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/libdwt.h -------------------------------------------------------------------------------- /src/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/mainpage.h -------------------------------------------------------------------------------- /src/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/signal.c -------------------------------------------------------------------------------- /src/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/signal.h -------------------------------------------------------------------------------- /src/spectra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/spectra.c -------------------------------------------------------------------------------- /src/spectra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/spectra.h -------------------------------------------------------------------------------- /src/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/swt.c -------------------------------------------------------------------------------- /src/swt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/swt.h -------------------------------------------------------------------------------- /src/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/system.c -------------------------------------------------------------------------------- /src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/system.h -------------------------------------------------------------------------------- /src/tutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/tutorial.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/util.h -------------------------------------------------------------------------------- /src/volume-dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/volume-dwt.c -------------------------------------------------------------------------------- /src/volume-dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/volume-dwt.h -------------------------------------------------------------------------------- /src/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/volume.c -------------------------------------------------------------------------------- /src/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbarin02/libdwt/HEAD/src/volume.h --------------------------------------------------------------------------------