<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| public void handleBitmap(Bitmap image) { | |
| int w = image.getWidth(), h = image.getHeight(); | |
| int[] rgb = new int[w * h]; | |
| byte[] yuv = new byte[w * h]; | |
| image.getPixels(rgb, 0, w, 0, 0, w, h); | |
| populateYUVLuminanceFromRGB(rgb, yuv, w, h); | |
| } | |
| // Inspired in large part by: |