1 | static BWImage saturationChannel(BufferedImage img) { |
2 | if (img == null) null; |
3 | int w = img.getWidth(), h = img.getHeight(); |
4 | BWImage img2 = new(w, h); |
5 | for y to h: for x to w: |
6 | img2.setPixel(x, y, (float) saturationFromRGB(img.getRGB(x, y))); |
7 | ret img2; |
8 | } |
Began life as a copy of #1020182
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: | #1020184 |
Snippet name: | saturationChannel |
Eternal ID of this version: | #1020184/3 |
Text MD5: | 819dbcc3b649069fc10d66177e19cf21 |
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:13:37 |
Source code size: | 270 bytes / 8 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 273 / 313 |
Version history: | 2 change(s) |
Referenced in: | [show references] |