Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
dtschump committed Feb 7, 2024
2 parents b35defb + 00eb075 commit 1c295d9
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 22 deletions.
2 changes: 1 addition & 1 deletion html/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="header">
<a href="index.html"><img alt="Logo" src="img/logo_header.jpg" class="center_image" style="margin-top:1em;"/></a>
<h2 style="padding-bottom: 1em">
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.3.3</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.3.4</a></b> (2024/02/05)
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.3.3</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.3.4</a></b> (2024/02/06)
</h2>

<hr/>
Expand Down
2 changes: 1 addition & 1 deletion html/header_doxygen.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<div class="header">
<a href="../index.html"><img alt="Logo" src="../img/logo_header.jpg" class="center_image" style="margin-top:1em;"/></a>
<h2 style="padding-bottom: 1em">
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.3.3</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.3.4</a></b> (2024/02/05)
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.3.3</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.3.4</a></b> (2024/02/06)
</h2>

<hr/>
Expand Down
48 changes: 28 additions & 20 deletions plugins/inpaint.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,39 @@
#
# Copyright : David Tschumperlé
#
# License : CeCILL v2.0
# ( http://www.cecill.info/licences/Licence_CeCILL_V2-en.html )
# Description :
#
# Description :
# This plug-in implements the patch-based inpainting algorithm for 2d images, as
# described in the two following publications :
#
# This plug-in implements the patch-based inpainting algorithm for 2d images, as
# described in the two following publications :
# "A Smarter Examplar-based Inpainting Algorithm using Local and Global Heuristics
# for more Geometric Coherence."
# (M. Daisy, P. Buyssens, D. Tschumperlé, O. Lezoray).
# IEEE International Conference on Image Processing (ICIP'14), Paris/France, Oct. 2014
#
# "A Smarter Examplar-based Inpainting Algorithm using Local and Global Heuristics
# for more Geometric Coherence."
# (M. Daisy, P. Buyssens, D. Tschumperlé, O. Lezoray).
# IEEE International Conference on Image Processing (ICIP'14), Paris/France, Oct. 2014
# and
#
# and
# "A Fast Spatial Patch Blending Algorithm for Artefact Reduction in Pattern-based
# Image Inpainting."
# (M. Daisy, D. Tschumperlé, O. Lezoray).
# SIGGRAPH Asia 2013 Technical Briefs, Hong-Kong, November 2013.
#
# "A Fast Spatial Patch Blending Algorithm for Artefact Reduction in Pattern-based
# Image Inpainting."
# (M. Daisy, D. Tschumperlé, O. Lezoray).
# SIGGRAPH Asia 2013 Technical Briefs, Hong-Kong, November 2013.
# Licenses : This file is 'dual-licensed', you have to choose one
# of the two licenses below to apply.
#
# This software is governed by the CeCILL license under French law and
# abiding by the rules of distribution of free software. You can use,
# modify and/ or redistribute the software under the terms of the CeCILL
# license as circulated by CEA, CNRS and INRIA at the following URL
# "http://www.cecill.info".
# CeCILL-C
# The CeCILL-C license is close to the GNU LGPL.
# ( http://cecill.info/licences/Licence_CeCILL-C_V1-en.html )
#
# or CeCILL v2.1
# The CeCILL license is compatible with the GNU GPL.
# ( http://cecill.info/licences/Licence_CeCILL_V2.1-en.html )
#
# This software is governed either by the CeCILL or the CeCILL-C license
# under French law and abiding by the rules of distribution of free software.
# You can use, modify and or redistribute the software under the terms of
# the CeCILL or CeCILL-C licenses as circulated by CEA, CNRS and INRIA
# at the following URL: "http://cecill.info".
#
# As a counterpart to the access to the source code and rights to copy,
# modify and redistribute granted by the license, users are provided only
Expand All @@ -49,7 +57,7 @@
# same conditions as regards security.
#
# The fact that you are presently reading this means that you have had
# knowledge of the CeCILL license and that you accept its terms.
# knowledge of the CeCILL and CeCILL-C licenses and that you accept its terms.
#
*/
#ifndef cimg_plugin_inpaint
Expand Down

0 comments on commit 1c295d9

Please sign in to comment.