Image Reconstruction

Inpainiting

Inpainting is the process of reconstructing lost or covered parts of images and videos. In the context of motion tracking, it is employed to remove tracking markers that were used during post prodction to remove tracking markers.

<filter
    type="inpaint"
    src="local motion data source"
    url="remote motion data source"
    scale="point"
    offset="number"
    erase="number"
    search="number"
    />

ATTRIBUTES

src
A local JSON encoded motion data source
url
A remote JSON encoded motion data source loaded via HTTP(s)
offset
Skip offset frames in the data source
scale
Scale motion data by this factor
erase
Size of area to inpaint (Default: 15)
search
Size of area to use as clone for inpainting (Default: 4)

Example

<movie width="1280" height="720">
    <scene>
        <video src="https://cdn.impossible.io/xml/tshirt.mp4">
            <filter type="inpaint" 
                    erase="17"
                    url="https://cdn.impossible.io/xml/grid.json" />
        </video>
    </scene>
</movie>
Original Image
Filtered Image

Terms of Use | © 2017, Impossible Software, or its affiliates. All rights reserved.