Hi, I am learning rust in place of python for data processing.
I've managed to get bindgen working quite well for controlling cameras, however now i need to process the generated matrices.
For this i use ndarray which has a lot of the tools i need, however, i'd like to use some of scipy functions. I've already rewrote "uniform_filter1d", but i don't want to have to remake the entire library
TL;DR : Is there a way of accessing scipy's C code using bindgen?
thanks