Skip to content

Made a few speed improvements to vtkImageReslice.

Seun Odutola requested to merge SeunOdutola/vtk:fasterImageReslice into master

Changed the bitwise AND to logical AND, which produced an improvement from an average of 17.4ms to 11.6ms. Also changed the do-while copying of char * to use memcpy which presented a gain of 41.9% (17.4ms to an average of 10.1ms).

Merge request reports