HomeSort by relevance Sort by last modified time
    Searched refs:CV_WRAP (Results 1 - 21 of 21) sorted by null

  /external/opencv3/modules/video/include/opencv2/video/
background_segm.hpp 72 CV_WRAP virtual void apply(InputArray image, OutputArray fgmask, double learningRate=-1) = 0;
81 CV_WRAP virtual void getBackgroundImage(OutputArray backgroundImage) const = 0;
95 CV_WRAP virtual int getHistory() const = 0;
98 CV_WRAP virtual void setHistory(int history) = 0;
102 CV_WRAP virtual int getNMixtures() const = 0;
107 CV_WRAP virtual void setNMixtures(int nmixtures) = 0;//needs reinitialization!
115 CV_WRAP virtual double getBackgroundRatio() const = 0;
118 CV_WRAP virtual void setBackgroundRatio(double ratio) = 0;
125 CV_WRAP virtual double getVarThreshold() const = 0;
128 CV_WRAP virtual void setVarThreshold(double varThreshold) = 0
    [all...]
tracking.hpp 335 CV_WRAP KalmanFilter();
342 CV_WRAP KalmanFilter( int dynamParams, int measureParams, int controlParams = 0, int type = CV_32F );
357 CV_WRAP const Mat& predict( const Mat& control = Mat() );
363 CV_WRAP const Mat& correct( const Mat& measurement );
394 CV_WRAP virtual void calc( InputArray I0, InputArray I1, InputOutputArray flow ) = 0;
397 CV_WRAP virtual void collectGarbage() = 0;
  /external/opencv3/modules/shape/include/opencv2/shape/
shape_distance.hpp 66 CV_WRAP virtual float computeDistance(InputArray contour1, InputArray contour2) = 0;
86 CV_WRAP virtual void setAngularBins(int nAngularBins) = 0;
87 CV_WRAP virtual int getAngularBins() const = 0;
94 CV_WRAP virtual void setRadialBins(int nRadialBins) = 0;
95 CV_WRAP virtual int getRadialBins() const = 0;
101 CV_WRAP virtual void setInnerRadius(float innerRadius) = 0;
102 CV_WRAP virtual float getInnerRadius() const = 0;
108 CV_WRAP virtual void setOuterRadius(float outerRadius) = 0;
109 CV_WRAP virtual float getOuterRadius() const = 0;
111 CV_WRAP virtual void setRotationInvariant(bool rotationInvariant) = 0
    [all...]
