├── .gitignore ├── src ├── third │ ├── nfft │ │ ├── NEWS │ │ ├── doc │ │ │ ├── nfft.tag │ │ │ └── assets │ │ │ │ └── logo.png │ │ ├── examples │ │ │ ├── mri │ │ │ │ └── Makefile.am │ │ │ ├── fpt │ │ │ │ ├── .deps │ │ │ │ │ └── simple_test.Po │ │ │ │ └── Makefile.am │ │ │ ├── nfct │ │ │ │ ├── .deps │ │ │ │ │ └── simple_test.Po │ │ │ │ ├── Makefile.am │ │ │ │ └── README │ │ │ ├── nfsft │ │ │ │ └── .deps │ │ │ │ │ ├── simple_test.Po │ │ │ │ │ ├── nfsft_benchomp_detail.Po │ │ │ │ │ ├── nfsft_benchomp-nfsft_benchomp.Po │ │ │ │ │ ├── nfsft_benchomp_createdataset.Po │ │ │ │ │ ├── simple_test_threads-simple_test_threads.Po │ │ │ │ │ └── nfsft_benchomp_detail_threads-nfsft_benchomp_detail.Po │ │ │ ├── nfsoft │ │ │ │ ├── .deps │ │ │ │ │ └── simple_test.Po │ │ │ │ ├── Makefile.am │ │ │ │ └── README │ │ │ ├── nfst │ │ │ │ ├── .deps │ │ │ │ │ └── simple_test.Po │ │ │ │ ├── Makefile.am │ │ │ │ └── README │ │ │ ├── nnfft │ │ │ │ ├── .deps │ │ │ │ │ ├── accuracy.Po │ │ │ │ │ └── simple_test.Po │ │ │ │ ├── Makefile.am │ │ │ │ └── README │ │ │ ├── nsfft │ │ │ │ ├── .deps │ │ │ │ │ ├── nsfft_test.Po │ │ │ │ │ └── simple_test.Po │ │ │ │ ├── README │ │ │ │ └── Makefile.am │ │ │ ├── nfft │ │ │ │ ├── .deps │ │ │ │ │ ├── nfft_benchomp_detail.Po │ │ │ │ │ ├── simple_test_threads.Po │ │ │ │ │ ├── nfft_benchomp-nfft_benchomp.Po │ │ │ │ │ ├── nfft_benchomp_createdataset.Po │ │ │ │ │ └── nfft_benchomp_detail_threads-nfft_benchomp_detail.Po │ │ │ │ ├── flags.o │ │ │ │ ├── .libs │ │ │ │ │ ├── flags │ │ │ │ │ ├── ndft_fast │ │ │ │ │ ├── nfft_times │ │ │ │ │ ├── simple_test │ │ │ │ │ └── taylor_nfft │ │ │ │ ├── ndft_fast.o │ │ │ │ ├── nfft_times.o │ │ │ │ ├── simple_test.o │ │ │ │ └── taylor_nfft.o │ │ │ ├── solver │ │ │ │ ├── glacier.o │ │ │ │ ├── .libs │ │ │ │ │ ├── glacier │ │ │ │ │ └── simple_test │ │ │ │ ├── simple_test.o │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ └── doxygen.h │ │ │ ├── Makefile.am │ │ │ └── doxygen.c │ │ ├── .libs │ │ │ ├── libnfft3.la │ │ │ ├── libnfft3.so │ │ │ ├── libnfft3.so.2 │ │ │ ├── libnfft3.a │ │ │ └── libnfft3.so.2.0.0 │ │ ├── tests │ │ │ ├── .deps │ │ │ │ ├── bessel.Po │ │ │ │ ├── check.Po │ │ │ │ ├── nfct.Po │ │ │ │ ├── nfft.Po │ │ │ │ ├── nfst.Po │ │ │ │ ├── bspline.Po │ │ │ │ ├── checkall_threads-nfct.Po │ │ │ │ ├── checkall_threads-nfft.Po │ │ │ │ ├── checkall_threads-nfst.Po │ │ │ │ ├── checkall_threads-bessel.Po │ │ │ │ ├── checkall_threads-bspline.Po │ │ │ │ └── checkall_threads-check.Po │ │ │ ├── data │ │ │ │ ├── nfct_1d_1_1.txt │ │ │ │ ├── nfst_1d_2_1.txt │ │ │ │ ├── nfct_adjoint_1d_1_1.txt │ │ │ │ ├── nfst_adjoint_1d_2_1.txt │ │ │ │ ├── nfct_1d_2_1.txt │ │ │ │ ├── nfct_adjoint_1d_2_1.txt │ │ │ │ ├── nfft_1d_1_1.txt │ │ │ │ ├── nfft_adjoint_1d_1_1.txt │ │ │ │ ├── nfst_1d_2_2.txt │ │ │ │ ├── nfst_1d_4_1.txt │ │ │ │ ├── nfst_adjoint_1d_4_1.txt │ │ │ │ ├── nfct_1d_4_1.txt │ │ │ │ ├── nfct_adjoint_1d_4_1.txt │ │ │ │ ├── nfft_1d_2_1.txt │ │ │ │ ├── nfft_adjoint_1d_2_1.txt │ │ │ │ ├── nfst_1d_4_2.txt │ │ │ │ ├── nfft_1d_4_1.txt │ │ │ │ ├── nfft_adjoint_1d_4_1.txt │ │ │ │ ├── nfst_1d_10_1.txt │ │ │ │ ├── nfst_adjoint_1d_10_1.txt │ │ │ │ ├── nfct_1d_10_1.txt │ │ │ │ ├── nfct_adjoint_1d_10_1.txt │ │ │ │ └── nfst_1d_10_2.txt │ │ │ ├── bessel.h │ │ │ └── bspline.h │ │ ├── kernel │ │ │ ├── fpt │ │ │ │ ├── .deps │ │ │ │ │ ├── fpt.Plo │ │ │ │ │ └── libfpt_threads_la-fpt.Plo │ │ │ │ └── Makefile.am │ │ │ ├── mri │ │ │ │ ├── .deps │ │ │ │ │ └── mri.Plo │ │ │ │ └── Makefile.am │ │ │ ├── nfct │ │ │ │ ├── .deps │ │ │ │ │ └── nfct.Plo │ │ │ │ └── Makefile.am │ │ │ ├── nfst │ │ │ │ ├── .deps │ │ │ │ │ └── nfst.Plo │ │ │ │ └── Makefile.am │ │ │ ├── .libs │ │ │ │ ├── libkernel.la │ │ │ │ └── libkernel.a │ │ │ ├── nfft │ │ │ │ ├── .libs │ │ │ │ │ ├── libnfft.la │ │ │ │ │ ├── nfft.o │ │ │ │ │ └── libnfft.a │ │ │ │ ├── .deps │ │ │ │ │ └── libnfft_threads_la-nfft.Plo │ │ │ │ ├── nfft.o │ │ │ │ ├── nfft.lo │ │ │ │ ├── Makefile.am │ │ │ │ └── libnfft.la │ │ │ ├── nfsft │ │ │ │ ├── .deps │ │ │ │ │ ├── legendre.Plo │ │ │ │ │ ├── nfsft.Plo │ │ │ │ │ ├── libnfsft_threads_la-legendre.Plo │ │ │ │ │ └── libnfsft_threads_la-nfsft.Plo │ │ │ │ └── Makefile.am │ │ │ ├── nfsoft │ │ │ │ ├── .deps │ │ │ │ │ ├── nfsoft.Plo │ │ │ │ │ └── wigner.Plo │ │ │ │ └── Makefile.am │ │ │ ├── nnfft │ │ │ │ ├── .deps │ │ │ │ │ └── nnfft.Plo │ │ │ │ └── Makefile.am │ │ │ ├── nsfft │ │ │ │ ├── .deps │ │ │ │ │ └── nsfft.Plo │ │ │ │ └── Makefile.am │ │ │ ├── util │ │ │ │ ├── .libs │ │ │ │ │ ├── libutil.la │ │ │ │ │ ├── damp.o │ │ │ │ │ ├── error.o │ │ │ │ │ ├── float.o │ │ │ │ │ ├── int.o │ │ │ │ │ ├── print.o │ │ │ │ │ ├── rand.o │ │ │ │ │ ├── sinc.o │ │ │ │ │ ├── sort.o │ │ │ │ │ ├── time.o │ │ │ │ │ ├── assert.o │ │ │ │ │ ├── bspline.o │ │ │ │ │ ├── lambda.o │ │ │ │ │ ├── libutil.a │ │ │ │ │ ├── malloc.o │ │ │ │ │ ├── thread.o │ │ │ │ │ ├── vector1.o │ │ │ │ │ ├── vector2.o │ │ │ │ │ ├── vector3.o │ │ │ │ │ ├── version.o │ │ │ │ │ ├── voronoi.o │ │ │ │ │ ├── window.o │ │ │ │ │ └── bessel_i0.o │ │ │ │ ├── .deps │ │ │ │ │ ├── libutil_threads_la-damp.Plo │ │ │ │ │ ├── libutil_threads_la-error.Plo │ │ │ │ │ ├── libutil_threads_la-float.Plo │ │ │ │ │ ├── libutil_threads_la-int.Plo │ │ │ │ │ ├── libutil_threads_la-print.Plo │ │ │ │ │ ├── libutil_threads_la-rand.Plo │ │ │ │ │ ├── libutil_threads_la-sinc.Plo │ │ │ │ │ ├── libutil_threads_la-sort.Plo │ │ │ │ │ ├── libutil_threads_la-time.Plo │ │ │ │ │ ├── libutil_threads_la-assert.Plo │ │ │ │ │ ├── libutil_threads_la-bessel_i0.Plo │ │ │ │ │ ├── libutil_threads_la-bspline.Plo │ │ │ │ │ ├── libutil_threads_la-lambda.Plo │ │ │ │ │ ├── libutil_threads_la-malloc.Plo │ │ │ │ │ ├── libutil_threads_la-thread.Plo │ │ │ │ │ ├── libutil_threads_la-vector1.Plo │ │ │ │ │ ├── libutil_threads_la-vector2.Plo │ │ │ │ │ ├── libutil_threads_la-vector3.Plo │ │ │ │ │ ├── libutil_threads_la-version.Plo │ │ │ │ │ ├── libutil_threads_la-voronoi.Plo │ │ │ │ │ └── libutil_threads_la-window.Plo │ │ │ │ ├── int.o │ │ │ │ ├── assert.o │ │ │ │ ├── damp.o │ │ │ │ ├── error.o │ │ │ │ ├── float.o │ │ │ │ ├── lambda.o │ │ │ │ ├── malloc.o │ │ │ │ ├── print.o │ │ │ │ ├── rand.o │ │ │ │ ├── sinc.o │ │ │ │ ├── sort.o │ │ │ │ ├── thread.o │ │ │ │ ├── time.o │ │ │ │ ├── window.o │ │ │ │ ├── bspline.o │ │ │ │ ├── vector1.o │ │ │ │ ├── vector2.o │ │ │ │ ├── vector3.o │ │ │ │ ├── version.o │ │ │ │ ├── voronoi.o │ │ │ │ ├── bessel_i0.o │ │ │ │ ├── int.lo │ │ │ │ ├── damp.lo │ │ │ │ ├── rand.lo │ │ │ │ ├── sinc.lo │ │ │ │ ├── sort.lo │ │ │ │ ├── time.lo │ │ │ │ ├── error.lo │ │ │ │ ├── float.lo │ │ │ │ ├── print.lo │ │ │ │ ├── assert.lo │ │ │ │ ├── bspline.lo │ │ │ │ ├── lambda.lo │ │ │ │ ├── malloc.lo │ │ │ │ ├── thread.lo │ │ │ │ ├── vector1.lo │ │ │ │ ├── vector2.lo │ │ │ │ ├── vector3.lo │ │ │ │ ├── version.lo │ │ │ │ ├── voronoi.lo │ │ │ │ ├── window.lo │ │ │ │ ├── bessel_i0.lo │ │ │ │ ├── Makefile.am │ │ │ │ ├── libutil.la │ │ │ │ └── version.c │ │ │ ├── solver │ │ │ │ ├── .libs │ │ │ │ │ ├── libsolver.la │ │ │ │ │ ├── solver.o │ │ │ │ │ └── libsolver.a │ │ │ │ ├── solver.o │ │ │ │ ├── Makefile.am │ │ │ │ ├── solver.lo │ │ │ │ └── libsolver.la │ │ │ └── libkernel.la │ │ ├── 3rdparty │ │ │ ├── .libs │ │ │ │ ├── lib3rdparty.la │ │ │ │ └── lib3rdparty.a │ │ │ ├── cstripack │ │ │ │ ├── .libs │ │ │ │ │ ├── libcstripack.la │ │ │ │ │ ├── cstripack.o │ │ │ │ │ └── libcstripack.a │ │ │ │ ├── cstripack.o │ │ │ │ ├── Makefile.am │ │ │ │ ├── cstripack.lo │ │ │ │ └── libcstripack.la │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ └── lib3rdparty.la │ │ ├── applications │ │ │ ├── iterS2 │ │ │ │ ├── .deps │ │ │ │ │ └── iterS2.Po │ │ │ │ ├── Makefile.am │ │ │ │ └── doxygen.h │ │ │ ├── fastsumS2 │ │ │ │ ├── .deps │ │ │ │ │ └── fastsumS2.Po │ │ │ │ ├── Makefile.am │ │ │ │ └── doxygen.h │ │ │ ├── fastsum │ │ │ │ ├── .libs │ │ │ │ │ ├── libfastsum.la │ │ │ │ │ ├── libkernels.la │ │ │ │ │ ├── fastsum.o │ │ │ │ │ ├── kernels.o │ │ │ │ │ ├── fastsum_test │ │ │ │ │ ├── libfastsum.a │ │ │ │ │ ├── libkernels.a │ │ │ │ │ └── fastsum_matlab │ │ │ │ ├── .deps │ │ │ │ │ ├── fastsum_benchomp_detail.Po │ │ │ │ │ ├── fastsum_benchomp_createdataset.Po │ │ │ │ │ ├── libfastsum_threads_la-fastsum.Plo │ │ │ │ │ ├── fastsum_benchomp-fastsum_benchomp.Po │ │ │ │ │ ├── fastsum_test_threads-fastsum_test.Po │ │ │ │ │ └── fastsum_benchomp_detail_threads-fastsum_benchomp_detail.Po │ │ │ │ ├── fastsum.o │ │ │ │ ├── kernels.o │ │ │ │ ├── fastsum_test.o │ │ │ │ ├── fastsum_matlab.o │ │ │ │ ├── fastsum.lo │ │ │ │ ├── kernels.lo │ │ │ │ ├── libkernels.la │ │ │ │ └── libfastsum.la │ │ │ ├── mri │ │ │ │ ├── mri2d │ │ │ │ │ ├── .deps │ │ │ │ │ │ ├── construct_data_2d.Po │ │ │ │ │ │ ├── reconstruct_data_2d.Po │ │ │ │ │ │ ├── construct_data_inh_2d1d.Po │ │ │ │ │ │ ├── construct_data_inh_3d.Po │ │ │ │ │ │ ├── reconstruct_data_inh_3d.Po │ │ │ │ │ │ ├── reconstruct_data_gridding.Po │ │ │ │ │ │ ├── reconstruct_data_inh_2d1d.Po │ │ │ │ │ │ └── reconstruct_data_inh_nnfft.Po │ │ │ │ │ ├── doxygen.h │ │ │ │ │ ├── README │ │ │ │ │ └── construct_inh.m │ │ │ │ ├── mri3d │ │ │ │ │ ├── .deps │ │ │ │ │ │ ├── construct_data_2d1d.Po │ │ │ │ │ │ ├── construct_data_3d.Po │ │ │ │ │ │ ├── reconstruct_data_3d.Po │ │ │ │ │ │ ├── reconstruct_data_2d1d.Po │ │ │ │ │ │ └── reconstruct_data_gridding.Po │ │ │ │ │ ├── README │ │ │ │ │ └── doxygen.h │ │ │ │ ├── Makefile.am │ │ │ │ └── doxygen.c │ │ │ ├── quadratureS2 │ │ │ │ ├── .deps │ │ │ │ │ └── quadratureS2.Po │ │ │ │ ├── Makefile.am │ │ │ │ ├── example.out │ │ │ │ └── doxygen.h │ │ │ ├── radon │ │ │ │ ├── radon.o │ │ │ │ ├── .libs │ │ │ │ │ ├── radon │ │ │ │ │ └── inverse_radon │ │ │ │ ├── inverse_radon.o │ │ │ │ └── Makefile.am │ │ │ ├── fastgauss │ │ │ │ ├── fastgauss.o │ │ │ │ ├── .libs │ │ │ │ │ └── fastgauss │ │ │ │ ├── Makefile.am │ │ │ │ └── README │ │ │ ├── polarFFT │ │ │ │ ├── mpolar_fft_test.o │ │ │ │ ├── polar_fft_test.o │ │ │ │ ├── .libs │ │ │ │ │ ├── polar_fft_test │ │ │ │ │ ├── linogram_fft_test │ │ │ │ │ └── mpolar_fft_test │ │ │ │ ├── linogram_fft_test.o │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ └── doxygen.h │ │ │ ├── Makefile.am │ │ │ └── doxygen.c │ │ ├── matlab │ │ │ ├── .deps │ │ │ │ ├── libmatlab_la-args.Plo │ │ │ │ └── libmatlab_la-malloc.Plo │ │ │ ├── nfft │ │ │ │ ├── .deps │ │ │ │ │ └── libnfft_la-nfftmex.Plo │ │ │ │ ├── nfft_set_x.m │ │ │ │ ├── nfft_finalize.m │ │ │ │ ├── nfft_get_x.m │ │ │ │ ├── nfft_set_f.m │ │ │ │ ├── FFTW_MEASURE.m │ │ │ │ ├── nfft_get_f.m │ │ │ │ ├── nfft_init_1d.m │ │ │ │ ├── nfft_trafo.m │ │ │ │ ├── nfft_init_2d.m │ │ │ │ ├── nfft_adjoint.m │ │ │ │ ├── nfft_init_3d.m │ │ │ │ ├── FFTW_ESTIMATE.m │ │ │ │ ├── nfft_set_f_hat.m │ │ │ │ ├── nfft_get_f_hat.m │ │ │ │ ├── ndft_trafo.m │ │ │ │ ├── nfft_precompute_psi.m │ │ │ │ ├── ndft_adjoint.m │ │ │ │ ├── FFT_OUT_OF_PLACE.m │ │ │ │ └── nfft_get_num_threads.m │ │ │ ├── nfsft │ │ │ │ ├── .deps │ │ │ │ │ └── libnfsft_la-nfsftmex.Plo │ │ │ │ ├── @f_hat │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── norm.m │ │ │ │ │ ├── plus.m │ │ │ │ │ ├── char.m │ │ │ │ │ ├── minus.m │ │ │ │ │ └── mtimes.m │ │ │ │ ├── nfsft_forget.m │ │ │ │ ├── nfsft_set_x.m │ │ │ │ ├── nfsft_finalize.m │ │ │ │ ├── nfsft_get_x.m │ │ │ │ ├── nfsft_init.m │ │ │ │ ├── nfsft_set_f.m │ │ │ │ ├── nfsft_trafo.m │ │ │ │ ├── nfsft_get_f.m │ │ │ │ ├── NFSFT_USE_NDFT.m │ │ │ │ ├── NFSFT_USE_DPT.m │ │ │ │ ├── nfsft_adjoint.m │ │ │ │ ├── NFSFT_NORMALIZED.m │ │ │ │ ├── NFSFT_PRESERVE_F_HAT.m │ │ │ │ ├── ndsft_trafo.m │ │ │ │ ├── nfsft_precompute_x.m │ │ │ │ ├── ndsft_adjoint.m │ │ │ │ ├── nfsft_set_f_hat.m │ │ │ │ ├── NFSFT_NO_FAST_ALGORITHM.m │ │ │ │ ├── nfsft_get_f_hat.m │ │ │ │ ├── NFSFT_NO_DIRECT_ALGORITHM.m │ │ │ │ ├── nfsft_init_advanced.m │ │ │ │ ├── nfsft_set_f_hat_linear.m │ │ │ │ ├── nfsft_get_f_hat_linear.m │ │ │ │ ├── nfsft_init_guru.m │ │ │ │ └── nfsft_get_num_threads.m │ │ │ ├── nfsoft │ │ │ │ ├── .deps │ │ │ │ │ └── libnfsoft_la-nfsoftmex.Plo │ │ │ │ ├── Contents.m │ │ │ │ └── nfsoft_get_num_threads.m │ │ │ ├── nnfft │ │ │ │ ├── .deps │ │ │ │ │ └── libnnfft_la-nnfftmex.Plo │ │ │ │ ├── nnfft_set_x.m │ │ │ │ ├── nnfft_finalize.m │ │ │ │ ├── nnfft_get_x.m │ │ │ │ ├── nnfft_set_v.m │ │ │ │ ├── nnfft_set_f.m │ │ │ │ ├── nnfft_get_f.m │ │ │ │ ├── nnfft_init.m │ │ │ │ ├── nnfft_trafo.m │ │ │ │ ├── nnfft_init_1d.m │ │ │ │ ├── nnfft_init_2d.m │ │ │ │ ├── nnfft_set_f_hat.m │ │ │ │ ├── nnfft_get_f_hat.m │ │ │ │ ├── nnfft_init_3d.m │ │ │ │ ├── nnfft_trafo_direct.m │ │ │ │ ├── nnfft_precompute_psi.m │ │ │ │ └── nnfft_get_num_threads.m │ │ │ ├── README │ │ │ └── Makefile.am │ │ ├── support │ │ │ ├── Makefile.am │ │ │ ├── rem.sed │ │ │ └── toc.sed │ │ ├── include │ │ │ ├── stamp-h1 │ │ │ ├── Makefile.am │ │ │ └── api.h │ │ ├── doxygen │ │ │ ├── Makefile.am │ │ │ ├── footer.html │ │ │ └── header.html │ │ ├── nfft3.pc │ │ ├── nfft3.pc.in │ │ └── m4 │ │ │ ├── ax_check_dir.m4 │ │ │ ├── ltversion.m4 │ │ │ └── ax_nfft_module.m4 │ └── steerpyr │ │ ├── Src │ │ ├── edges.o │ │ ├── wrap.o │ │ ├── xfb.o │ │ ├── matrix.o │ │ ├── convolve.o │ │ ├── itrp_sin.o │ │ ├── matrix_pgm.o │ │ ├── show_steer.o │ │ ├── spyramid.o │ │ ├── show_pfilter.o │ │ ├── show_pyramid.o │ │ ├── spyramid_pgm.o │ │ ├── wrap.h │ │ ├── header.c │ │ ├── spyramid_pgm.h │ │ ├── convolve.h │ │ ├── itrp_sin.h │ │ └── matrix_pgm.h │ │ ├── libspyr.a │ │ └── Demo │ │ ├── show_steer │ │ ├── show_pfilter │ │ └── show_pyramid ├── main.cpp └── pipeline │ ├── DataHandler.cpp │ ├── DataHandler.hpp │ └── MotionMagnification.hpp └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /src/third/nfft/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/third/nfft/doc/nfft.tag: -------------------------------------------------------------------------------- 1 | Timestamp 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/mri/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/third/nfft/.libs/libnfft3.la: -------------------------------------------------------------------------------- 1 | ../libnfft3.la -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/bessel.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/nfct.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/nfft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/nfst.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/.libs/libnfft3.so: -------------------------------------------------------------------------------- 1 | libnfft3.so.2.0.0 -------------------------------------------------------------------------------- /src/third/nfft/.libs/libnfft3.so.2: -------------------------------------------------------------------------------- 1 | libnfft3.so.2.0.0 -------------------------------------------------------------------------------- /src/third/nfft/kernel/fpt/.deps/fpt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/mri/.deps/mri.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfct/.deps/nfct.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfst/.deps/nfst.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/bspline.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/.libs/libkernel.la: -------------------------------------------------------------------------------- 1 | ../libkernel.la -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfft/.libs/libnfft.la: -------------------------------------------------------------------------------- 1 | ../libnfft.la -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfsft/.deps/legendre.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfsft/.deps/nfsft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfsoft/.deps/nfsoft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfsoft/.deps/wigner.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nnfft/.deps/nnfft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nsfft/.deps/nsfft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/libutil.la: -------------------------------------------------------------------------------- 1 | ../libutil.la -------------------------------------------------------------------------------- /src/third/nfft/3rdparty/.libs/lib3rdparty.la: -------------------------------------------------------------------------------- 1 | ../lib3rdparty.la -------------------------------------------------------------------------------- /src/third/nfft/applications/iterS2/.deps/iterS2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/fpt/.deps/simple_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfct/.deps/simple_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfsft/.deps/simple_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfsoft/.deps/simple_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfst/.deps/simple_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nnfft/.deps/accuracy.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nnfft/.deps/simple_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nsfft/.deps/nsfft_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nsfft/.deps/simple_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/solver/.libs/libsolver.la: -------------------------------------------------------------------------------- 1 | ../libsolver.la -------------------------------------------------------------------------------- /src/third/nfft/matlab/.deps/libmatlab_la-args.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/matlab/.deps/libmatlab_la-malloc.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/support/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = rem.sed toc.sed -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/checkall_threads-nfct.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/checkall_threads-nfft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/checkall_threads-nfst.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsumS2/.deps/fastsumS2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/include/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for include/config.h 2 | -------------------------------------------------------------------------------- /src/third/nfft/matlab/nfft/.deps/libnfft_la-nfftmex.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/checkall_threads-bessel.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/checkall_threads-bspline.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/tests/.deps/checkall_threads-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/3rdparty/cstripack/.libs/libcstripack.la: -------------------------------------------------------------------------------- 1 | ../libcstripack.la -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.libs/libfastsum.la: -------------------------------------------------------------------------------- 1 | ../libfastsum.la -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.libs/libkernels.la: -------------------------------------------------------------------------------- 1 | ../libkernels.la -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.deps/nfft_benchomp_detail.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.deps/simple_test_threads.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfsft/.deps/nfsft_benchomp_detail.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/fpt/.deps/libfpt_threads_la-fpt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfft/.deps/libnfft_threads_la-nfft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-damp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-error.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-float.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-int.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-print.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-rand.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-sinc.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-sort.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-time.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/matlab/nfsft/.deps/libnfsft_la-nfsftmex.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/matlab/nfsoft/.deps/libnfsoft_la-nfsoftmex.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/matlab/nnfft/.deps/libnnfft_la-nnfftmex.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri2d/.deps/construct_data_2d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri2d/.deps/reconstruct_data_2d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri3d/.deps/construct_data_2d1d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri3d/.deps/construct_data_3d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri3d/.deps/reconstruct_data_3d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/quadratureS2/.deps/quadratureS2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.deps/nfft_benchomp-nfft_benchomp.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.deps/nfft_benchomp_createdataset.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfsft/.deps/libnfsft_threads_la-legendre.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfsft/.deps/libnfsft_threads_la-nfsft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-assert.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-bessel_i0.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-bspline.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-lambda.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-malloc.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-thread.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-vector1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-vector2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-vector3.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-version.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-voronoi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.deps/libutil_threads_la-window.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- 1 | //main.cpp 2 | #define CATCH_CONFIG_MAIN 3 | #include 4 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.deps/fastsum_benchomp_detail.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri2d/.deps/construct_data_inh_2d1d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri2d/.deps/construct_data_inh_3d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri2d/.deps/reconstruct_data_inh_3d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri3d/.deps/reconstruct_data_2d1d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfsft/.deps/nfsft_benchomp-nfsft_benchomp.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfsft/.deps/nfsft_benchomp_createdataset.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.deps/fastsum_benchomp_createdataset.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.deps/libfastsum_threads_la-fastsum.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri2d/.deps/reconstruct_data_gridding.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri2d/.deps/reconstruct_data_inh_2d1d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri2d/.deps/reconstruct_data_inh_nnfft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/mri3d/.deps/reconstruct_data_gridding.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.deps/fastsum_benchomp-fastsum_benchomp.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.deps/fastsum_test_threads-fastsum_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/applications/mri/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = mri2d mri3d 2 | EXTRA_DIST = doxygen.c -------------------------------------------------------------------------------- /src/third/nfft/examples/nfsft/.deps/simple_test_threads-simple_test_threads.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/matlab/README: -------------------------------------------------------------------------------- 1 | This directory contains Matlab interfaces to the NFFT library. 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.deps/nfft_benchomp_detail_threads-nfft_benchomp_detail.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfsft/.deps/nfsft_benchomp_detail_threads-nfsft_benchomp_detail.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/nfft/support/rem.sed: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sed -f 2 | s/

