All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bytedeco.opencv.opencv_dnn.IntFloatPair Maven / Gradle / Ivy

There is a newer version: 4.10.0-1.5.11
Show newest version
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.opencv.opencv_dnn;

import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

import static org.bytedeco.javacpp.presets.javacpp.*;
import static org.bytedeco.openblas.global.openblas_nolapack.*;
import static org.bytedeco.openblas.global.openblas.*;
import org.bytedeco.opencv.opencv_core.*;
import static org.bytedeco.opencv.global.opencv_core.*;
import org.bytedeco.opencv.opencv_imgproc.*;
import static org.bytedeco.opencv.global.opencv_imgproc.*;

import static org.bytedeco.opencv.global.opencv_dnn.*;

@NoOffset @Name("std::pair") @Properties(inherit = org.bytedeco.opencv.presets.opencv_dnn.class)
public class IntFloatPair extends Pointer {
    static { Loader.load(); }
    /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
    public IntFloatPair(Pointer p) { super(p); }
    public IntFloatPair(int firstValue, float secondValue) { this(); put(firstValue, secondValue); }
    public IntFloatPair()       { allocate();  }
    private native void allocate();
    public native @Name("operator =") @ByRef IntFloatPair put(@ByRef IntFloatPair x);


    @MemberGetter public native int first(); public native IntFloatPair first(int first);
    @MemberGetter public native float second();  public native IntFloatPair second(float second);

    public IntFloatPair put(int firstValue, float secondValue) {
        first(firstValue);
        second(secondValue);
        return this;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy