You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improved the generated image quality when it's resized both horizontally and vertically at the same time. This is realized by using a merged technique, which means that the shrink and enlarge operation is triggered in parallel and not one after the other. For example if we are opting to enlarge an image vertically and shrink it horizontally, in the previous version this is realized by first calling the enlarge operation and only after it's finished we are calling the shrink operation. The final output didn't looked too good because the horizontal and vertical seams wasn't interleaved. In the current version the shrink and enlarge operation is called interleaved.
Also it's been covered all of the possible shrink and enlarge combinations with or without the percentage flag involved.