Abe Pazos
Abe Pazos
I tried on my system by cloning the orml repo and running `orml-image-classifier/src/demo/kotlin/DemoClassifier.kt` and `orml-image-classifier/src/demo/kotlin/DemoEmbedding.kt` inside IntelliJ Idea and they did run. I have an issue with ffmpeg versions so...
Hi. I think Edwin was working in recent days to release orml in maven central. It will be there when he has a minute. There's this: https://github.com/openrndr/openrndr/wiki/Version-matrix (don't know if...
Nice! Happy that you made it work :) I would wait for Edwin to close it, maybe there's something that can be done to make this easier (either documentation or...
I'm getting the same problem. I worked around it creating a second Processing sketch (non P2D/P3D) that sends the pressure to the P2D program via UDP. Very much a hack,...
Thanks @codeanticode ! I tried your program and no pressure data is received when using P2D. The right counter is stuck at 0. I use ArchLinux with i3 tiling window...
I installed libc++ and added set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=c++11 -stdlib=libc++") and it fails on a different place (not sure if this is progress or not): ``` /tmp/link/include/ableton/discovery/NetworkByteStreamSerializable.hpp:248:10: error: call to...
BTW, I made this simple compile.sh script to speed up experimentation: ``` mkdir -p build rm -rf build/* cd build export SC3_SRC="/tmp/supercollider" export LINK_SRC="/tmp/link" export CXX="clang++" cmake ../. make ```
This is the code I came up with for testing (it's the whole program): ``` import org.lecturestudio.stylus.* import org.openrndr.application import org.openrndr.color.rgb import org.openrndr.math.Vector2 fun main() = application { program {...
I tried setting `JAVA_HOME` correctly, then running `mvn install`, then copying the produced `stylus-jni/target/lib/libstylus.so` file to `/usr/lib` and various other folders but that did not help.
My colleague showed me how to use the right dependencies: ``` dependencies { implementation("org.lecturestudio.stylus:stylus:0.2.0") runtimeOnly("org.lecturestudio.stylus:stylus:0.2.0:linux-x86_64") } ``` With that I didn't need to build it myself and the library is...