hist_cost.hpp 60 CV_WRAP virtual void buildCostMatrix(InputArray descriptors1, InputArray descriptors2, OutputArray costMatrix) = 0;
62 CV_WRAP virtual void setNDummies(int nDummies) = 0;
63 CV_WRAP virtual int getNDummies() const = 0;
65 CV_WRAP virtual void setDefaultCost(float defaultCost) = 0;
66 CV_WRAP virtual float getDefaultCost() const = 0;
74 CV_WRAP virtual void setNormFlag(int flag) = 0;
75 CV_WRAP virtual int getNormFlag() const = 0;
86 CV_WRAP virtual void setNormFlag(int flag) = 0;
87 CV_WRAP virtual int getNormFlag() const = 0;
shape_transformer.hpp 67 CV_WRAP virtual void estimateTransformation(InputArray transformingShape, InputArray targetShape,
75 CV_WRAP virtual float applyTransformation(InputArray input, OutputArray output=noArray()) = 0;
85 CV_WRAP virtual void warpImage(InputArray transformingImage, OutputArray output,
106 CV_WRAP virtual void setRegularizationParameter(double beta) = 0;
107 CV_WRAP virtual double getRegularizationParameter() const = 0;
122 CV_WRAP virtual void setFullAffine(bool fullAffine) = 0;
123 CV_WRAP virtual bool getFullAffine() const = 0;
  /external/opencv3/modules/ml/include/opencv2/
ml.hpp 143 CV_WRAP virtual int getLayout() const = 0;
144 CV_WRAP virtual int getNTrainSamples() const = 0;
145 CV_WRAP virtual int getNTestSamples() const = 0;
146 CV_WRAP virtual int getNSamples() const = 0;
147 CV_WRAP virtual int getNVars() const = 0;
148 CV_WRAP virtual int getNAllVars() const = 0;
150 CV_WRAP virtual void getSample(InputArray varIdx, int sidx, float* buf) const = 0;
151 CV_WRAP virtual Mat getSamples() const = 0;
152 CV_WRAP virtual Mat getMissing() const = 0;
166 CV_WRAP virtual Mat getTrainSamples(int layout=ROW_SAMPLE
    [all...]
  /external/opencv3/modules/features2d/include/opencv2/
features2d.hpp 145 CV_WRAP virtual void detect( InputArray image,
171 CV_WRAP virtual void compute( InputArray image,
190 CV_WRAP virtual void detectAndCompute( InputArray image, InputArray mask,
195 CV_WRAP virtual int descriptorSize() const;
196 CV_WRAP virtual int descriptorType() const;
197 CV_WRAP virtual int defaultNorm() const;
200 CV_WRAP virtual bool empty() const;
230 CV_WRAP static Ptr<BRISK> create(int thresh=30, int octaves=3, float patternScale=1.0f);
243 CV_WRAP static Ptr<BRISK> create(const std::vector<float> &radiusList, const std::vector<int> &numberList,
289 CV_WRAP static Ptr<ORB> create(int nfeatures=500, float scaleFactor=1.2f, int nlevels=8, int edgeThreshold (…)
    [all...]
  /external/opencv3/modules/photo/include/opencv2/
photo.hpp 334 CV_WRAP virtual void process(InputArray src, OutputArray dst) = 0;
336 CV_WRAP virtual float getGamma() const = 0;
337 CV_WRAP virtual void setGamma(float gamma) = 0;
362 CV_WRAP virtual float getSaturation() const = 0;
363 CV_WRAP virtual void setSaturation(float saturation) = 0;
365 CV_WRAP virtual float getBias() const = 0;
366 CV_WRAP virtual void setBias(float bias) = 0;
392 CV_WRAP virtual float getSaturation() const = 0;
393 CV_WRAP virtual void setSaturation(float saturation) = 0;
395 CV_WRAP virtual float getContrast() const = 0
    [all...]
  /external/opencv3/modules/ml/src/
kdtree.hpp 56 CV_WRAP KDTree();
58 CV_WRAP KDTree(InputArray points, bool copyAndReorderPoints = false);
60 CV_WRAP KDTree(InputArray points, InputArray _labels,
63 CV_WRAP void build(InputArray points, bool copyAndReorderPoints = false);
65 CV_WRAP void build(InputArray points, InputArray labels,
68 CV_WRAP int findNearest(InputArray vec, int K, int Emax,
74 CV_WRAP void findOrthoRange(InputArray minBounds,
80 CV_WRAP void getPoints(InputArray idx, OutputArray pts,
85 CV_WRAP int dims() const;
  /external/opencv3/modules/flann/include/opencv2/flann/
miniflann.hpp 131 CV_WRAP Index();
132 CV_WRAP Index(InputArray features, const IndexParams& params, cvflann::flann_distance_t distType=cvflann::FLANN_DIST_L2);
135 CV_WRAP virtual void build(InputArray features, const IndexParams& params, cvflann::flann_distance_t distType=cvflann::FLANN_DIST_L2);
136 CV_WRAP virtual void knnSearch(InputArray query, OutputArray indices,
139 CV_WRAP virtual int radiusSearch(InputArray query, OutputArray indices,
143 CV_WRAP virtual void save(const String& filename) const;
144 CV_WRAP virtual bool load(InputArray features, const String& filename);
145 CV_WRAP virtual void release();
146 CV_WRAP cvflann::flann_distance_t getDistance() const;
147 CV_WRAP cvflann::flann_algorithm_t getAlgorithm() const
    [all...]
  /external/opencv3/modules/videoio/include/opencv2/
videoio.hpp 391 CV_WRAP VideoCapture();
397 CV_WRAP VideoCapture(const String& filename);
403 CV_WRAP VideoCapture(int device);
414 CV_WRAP virtual bool open(const String& filename);
419 CV_WRAP virtual bool open(int device);
426 CV_WRAP virtual bool isOpened() const;
435 CV_WRAP virtual void release();
453 CV_WRAP virtual bool grab();
465 CV_WRAP virtual bool retrieve(OutputArray image, int flag = 0);
480 CV_WRAP virtual bool read(OutputArray image)
    [all...]
  /external/opencv3/modules/features2d/misc/java/src/cpp/
features2d_manual.hpp 18 CV_WRAP void detect( const Mat& image, CV_OUT std::vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const
21 CV_WRAP void detect( const std::vector<Mat>& images, CV_OUT std::vector<std::vector<KeyPoint> >& keypoints, const std::vector<Mat>& masks=std::vector<Mat>() ) const
24 CV_WRAP bool empty() const
92 CV_WRAP static javaFeatureDetector* create( int detectorType )
162 CV_WRAP void write( const String& fileName ) const
168 CV_WRAP void read( const String& fileName )
184 CV_WRAP bool isMaskSupported() const
187 CV_WRAP void add( const std::vector<Mat>& descriptors )
190 CV_WRAP const std::vector<Mat>& getTrainDescriptors() const
193 CV_WRAP void clear(
    [all...]
  /external/opencv3/modules/calib3d/include/opencv2/
calib3d.hpp     [all...]
  /external/opencv3/modules/objdetect/include/opencv2/
objdetect.hpp 223 CV_WRAP CascadeClassifier();
228 CV_WRAP CascadeClassifier(const String& filename);
232 CV_WRAP bool empty() const;
239 CV_WRAP bool load( const String& filename );
244 CV_WRAP bool read( const FileNode& node );
266 CV_WRAP void detectMultiScale( InputArray image,
309 CV_WRAP bool isOldFormatCascade() const;
310 CV_WRAP Size getOriginalWindowSize() const;
311 CV_WRAP int getFeatureType() const;
314 CV_WRAP static bool convert(const String& oldcascade, const String& newcascade)
    [all...]
  /external/opencv3/modules/stitching/include/opencv2/
stitching.hpp 116 CV_WRAP double registrationResol() const { return registr_resol_; }
117 CV_WRAP void setRegistrationResol(double resol_mpx) { registr_resol_ = resol_mpx; }
119 CV_WRAP double seamEstimationResol() const { return seam_est_resol_; }
120 CV_WRAP void setSeamEstimationResol(double resol_mpx) { seam_est_resol_ = resol_mpx; }
122 CV_WRAP double compositingResol() const { return compose_resol_; }
123 CV_WRAP void setCompositingResol(double resol_mpx) { compose_resol_ = resol_mpx; }
125 CV_WRAP double panoConfidenceThresh() const { return conf_thresh_; }
126 CV_WRAP void setPanoConfidenceThresh(double conf_thresh) { conf_thresh_ = conf_thresh; }
128 CV_WRAP bool waveCorrection() const { return do_wave_correct_; }
129 CV_WRAP void setWaveCorrection(bool flag) { do_wave_correct_ = flag;
    [all...]
  /external/opencv3/apps/traincascade/
old_ml.hpp 144 CV_WRAP virtual void save( const char* filename, const char* name=0 ) const;
145 CV_WRAP virtual void load( const char* filename, const char* name=0 );
194 CV_WRAP CvNormalBayesClassifier();
204 CV_WRAP virtual void clear();
206 CV_WRAP CvNormalBayesClassifier( const cv::Mat& trainData, const cv::Mat& responses,
208 CV_WRAP virtual bool train( const cv::Mat& trainData, const cv::Mat& responses,
211 CV_WRAP virtual float predict( const cv::Mat& samples, CV_OUT cv::Mat* results=0, CV_OUT cv::Mat* results_prob=0 ) const;
239 CV_WRAP CvKNearest();
252 CV_WRAP CvKNearest( const cv::Mat& trainData, const cv::Mat& responses,
255 CV_WRAP virtual bool train( const cv::Mat& trainData, const cv::Mat& responses
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
persistence.hpp 327 CV_WRAP FileStorage();
339 CV_WRAP FileStorage(const String& source, int flags, const String& encoding=String());
360 CV_WRAP virtual bool open(const String& filename, int flags, const String& encoding=String());
367 CV_WRAP virtual bool isOpened() const;
373 CV_WRAP virtual void release();
380 CV_WRAP virtual String releaseAndGetString();
385 CV_WRAP FileNode getFirstTopLevelNode() const;
392 CV_WRAP FileNode root(int streamidx=0) const;
401 CV_WRAP FileNode operator[](const char* nodename) const;
480 CV_WRAP FileNode()
    [all...]
cvdef.h 90 #define CV_WRAP
types.hpp 636 CV_WRAP KeyPoint();
655 CV_WRAP KeyPoint(float x, float y, float _size, float _angle=-1, float _response=0, int _octave=0, int _class_id=-1);
668 CV_WRAP static void convert(const std::vector<KeyPoint>& keypoints,
679 CV_WRAP static void convert(const std::vector<Point2f>& points2f,
690 CV_WRAP static float overlap(const KeyPoint& kp1, const KeyPoint& kp2);
731 CV_WRAP DMatch();
732 CV_WRAP DMatch(int _queryIdx, int _trainIdx, float _distance);
733 CV_WRAP DMatch(int _queryIdx, int _trainIdx, int _imgIdx, float _distance);
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /external/opencv3/modules/core/include/opencv2/
core.hpp     [all...]

Completed in 258 milliseconds