1 | static double averageSaturation(BufferedImage img) { |
2 | if (img == null) ret 0; |
3 | int w = img.getWidth(), h = img.getHeight(); |
4 | double sum = 0; |
5 | for y to h: for x to w: |
6 | sum += saturationFromRGB(img.getRGB(x, y)); |
7 | ret doubleRatio(sum, w*h); |
8 | } |
Began life as a copy of #1020181
download show line numbers debug dex old transpilations
Travelled to 8 computer(s): bhatertpkbcr, cfunsshuasjs, gwrvuhgaqvyk, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1020182 |
Snippet name: | averageSaturation |
Eternal ID of this version: | #1020182/1 |
Text MD5: | 595c3100d904cd37bceafe09549aafe8 |
Author: | stefan |
Category: | javax / imaging |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2018-12-09 21:06:26 |
Source code size: | 255 bytes / 8 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 282 / 330 |
Referenced in: | [show references] |