Results 129 comments of Andrey Parfenov

How does the process of installing new packages(dependencies) look like in Swift? If it's smth like in python or in java(declare them in files like setup.py or pom.xml and they...

I think we need to add smth like this https://developer.apple.com/documentation/xcode/creating_a_standalone_swift_package_with_xcode and declare it as a dependency in project file

Its fine. We need to create brainflow package like its described at the link I've shared and add it as a dependency

About copying libs, there are multiple files like build.cmake in different folders and there are lines like this one https://github.com/brainflow-dev/brainflow/blob/master/src/board_controller/build.cmake#L168 it should be added for swift. Easiest option to find...

If you use all eeg channels from synthetic board these values should be low

Good, thanks! Let's also add 3rd main component(MLModel) and I will help to update the packaging

No, for python it gets them from the shape of ndarray. It's done because of some language-specific implementations of arrays in java and numpy

https://github.com/brainflow-dev/brainflow/blob/master/java-package/brainflow/src/main/java/brainflow/DataFilter.java#L440 here is a comment about it. In c\c++ or in python you can use pointer offsets or slices, in java I didn't find anything like that and decided to...