summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Fix some warningsWillem Jan Palenstijn2017-10-125-243/+236
|
* Merge branch 'master' into parallel_vecWillem Jan Palenstijn2017-10-111-15/+0
|\
| * Improve object creation error messagesWillem Jan Palenstijn2017-10-111-15/+0
| |
* | Make geometry config checks slightly less numerically strictWillem Jan Palenstijn2017-10-111-1/+1
| |
* | Scale 2D projection results by detector pixel widthWillem Jan Palenstijn2017-10-113-6/+12
| | | | | | | | | | The strip and cuda projectors already did this scaling, so this makes the other behave consistently.
* | Unify some parallel_vec parameter computationsWillem Jan Palenstijn2017-09-271-0/+3
| |
* | Fix non-square window for CPU projectorsWillem Jan Palenstijn2017-09-205-5/+5
| |
* | Remove broken openmp support from CPU kernelsWillem Jan Palenstijn2017-09-205-5/+0
| | | | | | | | The writes to the volume in the (ray-driven) backprojection are not done in a thread-safe way.
* | Fix boundary issues in par_linearWillem Jan Palenstijn2017-09-181-9/+9
| |
* | Fix boundary issues in fan_lineWillem Jan Palenstijn2017-09-181-17/+17
| |
* | Homogenize styleWillem Jan Palenstijn2017-09-151-31/+11
| |
* | Fix boundary issues in par_lineWillem Jan Palenstijn2017-09-151-14/+14
| |
* | Merge branch 'master' into parallel_vecWillem Jan Palenstijn2017-09-1598-852/+777
|\|
| * Fix build without CUDAWillem Jan Palenstijn2017-05-222-0/+8
| |
| * Remove using namespace astra; from headersWillem Jan Palenstijn2017-02-166-66/+57
| |
| * Remove using namespace std; from headersWillem Jan Palenstijn2017-02-1628-72/+68
| |
| * Update commentsWillem Jan Palenstijn2017-02-086-30/+27
| |
| * Start work on CFloat32Data3DGPU to allow persistent/external GPU memoryWillem Jan Palenstijn2017-02-088-32/+329
| |
| * Remove unused 3d global min/maxWillem Jan Palenstijn2017-02-082-56/+2
| |
| * Remove unused data3d functionsWillem Jan Palenstijn2017-02-084-213/+0
| |
| * Remove unused functionWillem Jan Palenstijn2017-02-081-12/+0
| |
| * Fix warningWillem Jan Palenstijn2017-01-241-2/+2
| |
| * Update version to 1.8Willem Jan Palenstijn2016-12-051-2/+2
| |
| * Expose the density weighting option of cone_bpWillem Jan Palenstijn2016-12-011-0/+2
| | | | | | | | It is now exposed via the new DensityWeighting option of CudaProjector3D.
| * Fix warningsWillem Jan Palenstijn2016-11-281-4/+2
| |
| * Update headers (website+2016)Willem Jan Palenstijn2016-11-2895-379/+285
| |
| * Merge branch 'fdk_custom_filter'Willem Jan Palenstijn2016-11-282-1/+4
| |\
| | * Merge branch 'master' into fdk_custom_filterWillem Jan Palenstijn2016-10-134-32/+40
| | |\
| | * | Add option to specify custom filter for FDKDaniel M. Pelt2016-05-201-0/+1
| | | |
| * | | Change order of template instantiations for clangWillem Jan Palenstijn2016-11-251-4/+4
| | |/ | |/| | | | | | | At least Apple's clang-703.0.31 needs this.
* | | Merge branch 'master' into parallel_vecWillem Jan Palenstijn2016-10-073-27/+37
|\| |
| * | Merge branch 'master' into FDKWillem Jan Palenstijn2016-10-064-11/+24
| |\ \
| | * \ Merge pull request #62 from wjp/stringutilWillem Jan Palenstijn2016-07-291-0/+3
| | |\ \ | | | | | | | | | | Minor string parsing changes
| | | * | Replace use of boost::split by own functionWillem Jan Palenstijn2016-07-281-0/+3
| | | |/
| * | | Merge branch 'master' into FDKWillem Jan Palenstijn2016-04-221-88/+44
| |\ \ \
| * | | | Use CompositeGeometryManager for FDKWillem Jan Palenstijn2016-04-181-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | Also fix a number of scaling/weighting issues in FDK, and switch to standard cone_bp with FDKWeighting for the BP step.
| * | | | Merge branch 'master' into anisoWillem Jan Palenstijn2016-04-1817-101/+185
| |\ \ \ \
| * | | | | Process non-cubic-voxel astra geometriesWillem Jan Palenstijn2016-02-101-26/+26
| | | | | |
* | | | | | Fix memory leak in CPU projectorsWillem Jan Palenstijn2016-07-293-0/+8
| | | | | |
* | | | | | Add CUDA parvec supportWillem Jan Palenstijn2016-07-294-46/+69
| | | | | |
* | | | | | Merge branch 'master' into parvecWillem Jan Palenstijn2016-07-2839-302/+736
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | |
| * | | | | Remove leftover code from SingletonWillem Jan Palenstijn2016-07-281-5/+1
| | |_|_|/ | |/| | |
| * | | | Add sanity checkWillem Jan Palenstijn2016-05-171-2/+2
| | | | |
| * | | | Avoid defining singleton construction in header fileWillem Jan Palenstijn2016-05-171-4/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | That way, the call to new is always executed by code inside libastra. This avoids the situation where a singleton gets created by a copy of the constructor linked into an object file outside of libastra, such as a .mex file, which would then also cause the vtable to be outside of libastra. This situation would cause issues when .mex files are unloaded.
| * | | | Fix buildWillem Jan Palenstijn2016-04-221-1/+1
| | | | |
| * | | | Fix buildWillem Jan Palenstijn2016-04-221-1/+1
| | |_|/ | |/| |
| * | | Change CPU FFT implementationDaniel M. Pelt2016-04-221-88/+44
| | |/ | |/|
| * | Merge pull request #29 from wjp/indexmanagerWillem Jan Palenstijn2016-04-154-34/+99
| |\ \ | | | | | | | | Add an AstraIndexManager
| | * \ Merge branch 'master' into indexmanagerWillem Jan Palenstijn2016-03-013-46/+30
| | |\ \
| | * | | Slightly simplify CAstraObjectManager::removeWillem Jan Palenstijn2016-02-161-3/+2
| | | | |