OpenCV453
xphoto/inpainting.hpp
[詳解]
1/*M///////////////////////////////////////////////////////////////////////////////////////
2//
3// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4//
5// By downloading, copying, installing or using the software you agree to this license.
6// If you do not agree to this license, do not download, install,
7// copy or use the software.
8//
9//
10// License Agreement
11// For Open Source Computer Vision Library
12// (3-clause BSD License)
13//
14// Copyright (C) 2000-2019, Intel Corporation, all rights reserved.
15// Copyright (C) 2009-2011, Willow Garage Inc., all rights reserved.
16// Copyright (C) 2009-2016, NVIDIA Corporation, all rights reserved.
17// Copyright (C) 2010-2013, Advanced Micro Devices, Inc., all rights reserved.
18// Copyright (C) 2015-2016, OpenCV Foundation, all rights reserved.
19// Copyright (C) 2015-2016, Itseez Inc., all rights reserved.
20// Third party copyrights are property of their respective owners.
21//
22// Redistribution and use in source and binary forms, with or without modification,
23// are permitted provided that the following conditions are met:
24//
25// * Redistribution's of source code must retain the above copyright notice,
26// this list of conditions and the following disclaimer.
27//
28// * Redistribution's in binary form must reproduce the above copyright notice,
29// this list of conditions and the following disclaimer in the documentation
30// and/or other materials provided with the distribution.
31//
32// * Neither the names of the copyright holders nor the names of the contributors
33// may be used to endorse or promote products derived from this software
34// without specific prior written permission.
35//
36// This software is provided by the copyright holders and contributors "as is" and
37// any express or implied warranties, including, but not limited to, the implied
38// warranties of merchantability and fitness for a particular purpose are disclaimed.
39// In no event shall the Intel Corporation or contributors be liable for any direct,
40// indirect, incidental, special, exemplary, or consequential damages
41// (including, but not limited to, procurement of substitute goods or services;
42// loss of use, data, or profits; or business interruption) however caused
43// and on any theory of liability, whether in contract, strict liability,
44// or tort (including negligence or otherwise) arising in any way out of
45// the use of this software, even if advised of the possibility of such damage.
46//
47//M*/
48
49#ifndef __OPENCV_INPAINTING_HPP__
50#define __OPENCV_INPAINTING_HPP__
51
57#include <opencv2/core.hpp>
58
59namespace cv
60{
61namespace xphoto
62{
63
66
70 {
96 };
97
113 CV_EXPORTS_W void inpaint(const Mat &src, const Mat &mask, Mat &dst, const int algorithmType);
114
116
117}
118}
119
120#endif // __OPENCV_INPAINTING_HPP__
n-dimensional dense array class
Definition: mat.hpp:802
CV_EXPORTS_W void inpaint(InputArray src, InputArray inpaintMask, OutputArray dst, double inpaintRadius, int flags)
Restores the selected region in an image using the region neighborhood.
InpaintTypes
Various inpainting algorithms
Definition: xphoto/inpainting.hpp:70
@ INPAINT_SHIFTMAP
Definition: xphoto/inpainting.hpp:74
@ INPAINT_FSR_BEST
Definition: xphoto/inpainting.hpp:94
@ INPAINT_FSR_FAST
See #INPAINT_FSR_BEST
Definition: xphoto/inpainting.hpp:95
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75