moving the rest of inpaint() to the 'photo' module, temporary disabling Java test for it, adding 'photo' to Java API

This commit is contained in:
Andrey Pavlenko
2012-03-16 15:11:56 +00:00
parent 0bc5140b17
commit 20cceb8fdf
6 changed files with 74 additions and 12 deletions

View File

@@ -138,10 +138,6 @@ CVAPI(void) cvPyrMeanShiftFiltering( const CvArr* src, CvArr* dst,
/* Segments image using seed "markers" */
CVAPI(void) cvWatershed( const CvArr* image, CvArr* markers );
/* Inpaints the selected region in the image */
CVAPI(void) cvInpaint( const CvArr* src, const CvArr* inpaint_mask,
CvArr* dst, double inpaintRange, int flags );
/* Calculates an image derivative using generalized Sobel
(aperture_size = 1,3,5,7) or Scharr (aperture_size = -1) operator.
Scharr can be used only for the first dx or dy derivative */

View File

@@ -76,13 +76,6 @@ enum
CV_GAUSSIAN_5x5 = 7
};
/* Inpainting algorithms */
enum
{
CV_INPAINT_NS =0,
CV_INPAINT_TELEA =1
};
/* Special filters */
enum
{