@Namespace(value="cv::ximgproc") public static class opencv_ximgproc.AdaptiveManifoldFilter extends opencv_core.Algorithm
For more details about this filter see \cite Gastal12 and References_.
Below listed optional parameters which may be set up with Algorithm::set function. - member double sigma_s = 16.0 Spatial standard deviation. - member double sigma_r = 0.2 Color space standard deviation. - member int tree_height = -1 Height of the manifold tree (default = -1 : automatically computed). - member int num_pca_iterations = 1 Number of iterations to computed the eigenvector. - member bool adjust_outliers = false Specify adjust outliers using Eq. 9 or not. - member bool use_RNG = true Specify use random number generator to compute eigenvector or not.
| Constructor and Description |
|---|
AdaptiveManifoldFilter(org.bytedeco.javacpp.Pointer p)
Pointer cast constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
collectGarbage() |
static opencv_ximgproc.AdaptiveManifoldFilter |
create() |
void |
filter(opencv_core.GpuMat src,
opencv_core.GpuMat dst) |
void |
filter(opencv_core.GpuMat src,
opencv_core.GpuMat dst,
opencv_core.GpuMat joint) |
void |
filter(opencv_core.Mat src,
opencv_core.Mat dst) |
void |
filter(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat joint)
\brief Apply high-dimensional filtering using adaptive manifolds.
|
void |
filter(opencv_core.UMat src,
opencv_core.UMat dst) |
void |
filter(opencv_core.UMat src,
opencv_core.UMat dst,
opencv_core.UMat joint) |
boolean |
getAdjustOutliers() |
int |
getPCAIterations() |
double |
getSigmaR() |
double |
getSigmaS() |
int |
getTreeHeight() |
boolean |
getUseRNG() |
void |
setAdjustOutliers(boolean val)
\copybrief getAdjustOutliers @see getAdjustOutliers
|
void |
setPCAIterations(int val)
\copybrief getPCAIterations @see getPCAIterations
|
void |
setSigmaR(double val)
\copybrief getSigmaR @see getSigmaR
|
void |
setSigmaS(double val)
\copybrief getSigmaS @see getSigmaS
|
void |
setTreeHeight(int val)
\copybrief getTreeHeight @see getTreeHeight
|
void |
setUseRNG(boolean val)
\copybrief getUseRNG @see getUseRNG
|
clear, empty, getDefaultName, position, read, save, save, write, write, writeaddress, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic AdaptiveManifoldFilter(org.bytedeco.javacpp.Pointer p)
Pointer.Pointer(Pointer).public void filter(@ByVal
opencv_core.Mat src,
@ByVal
opencv_core.Mat dst,
@ByVal(nullValue="cv::InputArray(cv::noArray())")
opencv_core.Mat joint)
src - filtering image with any numbers of channels.
dst - output image.
joint - optional joint (also called as guided) image with any numbers of channels.public void filter(@ByVal
opencv_core.Mat src,
@ByVal
opencv_core.Mat dst)
public void filter(@ByVal
opencv_core.UMat src,
@ByVal
opencv_core.UMat dst,
@ByVal(nullValue="cv::InputArray(cv::noArray())")
opencv_core.UMat joint)
public void filter(@ByVal
opencv_core.UMat src,
@ByVal
opencv_core.UMat dst)
public void filter(@ByVal
opencv_core.GpuMat src,
@ByVal
opencv_core.GpuMat dst,
@ByVal(nullValue="cv::InputArray(cv::noArray())")
opencv_core.GpuMat joint)
public void filter(@ByVal
opencv_core.GpuMat src,
@ByVal
opencv_core.GpuMat dst)
public void collectGarbage()
@opencv_core.Ptr public static opencv_ximgproc.AdaptiveManifoldFilter create()
public double getSigmaS()
setSigmaSpublic void setSigmaS(double val)
public double getSigmaR()
setSigmaRpublic void setSigmaR(double val)
public int getTreeHeight()
setTreeHeightpublic void setTreeHeight(int val)
public int getPCAIterations()
setPCAIterationspublic void setPCAIterations(int val)
@Cast(value="bool") public boolean getAdjustOutliers()
setAdjustOutlierspublic void setAdjustOutliers(@Cast(value="bool")
boolean val)
@Cast(value="bool") public boolean getUseRNG()
setUseRNGpublic void setUseRNG(@Cast(value="bool")
boolean val)
Copyright © 2018. All rights reserved.