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:
@@ -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 */
|
||||
|
@@ -76,13 +76,6 @@ enum
|
||||
CV_GAUSSIAN_5x5 = 7
|
||||
};
|
||||
|
||||
/* Inpainting algorithms */
|
||||
enum
|
||||
{
|
||||
CV_INPAINT_NS =0,
|
||||
CV_INPAINT_TELEA =1
|
||||
};
|
||||
|
||||
/* Special filters */
|
||||
enum
|
||||
{
|
||||
|
Reference in New Issue
Block a user