Uses of Class
org.opencv.core.Size

Packages that use Size
Package
Description
 
 
  • Uses of Size in org.opencv.core

    Fields in org.opencv.core declared as Size
    Modifier and Type
    Field
    Description
    RotatedRect.size
     
    Methods in org.opencv.core that return Size
    Modifier and Type
    Method
    Description
    Size.clone()
     
    Mat.size()
     
    Rect.size()
     
    Rect2d.size()
     
    Methods in org.opencv.core with parameters of type Size
    Modifier and Type
    Method
    Description
    void
    Mat.create(Size size, int type)
     
    static Mat
    Mat.eye(Size size, int type)
     
    void
    Mat.locateROI(Size wholeSize, Point ofs)
     
    static Mat
    Mat.ones(Size size, int type)
     
    static Mat
    Mat.zeros(Size size, int type)
     
    Constructors in org.opencv.core with parameters of type Size
    Modifier
    Constructor
    Description
     
    Mat(Size size, int type)
     
     
    Mat(Size size, int type, Scalar s)
     
     
    Rect(Point p, Size s)
     
     
    Rect2d(Point p, Size s)
     
     
    RotatedRect(Point c, Size s, double a)
     
  • Uses of Size in org.opencv.imgproc

    Methods in org.opencv.imgproc that return Size
    Modifier and Type
    Method
    Description
    static Size
    Imgproc.getTextSize(String text, int fontFace, double fontScale, int thickness, int[] baseLine)
     
     
    Methods in org.opencv.imgproc with parameters of type Size
    Modifier and Type
    Method
    Description
    static void
    Imgproc.blur(Mat src, Mat dst, Size ksize)
    Blurs an image using the normalized box filter.
    static void
    Imgproc.blur(Mat src, Mat dst, Size ksize, Point anchor)
    Blurs an image using the normalized box filter.
    static void
    Imgproc.blur(Mat src, Mat dst, Size ksize, Point anchor, int borderType)
    Blurs an image using the normalized box filter.
    static void
    Imgproc.boxFilter(Mat src, Mat dst, int ddepth, Size ksize)
    Blurs an image using the box filter.
    static void
    Imgproc.boxFilter(Mat src, Mat dst, int ddepth, Size ksize, Point anchor)
    Blurs an image using the box filter.
    static void
    Imgproc.boxFilter(Mat src, Mat dst, int ddepth, Size ksize, Point anchor, boolean normalize)
    Blurs an image using the box filter.
    static void
    Imgproc.boxFilter(Mat src, Mat dst, int ddepth, Size ksize, Point anchor, boolean normalize, int borderType)
    Blurs an image using the box filter.
    int
    LineSegmentDetector.compareSegments(Size size, Mat lines1, Mat lines2)
    Draws two groups of lines in blue and red, counting the non overlapping (mismatching) pixels.
    int
    LineSegmentDetector.compareSegments(Size size, Mat lines1, Mat lines2, Mat image)
    Draws two groups of lines in blue and red, counting the non overlapping (mismatching) pixels.
    static void
    Imgproc.cornerSubPix(Mat image, Mat corners, Size winSize, Size zeroZone, TermCriteria criteria)
    Refines the corner locations.
    static CLAHE
    Imgproc.createCLAHE(double clipLimit, Size tileGridSize)
    Creates a smart pointer to a cv::CLAHE class and initializes it.
    static void
    Imgproc.createHanningWindow(Mat dst, Size winSize, int type)
    This function computes a Hanning window coefficients in two dimensions.
    static void
    Imgproc.ellipse(Mat img, Point center, Size axes, double angle, double startAngle, double endAngle, Scalar color)
    Draws a simple or thick elliptic arc or fills an ellipse sector.
    static void
    Imgproc.ellipse(Mat img, Point center, Size axes, double angle, double startAngle, double endAngle, Scalar color, int thickness)
    Draws a simple or thick elliptic arc or fills an ellipse sector.
    static void
    Imgproc.ellipse(Mat img, Point center, Size axes, double angle, double startAngle, double endAngle, Scalar color, int thickness, int lineType)
    Draws a simple or thick elliptic arc or fills an ellipse sector.
    static void
    Imgproc.ellipse(Mat img, Point center, Size axes, double angle, double startAngle, double endAngle, Scalar color, int thickness, int lineType, int shift)
    Draws a simple or thick elliptic arc or fills an ellipse sector.
    static void
    Imgproc.ellipse2Poly(Point center, Size axes, int angle, int arcStart, int arcEnd, int delta, MatOfPoint pts)
    Approximates an elliptic arc with a polyline.
    static void
    Imgproc.GaussianBlur(Mat src, Mat dst, Size ksize, double sigmaX)
    Blurs an image using a Gaussian filter.
    static void
    Imgproc.GaussianBlur(Mat src, Mat dst, Size ksize, double sigmaX, double sigmaY)
    Blurs an image using a Gaussian filter.
    static void
    Imgproc.GaussianBlur(Mat src, Mat dst, Size ksize, double sigmaX, double sigmaY, int borderType)
    Blurs an image using a Gaussian filter.
    static Mat
    Imgproc.getGaborKernel(Size ksize, double sigma, double theta, double lambd, double gamma)
    Returns Gabor filter coefficients.
    static Mat
    Imgproc.getGaborKernel(Size ksize, double sigma, double theta, double lambd, double gamma, double psi)
    Returns Gabor filter coefficients.
    static Mat
    Imgproc.getGaborKernel(Size ksize, double sigma, double theta, double lambd, double gamma, double psi, int ktype)
    Returns Gabor filter coefficients.
    static void
    Imgproc.getRectSubPix(Mat image, Size patchSize, Point center, Mat patch)
    Retrieves a pixel rectangle from an image with sub-pixel accuracy.
    static void
    Imgproc.getRectSubPix(Mat image, Size patchSize, Point center, Mat patch, int patchType)
    Retrieves a pixel rectangle from an image with sub-pixel accuracy.
    static Mat
    Imgproc.getStructuringElement(int shape, Size ksize)
    Returns a structuring element of the specified size and shape for morphological operations.
    static Mat
    Imgproc.getStructuringElement(int shape, Size ksize, Point anchor)
    Returns a structuring element of the specified size and shape for morphological operations.
    static void
    Imgproc.pyrDown(Mat src, Mat dst, Size dstsize)
    Blurs an image and downsamples it.
    static void
    Imgproc.pyrDown(Mat src, Mat dst, Size dstsize, int borderType)
    Blurs an image and downsamples it.
    static void
    Imgproc.pyrUp(Mat src, Mat dst, Size dstsize)
    Upsamples an image and then blurs it.
    static void
    Imgproc.pyrUp(Mat src, Mat dst, Size dstsize, int borderType)
    Upsamples an image and then blurs it.
    static void
    Imgproc.resize(Mat src, Mat dst, Size dsize)
    Resizes an image.
    static void
    Imgproc.resize(Mat src, Mat dst, Size dsize, double fx)
    Resizes an image.
    static void
    Imgproc.resize(Mat src, Mat dst, Size dsize, double fx, double fy)
    Resizes an image.
    static void
    Imgproc.resize(Mat src, Mat dst, Size dsize, double fx, double fy, int interpolation)
    Resizes an image.
    void
    CLAHE.setTilesGridSize(Size tileGridSize)
    Sets size of grid for histogram equalization.
    static void
    Imgproc.sqrBoxFilter(Mat src, Mat dst, int ddepth, Size ksize)
    Calculates the normalized sum of squares of the pixel values overlapping the filter.
    static void
    Imgproc.sqrBoxFilter(Mat src, Mat dst, int ddepth, Size ksize, Point anchor)
    Calculates the normalized sum of squares of the pixel values overlapping the filter.
    static void
    Imgproc.sqrBoxFilter(Mat src, Mat dst, int ddepth, Size ksize, Point anchor, boolean normalize)
    Calculates the normalized sum of squares of the pixel values overlapping the filter.
    static void
    Imgproc.sqrBoxFilter(Mat src, Mat dst, int ddepth, Size ksize, Point anchor, boolean normalize, int borderType)
    Calculates the normalized sum of squares of the pixel values overlapping the filter.
    static void
    Imgproc.stackBlur(Mat src, Mat dst, Size ksize)
    Blurs an image using the stackBlur.
    static void
    Imgproc.warpAffine(Mat src, Mat dst, Mat M, Size dsize)
    Applies an affine transformation to an image.
    static void
    Imgproc.warpAffine(Mat src, Mat dst, Mat M, Size dsize, int flags)
    Applies an affine transformation to an image.
    static void
    Imgproc.warpAffine(Mat src, Mat dst, Mat M, Size dsize, int flags, int borderMode)
    Applies an affine transformation to an image.
    static void
    Imgproc.warpAffine(Mat src, Mat dst, Mat M, Size dsize, int flags, int borderMode, Scalar borderValue)
    Applies an affine transformation to an image.
    static void
    Imgproc.warpPerspective(Mat src, Mat dst, Mat M, Size dsize)
    Applies a perspective transformation to an image.
    static void
    Imgproc.warpPerspective(Mat src, Mat dst, Mat M, Size dsize, int flags)
    Applies a perspective transformation to an image.
    static void
    Imgproc.warpPerspective(Mat src, Mat dst, Mat M, Size dsize, int flags, int borderMode)
    Applies a perspective transformation to an image.
    static void
    Imgproc.warpPerspective(Mat src, Mat dst, Mat M, Size dsize, int flags, int borderMode, Scalar borderValue)
    Applies a perspective transformation to an image.
    static void
    Imgproc.warpPolar(Mat src, Mat dst, Size dsize, Point center, double maxRadius, int flags)
    Remaps an image to polar or semilog-polar coordinates space polar_remaps_reference_image !