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
There are probably multiple places where we can improve it.
Biggest bottleneck is the border handling (70% of the time is spent there):
image-js-typescript/src/filters/convolution.ts
Lines 192 to 268 in d3f0d99
Tested with:
import { Image } from 'image-js'; const img = new Image(2000, 1000); img.gaussianBlur({ sigma: 10 }); console.time('blur') img.gaussianBlur({ sigma: 10 }); console.timeEnd('blur') console.log(img);
The text was updated successfully, but these errors were encountered:
First improvement: #336
Sorry, something went wrong.
Still seem slow. At some point, could we consider using WebGPU when supported in environment to handle heavy operations?
No branches or pull requests
There are probably multiple places where we can improve it.
Biggest bottleneck is the border handling (70% of the time is spent there):
image-js-typescript/src/filters/convolution.ts
Lines 192 to 268 in d3f0d99
Tested with:
The text was updated successfully, but these errors were encountered: