- Nov 27, 2012
-
-
Marco Biasini authored
-
- Nov 26, 2012
-
-
Gabriel Studer authored
are now sent by email.
-
Gabriel Studer authored
-
- Nov 22, 2012
-
-
Valerio Mariani authored
-
- Nov 21, 2012
-
-
Marco Biasini authored
Patch by Jeff Lovelace
-
Marco Biasini authored
-
- Nov 20, 2012
-
-
Gabriel Studer authored
-
Gabriel Studer authored
-
Gabriel Studer authored
-
Gabriel Studer authored
-
- Nov 19, 2012
-
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
there are now three startup files; ost_startup.py (former init_cl.py) initializes non-gui ost; dng_startup (former init.py) initializes dng; and gosty_startup initializes gosty (some issues remain what to put into dng_startup as opposed to gosty_startup). also, files are now properly placed into site-packages/ost (on osx and linux)
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
moved scene.Export to python layer to allow differentiated argument handling; more fixes to glx framebuffer memory handling
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
-
Ansgar Philippsen authored
-
Gabriel Studer authored
yet.
-
- Nov 16, 2012
-
-
Andreas Schenk authored
-
Andreas Schenk authored
-
Andreas Schenk authored
-
- Nov 15, 2012
- Nov 14, 2012
-
-
Gabriel Studer authored
parameters of RenumberChain function.
-
Gabriel Studer authored
with the requested editor. Attention: Interface of RenumberChain has slightly changed.
-
- Nov 12, 2012
-
-
Andreas Schenk authored
-
Andreas Schenk authored
changed python unit tests to run with python instead of ost Remarks ------- Python unit tests using blast, clustalw or the compound lib where skipped on my system. There might be still some missing imports in these tests.
-
- Nov 11, 2012
-
-
Andreas Schenk authored
Changed in detail: ------------------ - removed DEPRECATED and unused code (slice and row pointers) in value holder - switched from new allocatd array to std::vector - removed explicit data initialization loop - using size_t instead of unsigned int for memory allocation - removed padding code - removed try catch(...) statements - added overflow check for big volumes - optimized 3D index to linear index calculation - removed physical extent for spatial domain (identical to logical extend not that padding is gone) - switched FFT to out of place transforms Benefits -------- - memory for large images is correctly allocated - if the memory can't be allocated an exception is thrown instead of crashing the program - speed increase for FFT ca. 12% and for algorithms using direct value access (e.g. Stat) ca. 7% Issues ----- - FFTs are not out of place, leading to increased memory usage for c2c DFT backtransform and hc2r FFT/DFT backtransform (3x image size instead of 2x image size). If necessary it would be possible to add a fallback for these cases (i.e. catch bad_alloc for the tmp state) and do them in place in low memory conditions. Padding for the in-place transform could be added to the std::vector either at construction time or otherwise using reserve().
-