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

There is new library called constexpr-java. As i see , currently javacpp doesnt support constexpr. But you can add support with this library : https://github.com/junkdog/constexpr-java

enhancement
help wanted

Hi , facebook released TransCoder library. https://github.com/facebookresearch/TransCoder You can listen details https://www.youtube.com/watch?v=xTzFJIknh7E Also documents: https://ai.facebook.com/blog/deep-learning-to-translate-between-programming-languages/ Also you can check this video https://www.youtube.com/watch?v=1VHtP5FV0kM&feature=youtu.be For optimization between Java , C++ , this...

enhancement
help wanted

I'm attempting to parse https://github.com/abseil/abseil-cpp/blob/master/absl/types/span.h via the maven plugin, but it's failing with a NPE. Exception: ``` [INFO] --- javacpp:1.5.4:parse (javacpp-parser) @ tensorflow-core-api --- [INFO] Detected platform "linux-x86_64" [INFO] Building...

bug
help wanted

Trying to use this, I hit a problem where if your jar is located in a path with a space in the name (on Windows at least), it would throw...

bug
help wanted
question

This is an out of curiosity questions. (and I know java can use opengl) I wonder whether it is possible to port D3D12 APIs to java interface with javacpp or...

enhancement
help wanted

Hi, I'm trying to implement a custom event function in a class extending `QApplication`. ``` public native @Cast("bool") boolean eventFilter(QObject watched, QEvent event); ``` When overriding this function in java,...

bug
enhancement
help wanted

Here is the code There are these two constructors in class PointerPointer: ``` public PointerPointer(P ... array) { this(array.length); put(array); } public PointerPointer(Pointer p) { super(p); } ``` When you...

enhancement
help wanted

If we have a source file with something like: ``` namespace bar { const auto FOO = 42u; } ``` We get: Caused by: org.bytedeco.javacpp.tools.ParserException: /path/to/header.hpp:2:Could not parse declaration at...

bug
enhancement
help wanted

Hello again. Now i am doing C++ and Java Application. I want C++ with Java Interop. To do i use JavaCPP. But the problem is , can javacpp export library...

enhancement
help wanted

On some machines we are getting Error on Tesseract, This occures when creating new instance of TessBaseAPI() `java.util.concurrent.ExecutionException: java.lang.InternalError: Should not get here at java.util.concurrent.FutureTask.report(Unknown Source) at java.util.concurrent.FutureTask.get(Unknown Source) at...

bug
help wanted