Alexander Karpinsky
Alexander Karpinsky
There are two parameters for `heif_item_get_property_transform_crop_borders` function which purposes are not clear to me: image_width and image_height. The queued itemId already should have whole information about size. So two questions:...
Thanks for your library! I'd like to have any way to find out changes between versions. Currently there is no changelog (which could be ok for not so big libs),...
У меня F7-F8-F8 работают как предыдущий трек — пауза — следующий. Понятно, что в нейромузыке нет следующего и предыдущего трека. Но пауза тоже не работает.
Problems and solutions of merging SIMD code to the main codebase.
There is a comment in `pillow.py`: > starting with 2.7, Pillow uses a high-quality convolution-based resize for BILINEAR ... the other systems in this benchmark are using affine + bilinear,...
On the [benchmark results test page](https://github.com/jcupitt/libvips/wiki/Speed-and-memory-use) there is a "Run time (secs real)" column. The `time` utility shows not only the real time but also user and sys time. Sum...
First of all, sorry if this is a duplicate. I spent a minute searching related issues and didn't found. So [you know](https://github.com/pymatting/pymatting/commit/a073421a31afd0d53b7ff387ad2b361645b446be), that the first import is slow. The thing...
Code for ipython: ```python from PIL import Image im = Image.new('L', (2048, 2048), 0) print('Worst case:', im.getbbox()) %timeit im.getbbox() im = Image.open('tests/images/face1.png').resize((2048, 2048)) print('Normal case:', im.getbbox()) %timeit im.getbbox() im =...