英文:
Analyzing and Importing EEG Signals in Java
问题
我是Java的初学者用户。我目前正在一个项目上工作,想要在Java中读取一个信号。
该信号类型是从离线数据集中获取的脑电图(EEG)信号。
我的问题:
> A) 如何在Java中导入(输入)EEG信号?
> B) Java中是否有用于分析EEG信号的库?
提前感谢。
英文:
I am a beginner user of Java. I am currently working on a project and want to read a signal in java.
The signal type is the Electroencephalogram (EEG) signal obtained from an offline data set.
My questions:
> A)How to import (input) EEG signal in Java?
> B) Is there a library in Java for analyzing EEG signals?
Thanks in advance
答案1
得分: 1
你需要读取和解析该文件,因此它取决于文件的格式。
我不清楚是否有用于读取脑电图文件的 Java 库,但如果数据采用 EDF 或 EDF+ 格式,也许这个项目可以帮助你:https://github.com/matthias-wright/edfconvis
英文:
You will have to read and parse the file, so it depends on the format of the file.
I don't know about a java library for reading eeg files, but if the data is in EDF or EDF+ format maybe this project can be a help: https://github.com/matthias-wright/edfconvis
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论