<\/h1>// 3 | s/

[1-9].[1-9].[1-9] <\/h3>// 4 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.deps/fastsum_benchomp_detail_threads-fastsum_benchomp_detail.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/third/steerpyr/Src/edges.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/edges.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/wrap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/wrap.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/xfb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/xfb.o -------------------------------------------------------------------------------- /src/third/steerpyr/libspyr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/libspyr.a -------------------------------------------------------------------------------- /src/third/nfft/.libs/libnfft3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/.libs/libnfft3.a -------------------------------------------------------------------------------- /src/third/nfft/include/Makefile.am: -------------------------------------------------------------------------------- 1 | include_HEADERS = nfft3.h nfft3mp.h 2 | 3 | EXTRA_DIST = infft.h cycle.h api.h 4 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/int.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/int.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/matrix.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/matrix.o -------------------------------------------------------------------------------- /src/third/nfft/doc/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/doc/assets/logo.png -------------------------------------------------------------------------------- /src/third/nfft/doxygen/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = doxygen.css doxygen.Doxyfile doxygen.Doxyfile.in footer.html header.html -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfft/nfft.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/nfft/nfft.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/assert.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/assert.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/damp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/damp.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/error.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/error.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/float.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/float.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/lambda.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/lambda.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/malloc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/malloc.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/print.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/print.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/rand.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/rand.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/sinc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/sinc.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/sort.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/sort.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/thread.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/time.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/time.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/window.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/window.o -------------------------------------------------------------------------------- /src/third/steerpyr/Demo/show_steer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Demo/show_steer -------------------------------------------------------------------------------- /src/third/steerpyr/Src/convolve.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/convolve.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/itrp_sin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/itrp_sin.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/matrix_pgm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/matrix_pgm.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/show_steer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/show_steer.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/spyramid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/spyramid.o -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/flags.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/flags.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/solver/solver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/solver/solver.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/bspline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/bspline.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/vector1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/vector1.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/vector2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/vector2.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/vector3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/vector3.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/version.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/version.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/voronoi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/voronoi.o -------------------------------------------------------------------------------- /src/third/steerpyr/Demo/show_pfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Demo/show_pfilter -------------------------------------------------------------------------------- /src/third/steerpyr/Demo/show_pyramid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Demo/show_pyramid -------------------------------------------------------------------------------- /src/third/steerpyr/Src/show_pfilter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/show_pfilter.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/show_pyramid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/show_pyramid.o -------------------------------------------------------------------------------- /src/third/steerpyr/Src/spyramid_pgm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/steerpyr/Src/spyramid_pgm.o -------------------------------------------------------------------------------- /src/third/nfft/.libs/libnfft3.so.2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/.libs/libnfft3.so.2.0.0 -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.libs/flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/.libs/flags -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/ndft_fast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/ndft_fast.o -------------------------------------------------------------------------------- /src/third/nfft/examples/solver/glacier.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/solver/glacier.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/.libs/libkernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/.libs/libkernel.a -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfft/.libs/nfft.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/nfft/.libs/nfft.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/damp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/damp.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/error.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/error.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/float.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/float.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/int.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/int.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/print.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/print.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/rand.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/rand.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/sinc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/sinc.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/sort.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/sort.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/time.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/time.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/bessel_i0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/bessel_i0.o -------------------------------------------------------------------------------- /src/third/nfft/applications/radon/radon.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/radon/radon.o -------------------------------------------------------------------------------- /src/third/nfft/doxygen/footer.html: -------------------------------------------------------------------------------- 1 |
2 | Generated on $date by Doxygen $doxygenversion 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/nfft_times.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/nfft_times.o -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/simple_test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/simple_test.o -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/taylor_nfft.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/taylor_nfft.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfft/.libs/libnfft.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/nfft/.libs/libnfft.a -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/assert.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/assert.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/bspline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/bspline.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/lambda.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/lambda.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/libutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/libutil.a -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/malloc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/malloc.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/thread.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/vector1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/vector1.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/vector2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/vector2.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/vector3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/vector3.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/version.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/version.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/voronoi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/voronoi.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/window.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/window.o -------------------------------------------------------------------------------- /src/third/nfft/3rdparty/.libs/lib3rdparty.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/3rdparty/.libs/lib3rdparty.a -------------------------------------------------------------------------------- /src/third/nfft/3rdparty/cstripack/cstripack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/3rdparty/cstripack/cstripack.o -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/fastsum.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/fastsum.o -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/kernels.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/kernels.o -------------------------------------------------------------------------------- /src/third/nfft/applications/radon/.libs/radon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/radon/.libs/radon -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.libs/ndft_fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/.libs/ndft_fast -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.libs/nfft_times: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/.libs/nfft_times -------------------------------------------------------------------------------- /src/third/nfft/examples/solver/.libs/glacier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/solver/.libs/glacier -------------------------------------------------------------------------------- /src/third/nfft/examples/solver/simple_test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/solver/simple_test.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/solver/.libs/solver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/solver/.libs/solver.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/.libs/bessel_i0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/util/.libs/bessel_i0.o -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.libs/simple_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/.libs/simple_test -------------------------------------------------------------------------------- /src/third/nfft/examples/nfft/.libs/taylor_nfft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/nfft/.libs/taylor_nfft -------------------------------------------------------------------------------- /src/third/nfft/kernel/solver/.libs/libsolver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/kernel/solver/.libs/libsolver.a -------------------------------------------------------------------------------- /src/third/nfft/applications/fastgauss/fastgauss.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastgauss/fastgauss.o -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/fastsum_test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/fastsum_test.o -------------------------------------------------------------------------------- /src/third/nfft/applications/radon/inverse_radon.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/radon/inverse_radon.o -------------------------------------------------------------------------------- /src/third/nfft/examples/solver/.libs/simple_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/examples/solver/.libs/simple_test -------------------------------------------------------------------------------- /src/third/nfft/3rdparty/cstripack/.libs/cstripack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/3rdparty/cstripack/.libs/cstripack.o -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.libs/fastsum.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/.libs/fastsum.o -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.libs/kernels.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/.libs/kernels.o -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/fastsum_matlab.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/fastsum_matlab.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/mri/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_LTLIBRARIES = libmri.la 4 | 5 | libmri_la_SOURCES = mri.c 6 | -------------------------------------------------------------------------------- /src/third/nfft/3rdparty/cstripack/.libs/libcstripack.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/3rdparty/cstripack/.libs/libcstripack.a -------------------------------------------------------------------------------- /src/third/nfft/applications/fastgauss/.libs/fastgauss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastgauss/.libs/fastgauss -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.libs/fastsum_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/.libs/fastsum_test -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.libs/libfastsum.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/.libs/libfastsum.a -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.libs/libkernels.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/.libs/libkernels.a -------------------------------------------------------------------------------- /src/third/nfft/applications/polarFFT/mpolar_fft_test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/polarFFT/mpolar_fft_test.o -------------------------------------------------------------------------------- /src/third/nfft/applications/polarFFT/polar_fft_test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/polarFFT/polar_fft_test.o -------------------------------------------------------------------------------- /src/third/nfft/applications/radon/.libs/inverse_radon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/radon/.libs/inverse_radon -------------------------------------------------------------------------------- /src/third/nfft/kernel/solver/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_LTLIBRARIES = libsolver.la 4 | libsolver_la_SOURCES = solver.c 5 | -------------------------------------------------------------------------------- /src/third/steerpyr/Src/wrap.h: -------------------------------------------------------------------------------- 1 | #ifndef _WRAP_H 2 | #define _WRAP_H 3 | 4 | int internal_wrap_filter(), internal_wrap_expand(); 5 | 6 | #endif /* _WRAP_H */ 7 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsum/.libs/fastsum_matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/fastsum/.libs/fastsum_matlab -------------------------------------------------------------------------------- /src/third/nfft/applications/polarFFT/.libs/polar_fft_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/polarFFT/.libs/polar_fft_test -------------------------------------------------------------------------------- /src/third/nfft/applications/polarFFT/linogram_fft_test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/polarFFT/linogram_fft_test.o -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfct/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_LTLIBRARIES = libnfct.la 4 | 5 | libnfct_la_SOURCES = nfct.c 6 | 7 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfst/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_LTLIBRARIES = libnfst.la 4 | 5 | libnfst_la_SOURCES = nfst.c 6 | 7 | -------------------------------------------------------------------------------- /src/third/nfft/applications/polarFFT/.libs/linogram_fft_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/polarFFT/.libs/linogram_fft_test -------------------------------------------------------------------------------- /src/third/nfft/applications/polarFFT/.libs/mpolar_fft_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobizt/pbmoma-1/master/src/third/nfft/applications/polarFFT/.libs/mpolar_fft_test -------------------------------------------------------------------------------- /src/third/nfft/kernel/nnfft/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_LTLIBRARIES = libnnfft.la 4 | 5 | libnnfft_la_SOURCES = nnfft.c 6 | 7 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nsfft/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_LTLIBRARIES = libnsfft.la 4 | 5 | libnsfft_la_SOURCES = nsfft.c 6 | 7 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfsoft/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_LTLIBRARIES = libnfsoft.la 4 | libnfsoft_la_SOURCES = nfsoft.c wigner.h wigner.c -------------------------------------------------------------------------------- /src/third/nfft/3rdparty/cstripack/Makefile.am: -------------------------------------------------------------------------------- 1 | noinst_LTLIBRARIES = libcstripack.la 2 | 3 | libcstripack_la_SOURCES = cstripack.c 4 | 5 | libcstripack_la_LIBADD = 6 | 7 | noinst_HEADERS = cstripack.h 8 | -------------------------------------------------------------------------------- /src/third/nfft/matlab/nfsoft/Contents.m: -------------------------------------------------------------------------------- 1 | % 2 | % Files 3 | % nfsoft_get_num_threads - Get number of threads used for computation 4 | % nfsoftmex - Gateway routine to the NFSOFT module 5 | -------------------------------------------------------------------------------- /src/third/nfft/3rdparty/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = cstripack . 2 | 3 | noinst_LTLIBRARIES = lib3rdparty.la 4 | 5 | lib3rdparty_la_SOURCES = 6 | 7 | lib3rdparty_la_LIBADD = cstripack/libcstripack.la 8 | 9 | EXTRA_DIST = README -------------------------------------------------------------------------------- /src/third/nfft/examples/fpt/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | # programs 4 | noinst_PROGRAMS = simple_test 5 | 6 | # sources 7 | simple_test_SOURCES = simple_test.c 8 | simple_test_LDADD = $(top_builddir)/libnfft3.la @fftw3_LDFLAGS@ @fftw3_LIBS@ 9 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfct/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_PROGRAMS = simple_test 4 | 5 | simple_test_SOURCES = simple_test.c 6 | simple_test_LDADD = $(top_builddir)/libnfft3@PREC_SUFFIX@.la @fftw3_LDFLAGS@ @fftw3_LIBS@ 7 | 8 | EXTRA_DIST = README 9 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfst/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_PROGRAMS = simple_test 4 | 5 | simple_test_SOURCES = simple_test.c 6 | simple_test_LDADD = $(top_builddir)/libnfft3@PREC_SUFFIX@.la @fftw3_LDFLAGS@ @fftw3_LIBS@ 7 | 8 | EXTRA_DIST = README 9 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nsfft/README: -------------------------------------------------------------------------------- 1 | nsfft - nonequispaced sparse FFT or sparse NFFT 2 | 3 | Based on the research paper: 4 | Fast evaluation of trigonometric polynomials from hyperbolic crosses 5 | by Markus Fenn and Stefan Kunis and Daniel Potts 6 | 7 | Available from: 8 | http://www.tu-chemnitz.de/~potts 9 | -------------------------------------------------------------------------------- /src/third/nfft/tests/data/nfct_1d_1_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 1 4 | 5 | 1 6 | 7 | 0.4086947450855356169152189517431289973211444954704229578022411938 8 | 9 | 0.4471019172896300480425609973334131570061388309850364774868901391 10 | 11 | 0.4471019172896300480425609973334131570061388309850364774868901391 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/tests/data/nfst_1d_2_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 2 4 | 5 | 1 6 | 7 | 0.4086947450855356169152189517431289973211444954704229578022411938 8 | 9 | 0.4471019172896300480425609973334131570061388309850364774868901391 10 | 11 | 0.242657038654574569149987696924845126872345709402186808541106154 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastgauss/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_PROGRAMS = fastgauss 4 | 5 | fastgauss_SOURCES = fastgauss.c 6 | fastgauss_LDADD = $(top_builddir)/libnfft3@PREC_SUFFIX@.la @fftw3_LDFLAGS@ @fftw3_LIBS@ 7 | 8 | EXTRA_DIST = levelplots.m show_results.m README 9 | -------------------------------------------------------------------------------- /src/third/nfft/nfft3.pc: -------------------------------------------------------------------------------- 1 | prefix=/usr/local 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: NFFT 7 | Description: Nonuniform fast Fourier transform library 8 | Version: 3.3.1 9 | Requires: fftw3 10 | Libs: -L${libdir} -lnfft3 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /src/third/nfft/tests/data/nfct_adjoint_1d_1_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 1 4 | 5 | 1 6 | 7 | 0.4086947450855356169152189517431289973211444954704229578022411938 8 | 9 | 0.4471019172896300480425609973334131570061388309850364774868901391 10 | 11 | 0.4471019172896300480425609973334131570061388309850364774868901391 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/tests/data/nfst_adjoint_1d_2_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 2 4 | 5 | 1 6 | 7 | 0.4086947450855356169152189517431289973211444954704229578022411938 8 | 9 | 0.242657038654574569149987696924845126872345709402186808541106154 10 | 11 | 0.4471019172896300480425609973334131570061388309850364774868901391 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/applications/fastsumS2/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | noinst_PROGRAMS = fastsumS2 4 | 5 | fastsumS2_SOURCES = fastsumS2.c doxygen.h 6 | fastsumS2_LDADD = $(top_builddir)/libnfft3.la -lm 7 | 8 | EXTRA_DIST = fastsumS2.m writeTestcase.m readTestcase.m README example.in example.out 9 | -------------------------------------------------------------------------------- /src/third/nfft/examples/nfsoft/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | ## The program name 4 | noinst_PROGRAMS = simple_test 5 | 6 | ## The source files. 7 | simple_test_SOURCES = simple_test.c 8 | simple_test_LDADD = $(top_builddir)/libnfft3.la @fftw3_LDFLAGS@ @fftw3_LIBS@ 9 | 10 | EXTRA_DIST = README 11 | -------------------------------------------------------------------------------- /src/third/nfft/nfft3.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=${prefix} 3 | libdir=@libdir@ 4 | includedir=${prefix}/include 5 | 6 | Name: NFFT 7 | Description: Nonuniform fast Fourier transform library 8 | Version: @VERSION@ 9 | Requires: fftw3@PREC_SUFFIX@ 10 | Libs: -L${libdir} -lnfft3@PREC_SUFFIX@ 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This is try-out never completed. 2 | 3 | 4 | # pbmoma 5 | A C++ source code implementation of motion magnification based on the paper: Phase Based Video Motion Processing by Neal Wadhwa, Michael Rubinstein, Frédo Durand, William T. Freeman, ACM Transactions on Graphics, Volume 32, Number 4 (Proc. SIGGRAPH), 2013. project. 6 | 7 | -------------------------------------------------------------------------------- /src/third/nfft/matlab/nfsft/@f_hat/Makefile.am: -------------------------------------------------------------------------------- 1 | nfsftmatlabdir = $(datadir)/nfft/matlab/nfsft/@f_hat 2 | 3 | dist_nfsftmatlab_DATA = char.m display.m double.m f_hat.m minus.m mtimes.m mtimesr.m norm.m plus.m subsasgn.m subsref.m 4 | 5 | # EXTRA_DIST = char.m display.m double.m f_hat.m minus.m mtimes.m mtimesr.m norm.m plus.m subsasgn.m subsref.m 6 | -------------------------------------------------------------------------------- /src/third/nfft/applications/iterS2/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/kernel/nfsft 2 | 3 | noinst_PROGRAMS = iterS2 4 | 5 | iterS2_SOURCES = iterS2.c doxygen.h 6 | iterS2_LDADD = $(top_builddir)/libnfft3.la @fftw3_LDFLAGS@ @fftw3_LIBS@ 7 | 8 | EXTRA_DIST = writeTestcase.m writeImageTestcase.m README 9 | #iterS2.m readTestcase.m 10 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/int.lo: -------------------------------------------------------------------------------- 1 | # int.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/int.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='int.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/nfft/nfft.lo: -------------------------------------------------------------------------------- 1 | # nfft.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/nfft.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='nfft.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/damp.lo: -------------------------------------------------------------------------------- 1 | # damp.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/damp.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='damp.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/rand.lo: -------------------------------------------------------------------------------- 1 | # rand.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/rand.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='rand.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/sinc.lo: -------------------------------------------------------------------------------- 1 | # sinc.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/sinc.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='sinc.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/sort.lo: -------------------------------------------------------------------------------- 1 | # sort.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/sort.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='sort.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/time.lo: -------------------------------------------------------------------------------- 1 | # time.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/time.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='time.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/error.lo: -------------------------------------------------------------------------------- 1 | # error.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/error.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='error.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/float.lo: -------------------------------------------------------------------------------- 1 | # float.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/float.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='float.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/print.lo: -------------------------------------------------------------------------------- 1 | # print.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/print.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='print.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/tests/data/nfct_1d_2_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 2 4 | 5 | 1 6 | 7 | 0.4086947450855356169152189517431289973211444954704229578022411938 8 | 9 | 0.4471019172896300480425609973334131570061388309850364774868901391 10 | 0.02045501150664698515444899608259832622778238194598181287024763486 11 | 12 | 0.4299216471657693751804107164390104490849516771740049464554602806 13 | 14 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/solver/solver.lo: -------------------------------------------------------------------------------- 1 | # solver.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/solver.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='solver.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/assert.lo: -------------------------------------------------------------------------------- 1 | # assert.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/assert.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='assert.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/bspline.lo: -------------------------------------------------------------------------------- 1 | # bspline.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/bspline.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='bspline.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/lambda.lo: -------------------------------------------------------------------------------- 1 | # lambda.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/lambda.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='lambda.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/malloc.lo: -------------------------------------------------------------------------------- 1 | # malloc.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/malloc.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='malloc.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/thread.lo: -------------------------------------------------------------------------------- 1 | # thread.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/thread.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='thread.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/vector1.lo: -------------------------------------------------------------------------------- 1 | # vector1.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/vector1.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='vector1.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/vector2.lo: -------------------------------------------------------------------------------- 1 | # vector2.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/vector2.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='vector2.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/vector3.lo: -------------------------------------------------------------------------------- 1 | # vector3.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/vector3.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='vector3.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/version.lo: -------------------------------------------------------------------------------- 1 | # version.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/version.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='version.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/voronoi.lo: -------------------------------------------------------------------------------- 1 | # voronoi.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/voronoi.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='voronoi.o' 12 | 13 | -------------------------------------------------------------------------------- /src/third/nfft/kernel/util/window.lo: -------------------------------------------------------------------------------- 1 | # window.lo - a libtool object file 2 | # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # Name of the PIC object. 8 | pic_object='.libs/window.o' 9 | 10 | # Name of the non-PIC object 11 | non_pic_object='window.o' 12 | 13 | -------------------------------------------------------------------------------- /src/pipeline/DataHandler.cpp: -------------------------------------------------------------------------------- 1 | /* DataHandler.cpp 2 | * Author: Silvia-Laura Pintea 3 | */ 4 | 5 | #include "DataHandler.hpp" 6 | 7 | cv::VideoCapture DataHandler::initVideo() 8 | { 9 | cv::VideoCapture capture(videoPath_); 10 | if(!capture.isOpened()) 11 | { 12 | std::cerr<<"[DataHandler::readVideo] Unable to read video "<
  • \2<\/a><\/li><\/ul>/w "${srcdir}"/doc/api/html/toc.txt 3 | s/^ \* \\subsection \([a-zA-Z0-9_]*\) \(.*\)/