Admin 21.49 Add Comment Edit Android image processing - Gaussian Blur Read it first: Image processing on Android, the basic logic of Convolution Matrix. In this example, the Sample Gaussian matrix from the ar... Read More
Admin 21.48 Add Comment Edit Display image in full size In the former articles in Image processing on Android series , the image is displayed in shrinked version to suit the device's screen. I... Read More
Admin 07.40 Add Comment Edit Unsharp Mask (USM) on Android Image Processing Read it first: Image processing on Android, the basic logic of Convolution Matrix. The Unsharp Mask filter sharpens edges of the elements ... Read More
Admin 07.40 Add Comment Edit Auto resize bitmap to fit View Last article demonstrate Reduce bitmap by setting inSampleSize of BitmapFactory.Options manually . In this article we are going to calculate... Read More
Admin 07.40 Add Comment Edit Reduce bitmap by setting inSampleSize of BitmapFactory.Options if inSampleSize of BitmapFactory.Options set to a value > 1, requests the decoder to subsample the original image, returning a smaller i... Read More
Admin 07.40 Add Comment Edit Custom dialog, with data passed in Bundle In this example, a custom dialog is create in onCreateDialog() . The text in the EditText will be passed to the custom dialog via a bundle i... Read More
Admin 07.40 Add Comment Edit Cancel and Dismiss Custom dialog Last article demonstrate a basic custom dialog , it can be dismissed by buttons. How about cancelled by system BACK key and touching outside... Read More