Demo image processing software
We provide a demo program that implements the following image processing algorithms:
Download link — Windows console application.
Instructions
The program implements warping algorithm from the paper Deblurred images post-processing by Poisson warping .
Program usage:
(programname) <operation> [options] <input_image> <output_image>
List of operations:
warp - perform image sharpening by grid warping. Available options:
-sigma - (mandatory) set blur parameter for the input image, range: 1.0 to 20.0
-power - set warping power, range: 0.0 to 5.0, default value is 1.0
-1d - apply one-dimensional algorithm (faster but lower quality)
basicedges - detect basic edges - edges good for artifact analysis
-scale - set scale parameter, range: 1.0 to 20.0, default value is 4.0
gaussblur - blur input image using Gauss filter
-sigma - (mandatory) Gauss filter radius
-noise - Add Gaussian noise with provided stddev
resample - edge directional resampling
-selfsim - Use the input image to compute the interpolation kernels instead of predefined values
help - display this screen
other operations coming soon...
Supported image formats: BMP, PNG, JPEG, GIF, TIFF
Examples
demo warp -sigma 4 -power 1.5 input.png warp.png
demo basicedges -scale 4 input.png be.png
Notes
Optimal power for grid warping is 1.0. Using greater power value may result in artifacts due to discontinuous warping.
Parameter sigma corresponds the to radius of Gaussian blur that approximates actual blur for the given image. Typical value for real blurry images is 2.0.
Parameter scale in the basic edges detection algorithm controls the edge width