Skip to content

Instantly share code, notes, and snippets.

@kjunichi
Created December 21, 2024 08:45
Show Gist options
  • Save kjunichi/abda8505874f7af8feb22ec3190b0fef to your computer and use it in GitHub Desktop.
Save kjunichi/abda8505874f7af8feb22ec3190b0fef to your computer and use it in GitHub Desktop.

Rustはオーバーロードがない

extern "C" {
    pub fn cv_video_capture(camnum: c_int) -> *mut CvVideoCapture;
    pub fn cv_video_capture_with_apiPreference(camnum: c_int, apiPreference: c_int) -> *mut CvVideoCapture;
}

C++側はcv_video_captureでcamnum1つと、camnumとapiPreferenceの2つを引数にとるメソッドを呼び出せるのに。。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment