DualTVL1OpticalFlow.java 10.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462

//
// This file is auto-generated. Please don't modify it!
//
package org.opencv.video;



// C++: class DualTVL1OpticalFlow
//javadoc: DualTVL1OpticalFlow

public class DualTVL1OpticalFlow extends DenseOpticalFlow {

    protected DualTVL1OpticalFlow(long addr) { super(addr); }


    //
    // C++: static Ptr_DualTVL1OpticalFlow create(double tau = 0.25, double lambda = 0.15, double theta = 0.3, int nscales = 5, int warps = 5, double epsilon = 0.01, int innnerIterations = 30, int outerIterations = 10, double scaleStep = 0.8, double gamma = 0.0, int medianFiltering = 5, bool useInitialFlow = false)
    //

    //javadoc: DualTVL1OpticalFlow::create(tau, lambda, theta, nscales, warps, epsilon, innnerIterations, outerIterations, scaleStep, gamma, medianFiltering, useInitialFlow)
    public static DualTVL1OpticalFlow create(double tau, double lambda, double theta, int nscales, int warps, double epsilon, int innnerIterations, int outerIterations, double scaleStep, double gamma, int medianFiltering, boolean useInitialFlow)
    {
        
        DualTVL1OpticalFlow retVal = new DualTVL1OpticalFlow(create_0(tau, lambda, theta, nscales, warps, epsilon, innnerIterations, outerIterations, scaleStep, gamma, medianFiltering, useInitialFlow));
        
        return retVal;
    }

    //javadoc: DualTVL1OpticalFlow::create()
    public static DualTVL1OpticalFlow create()
    {
        
        DualTVL1OpticalFlow retVal = new DualTVL1OpticalFlow(create_1());
        
        return retVal;
    }


    //
    // C++:  bool getUseInitialFlow()
    //

    //javadoc: DualTVL1OpticalFlow::getUseInitialFlow()
    public  boolean getUseInitialFlow()
    {
        
        boolean retVal = getUseInitialFlow_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  double getEpsilon()
    //

    //javadoc: DualTVL1OpticalFlow::getEpsilon()
    public  double getEpsilon()
    {
        
        double retVal = getEpsilon_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  double getGamma()
    //

    //javadoc: DualTVL1OpticalFlow::getGamma()
    public  double getGamma()
    {
        
        double retVal = getGamma_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  double getLambda()
    //

    //javadoc: DualTVL1OpticalFlow::getLambda()
    public  double getLambda()
    {
        
        double retVal = getLambda_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  double getScaleStep()
    //

    //javadoc: DualTVL1OpticalFlow::getScaleStep()
    public  double getScaleStep()
    {
        
        double retVal = getScaleStep_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  double getTau()
    //

    //javadoc: DualTVL1OpticalFlow::getTau()
    public  double getTau()
    {
        
        double retVal = getTau_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  double getTheta()
    //

    //javadoc: DualTVL1OpticalFlow::getTheta()
    public  double getTheta()
    {
        
        double retVal = getTheta_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  int getInnerIterations()
    //

    //javadoc: DualTVL1OpticalFlow::getInnerIterations()
    public  int getInnerIterations()
    {
        
        int retVal = getInnerIterations_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  int getMedianFiltering()
    //

    //javadoc: DualTVL1OpticalFlow::getMedianFiltering()
    public  int getMedianFiltering()
    {
        
        int retVal = getMedianFiltering_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  int getOuterIterations()
    //

    //javadoc: DualTVL1OpticalFlow::getOuterIterations()
    public  int getOuterIterations()
    {
        
        int retVal = getOuterIterations_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  int getScalesNumber()
    //

    //javadoc: DualTVL1OpticalFlow::getScalesNumber()
    public  int getScalesNumber()
    {
        
        int retVal = getScalesNumber_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  int getWarpingsNumber()
    //

    //javadoc: DualTVL1OpticalFlow::getWarpingsNumber()
    public  int getWarpingsNumber()
    {
        
        int retVal = getWarpingsNumber_0(nativeObj);
        
        return retVal;
    }


    //
    // C++:  void setEpsilon(double val)
    //

    //javadoc: DualTVL1OpticalFlow::setEpsilon(val)
    public  void setEpsilon(double val)
    {
        
        setEpsilon_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setGamma(double val)
    //

    //javadoc: DualTVL1OpticalFlow::setGamma(val)
    public  void setGamma(double val)
    {
        
        setGamma_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setInnerIterations(int val)
    //

    //javadoc: DualTVL1OpticalFlow::setInnerIterations(val)
    public  void setInnerIterations(int val)
    {
        
        setInnerIterations_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setLambda(double val)
    //

    //javadoc: DualTVL1OpticalFlow::setLambda(val)
    public  void setLambda(double val)
    {
        
        setLambda_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setMedianFiltering(int val)
    //

    //javadoc: DualTVL1OpticalFlow::setMedianFiltering(val)
    public  void setMedianFiltering(int val)
    {
        
        setMedianFiltering_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setOuterIterations(int val)
    //

    //javadoc: DualTVL1OpticalFlow::setOuterIterations(val)
    public  void setOuterIterations(int val)
    {
        
        setOuterIterations_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setScaleStep(double val)
    //

    //javadoc: DualTVL1OpticalFlow::setScaleStep(val)
    public  void setScaleStep(double val)
    {
        
        setScaleStep_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setScalesNumber(int val)
    //

    //javadoc: DualTVL1OpticalFlow::setScalesNumber(val)
    public  void setScalesNumber(int val)
    {
        
        setScalesNumber_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setTau(double val)
    //

    //javadoc: DualTVL1OpticalFlow::setTau(val)
    public  void setTau(double val)
    {
        
        setTau_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setTheta(double val)
    //

    //javadoc: DualTVL1OpticalFlow::setTheta(val)
    public  void setTheta(double val)
    {
        
        setTheta_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setUseInitialFlow(bool val)
    //

    //javadoc: DualTVL1OpticalFlow::setUseInitialFlow(val)
    public  void setUseInitialFlow(boolean val)
    {
        
        setUseInitialFlow_0(nativeObj, val);
        
        return;
    }


    //
    // C++:  void setWarpingsNumber(int val)
    //

    //javadoc: DualTVL1OpticalFlow::setWarpingsNumber(val)
    public  void setWarpingsNumber(int val)
    {
        
        setWarpingsNumber_0(nativeObj, val);
        
        return;
    }


    @Override
    protected void finalize() throws Throwable {
        delete(nativeObj);
    }



    // C++: static Ptr_DualTVL1OpticalFlow create(double tau = 0.25, double lambda = 0.15, double theta = 0.3, int nscales = 5, int warps = 5, double epsilon = 0.01, int innnerIterations = 30, int outerIterations = 10, double scaleStep = 0.8, double gamma = 0.0, int medianFiltering = 5, bool useInitialFlow = false)
    private static native long create_0(double tau, double lambda, double theta, int nscales, int warps, double epsilon, int innnerIterations, int outerIterations, double scaleStep, double gamma, int medianFiltering, boolean useInitialFlow);
    private static native long create_1();

    // C++:  bool getUseInitialFlow()
    private static native boolean getUseInitialFlow_0(long nativeObj);

    // C++:  double getEpsilon()
    private static native double getEpsilon_0(long nativeObj);

    // C++:  double getGamma()
    private static native double getGamma_0(long nativeObj);

    // C++:  double getLambda()
    private static native double getLambda_0(long nativeObj);

    // C++:  double getScaleStep()
    private static native double getScaleStep_0(long nativeObj);

    // C++:  double getTau()
    private static native double getTau_0(long nativeObj);

    // C++:  double getTheta()
    private static native double getTheta_0(long nativeObj);

    // C++:  int getInnerIterations()
    private static native int getInnerIterations_0(long nativeObj);

    // C++:  int getMedianFiltering()
    private static native int getMedianFiltering_0(long nativeObj);

    // C++:  int getOuterIterations()
    private static native int getOuterIterations_0(long nativeObj);

    // C++:  int getScalesNumber()
    private static native int getScalesNumber_0(long nativeObj);

    // C++:  int getWarpingsNumber()
    private static native int getWarpingsNumber_0(long nativeObj);

    // C++:  void setEpsilon(double val)
    private static native void setEpsilon_0(long nativeObj, double val);

    // C++:  void setGamma(double val)
    private static native void setGamma_0(long nativeObj, double val);

    // C++:  void setInnerIterations(int val)
    private static native void setInnerIterations_0(long nativeObj, int val);

    // C++:  void setLambda(double val)
    private static native void setLambda_0(long nativeObj, double val);

    // C++:  void setMedianFiltering(int val)
    private static native void setMedianFiltering_0(long nativeObj, int val);

    // C++:  void setOuterIterations(int val)
    private static native void setOuterIterations_0(long nativeObj, int val);

    // C++:  void setScaleStep(double val)
    private static native void setScaleStep_0(long nativeObj, double val);

    // C++:  void setScalesNumber(int val)
    private static native void setScalesNumber_0(long nativeObj, int val);

    // C++:  void setTau(double val)
    private static native void setTau_0(long nativeObj, double val);

    // C++:  void setTheta(double val)
    private static native void setTheta_0(long nativeObj, double val);

    // C++:  void setUseInitialFlow(bool val)
    private static native void setUseInitialFlow_0(long nativeObj, boolean val);

    // C++:  void setWarpingsNumber(int val)
    private static native void setWarpingsNumber_0(long nativeObj, int val);

    // native support for java finalize()
    private static native void delete(long nativeObj);

}