Fast-Poisson-Image-Editing icon indicating copy to clipboard operation
Fast-Poisson-Image-Editing copied to clipboard

A fast poisson image editing implementation that can utilize multi-core CPU or GPU to handle a high-resolution image input.

Results 8 Fast-Poisson-Image-Editing issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi @Trinkle23897. Awesome work. I came across the following environment issue. On an older platform the installation proceeds to install gcc backend ``` $ fpie --check-backend [Taichi] version 1.6.0, llvm...

question

I have tested with different backends provided by the repo. Most results are fine but only the cuda backend can not work as intended. When I run the cli command,...

I want to use it within my python project ? I don't know how to do. Thanks !!!

question

Hello Here are my logs from anaconda virutal env terminal : pip install vie Here is the log (sd-inf) C:\Users\B\Desktop\stablediffusion\stablediffusion-infinity>pip install fpie Collecting fpie Using cached fpie-0.2.4.tar.gz (29 kB) Preparing...

Hello, Is there any way to process images in batch? So let's say I have three folders, in which dst/src/masks are already rescaled and aligned and I just want to...

question

Putting multiple array pointers in a single delete[] line is incorrect. E.g., in base_solver.h: https://github.com/Trinkle23897/Fast-Poisson-Image-Editing/blob/6a607f17e335a8be97cbfe39dd9b2de6de2a7cb6/fpie/core/base_solver.h#L28 and https://github.com/Trinkle23897/Fast-Poisson-Image-Editing/blob/6a607f17e335a8be97cbfe39dd9b2de6de2a7cb6/fpie/core/base_solver.h#L98 They lead to memory leaks. Instead, they should be ```cpp delete[] A; delete[]...

I found openmp is slow than gcc. When I read the code, I saw that there was a data access conflict. I wonder if you have compared the speed, hope...