We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
let's says i want to doing this:
when it runs, the actual code is something like this
for (x, y) in dimensions { // saturate } for (x, y) in dimensions { // darken } for (x, y) in dimensions { // watermark }
with batch optimization, it can be
for (x, y) in dimensions { // saturate + darken + watermark }
it will save tons of loops, is there any feature plans doing this?
i am not english native speaker neither nor a professor on image processing, hope the description clear enough.
The text was updated successfully, but these errors were encountered:
making
for (x, y) in dimensions { pixels[x][y] = pixels[x][y] + 1; } for (x, y) in dimensions { pixels[x][y] = pixels[x][y] * 2; }
into
for (x, y) in dimensions { pixels[x][y] = (pixels[x][y] + 1) * 2; }
same result but fewer loops
Sorry, something went wrong.
No branches or pull requests
let's says i want to doing this:
when it runs, the actual code is something like this
with batch optimization, it can be
it will save tons of loops, is there any feature plans doing this?
i am not english native speaker neither nor a professor on image processing, hope the description clear enough.
The text was updated successfully, but these errors were encountered: