Papers › CoordFill: Efficient High-Resolution Image Inpainting via Parameterized Coordinate Querying

CoordFill: Efficient High-Resolution Image Inpainting via Parameterized Coordinate Querying

15 Mar 2023arXiv:2303.08524archive 2025-07-28

Weihuang Liu, Xiaodong Cun, Chi-Man Pun, Menghan Xia, Yong Zhang, Jue Wang

Image inpainting aims to fill the missing hole of the input. It is hard to solve this task efficiently when facing high-resolution images due to two reasons: (1) Large reception field needs to be handled for high-resolution image inpainting. (2) The general encoder and decoder network synthesizes many background pixels synchronously due to the form of the image matrix. In this paper, we try to break the above limitations for the first time thanks to the recent development of continuous implicit representation. In detail, we down-sample and encode the degraded image to produce the spatial-adaptive parameters for each spatial patch via an attentional Fast Fourier Convolution(FFC)-based parameter generation network. Then, we take these parameters as the weights and biases of a series of multi-layer perceptron(MLP), where the input is the encoded continuous coordinates and the output is the synthesized color value. Thanks to the proposed structure, we only encode the high-resolution image in a relatively low resolution for larger reception field capturing. Then, the continuous position encoding will be helpful to synthesize the photo-realistic high-frequency textures by re-sampling the coordinate in a higher resolution. Also, our framework enables us to query the coordinates of missing pixels only in parallel, yielding a more efficient solution than the previous methods. Experiments show that the proposed method achieves real-time performance on the 2048×2048 images using a single GTX 2080 Ti GPU and can handle 4096×4096 images, with much better performance than existing state-of-the-art methods visually and numerically. The code is available at: https://github.com/NiFangBaAGe/CoordFill.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2303.08524")

Code

Syntology Ran 7 of 18 code samples harvested from 1 repository linked to this paper; 11 have no recorded run. Of those that ran: 7 ran with no contract checked.

By repository: official repository: 18 samples from 1 repository, 7 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

nifangbaage/coordfill officialmentioned in papermentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

18 samples harvested; 7 ran; 0 honoured the contract we drafted; 11 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

7ran
11unverified

Licence: 0 of the 18 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from NiFangBaAGe/CoordFill. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

BaseNetwork NiFangBaAGe/CoordFill/models/coordfill.py official repository ran · metamorphic tier: deterministic BSD-3-Clause (permissive) · 443a27e88886f962 · report
ConcatTupleLayer NiFangBaAGe/CoordFill/models/coordfill.py official repository ran BSD-3-Clause (permissive) · 62bac9f9e210efc9 · report
FFC_BN_ACT NiFangBaAGe/CoordFill/models/coordfill.py official repository ran · metamorphic tier: deterministic BSD-3-Clause (permissive) · 1fbf7982390f137b · report
FourierUnit NiFangBaAGe/CoordFill/models/coordfill.py official repository ran · metamorphic tier: deterministic fingerprinted BSD-3-Clause (permissive) · 50b8f556e23dc337 · report
ParaGenNet NiFangBaAGe/CoordFill/models/coordfill.py official repository ran · metamorphic tier: deterministic BSD-3-Clause (permissive) · 6fee4cc5e77c63d6 · report
PixelQueryNet NiFangBaAGe/CoordFill/models/coordfill.py official repository ran · metamorphic tier: deterministic BSD-3-Clause (permissive) · ec5b3c5fc06f3065 · report
SELayer NiFangBaAGe/CoordFill/models/coordfill.py official repository ran · metamorphic tier: deterministic BSD-3-Clause (permissive) · a59dece88a263461 · report
AttFFC NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · 9cf9b865af2e1c2d · report
AttFFCResNetGenerator NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · 42961bc165cc995c · report
CoordFill NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · 771402ef412f4280 · report
CoordFillGenerator NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · 5ce9dfb242e8a34b · report
FFC NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · 0a70b66723b3cedd · report
FFCResNetGenerator NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · fe401746b27bf76b · report
FFCResnetBlock NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · 7eba59f96acf99cd · report
LearnableSpatialTransformWrapper NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · ab3392be53d55e96 · report
MLPModel NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · a31edbc4f9e59c23 · report
SpectralTransform NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · 1a5021c2953d66fe · report
_get_coords NiFangBaAGe/CoordFill/models/coordfill.py official repository unverified BSD-3-Clause (permissive) · 03bfb68584c430f0 · report

Tasks

Image InpaintingVocal Bursts Intensity Prediction

1 archive task tag without a task page not shown.

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

Inpainting

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections