javacpp icon indicating copy to clipboard operation
javacpp copied to clipboard

The missing bridge between Java and native C++

Results 105 javacpp issues
Sort by recently updated
recently updated
newest added

I have a rather complicated class template (using C++20 features like concepts, etc) that I have been largely successful in mapping with a few different explicit types. The issue I'm...

enhancement
help wanted
question

**PR Overview:** _________________________________________________________________________________________________________ This PR fixes the flaky/non-deterministic behavior of the following test because it assumes the ordering of methods returned by `getDeclaredMethods()` [org.bytedeco.javacpp.BufferTest](https://github.com/bytedeco/javacpp/blob/master/src/test/java/org/bytedeco/javacpp/BufferTest.java) [org.bytedeco.javacpp.EnumTest](https://github.com/bytedeco/javacpp/blob/master/src/test/java/org/bytedeco/javacpp/EnumTest.java) [org.bytedeco.javacpp.PointerTest](https://github.com/bytedeco/javacpp/blob/master/src/test/java/org/bytedeco/javacpp/PointerTest.java) **Test Overview:** _________________________________________________________________________________________________________ In...

enhancement
help wanted

```C++ struct B { int x; virtual void f() { } virtual ~B() { }; }; struct D: public B { int y; }; ``` ```Java infoMap .put(new Info("B").virtualize()) .put(new...

enhancement
help wanted

env: windows10 22H2 mingw64 visual stdio 2022 cl path: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.16.27023\bin\HostX64\x64 1. if not add cl path to system path error: Cannot run program "cl" 2. if add...

help wanted
question

I have a question about the javacpp parser or rather how to map this properly. I read up on the mapping recipes but I either missed it, it went over...

help wanted
question

I create a 4dim matrix and then print the elements using createIndexer.toString() code: ``` public void testToString4D() { Mat mat = mat4d(5, 4, 2, 3); System.out.println(mat.createIndexer().toString()); } private Mat mat4d(int...

enhancement
help wanted

I'm running clang / g++ v.15 on a MacBook. When I compile my code with Java 11 and JavaCPP 1.5.9, I get this warning: ``` .../build/javacpp/jniNativeLexiconProviderLib.cpp:314:57: error: 'char_traits' is deprecated:...

enhancement
help wanted

I am trying to create a wrapper around https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c/ The client code uses callbacks heavily How do i use more than 10 at the same time? eg C: ``` /**...

enhancement
help wanted
question

I noticed a few of the wiki tutorial/documentation pages haven't been updated in years. Does the info on these pages still represent the best way to do things and generally...

enhancement
help wanted