Marek Mauder
Marek Mauder
Unfortunately, only the merged image from PSD is supported.
Actually, a few versions ago I switched from shears to true rotation since there were complains (https://github.com/galfar/deskew/issues/15) about results being too blurred (wasn't "nearest neighbor" shear though) etc. If you...
What I used before was Paeth's *A Fast Algorithm for General Raster Rotation* which uses 3 shears to achieve rotation. I implemented this for Imaging library for generic rotation of...
No GPU used in Deskew. When you run Deskew with timings enabled (`-s t`), which part takes most time?
I could not reproduce this with Delphi 11.3, which version exactly did you use?
Actually, that is some very old revision of the code. It's been looking like this for years: ``` delphi procedure TSingleImage.Assign(Source: TPersistent); begin if Source = nil then begin Clear;...
That's right, size in `TImageData` should be `Int64` or `NativeInt` rather. More troubles would be with some IO functions and some image format loaders/savers. What are you most interested in?...
Some minimal reader for EXIF orientation + GPS (these two are most interesting for me) wouldn't be too difficult - I've even found some old notes I made for this...
What Imaging could realistically do is load the whole EXIF structure on load and have it accessible as a binary blob (plus parse a minimal set of properties such as...
Yes there is indeed an "angle step" value now fixed at 0.1 degrees when doing Hough transformation. Deskew can detect skew angle at "higher resolution" that this - however, the...