-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
implement warp_affine
/ warp_perspective
#47
Comments
I recently had to implement warp_affine from scratch in Dart to do image transformation in Flutter without OpenCV. I could contribute warp_affine here if you are okay with that. It's probably not gonna be super fast. grid_sample is not needed. The current |
feel free to go for it -- about grid_sample, it will basically a way to reuse code. If you see in the resize_native function the |
Interesting. Do you have benchmarks between naive for-loop version and the current version? Some observations
In any case, let's get a working implementation first before looking more into the speed. |
done |
reference:
needs (to abstract / reuse code)
The text was updated successfully, but these errors were encountered: