Closed KianYang-Lee closed 3 years ago
It seems to be the problem with the dimension / number of channels.
Not sure if it'd work on your machine but I managed to eliminate the error by changing this line
private IntPointer channels = new IntPointer(3);
to
int[] channels_arr = new int[]{0, 1, 2};
private IntPointer channels = new IntPointer(channels_arr);
in the Histogram1DJava.java file
I am not sure what is the reason behind it but you can look into the source code and maybe there's a better workaround:
Thanks! It works wonderfully! will update it in the patch
Describe the bug When run, this error occurred.
Screenshots
Additional context Also noticed the outdated import line. Will open a branch to fix this when schedule is less packed.