Sunday, October 29, 2017

Mental Work using a Motorized Wheel

The École polytechnique fédérale de Lausanne (EPFL) in Switzerland, as a new demonstration of brainwave reading technology. It will involve EEG being connected to a motorized wheel. People will be controlling the movement of the device while the data their brainwaves generate will be anonymized, collected, and provided to researchers for study.


“The industrial revolution was a dangerous period in history, literally dangerous for the laborer who might lose a hand while not paying attention. Now we are in the cognitive revolution and the stakes are potentially higher. Today, that won’t happen because you are not in touch with the machine in any physical way. Instead, you may lose your mind.”

For more information about BCI/EGG press here.


Tuesday, October 24, 2017

Monday, October 23, 2017

Typing 100 Words in a Smartphone using just Your Mind

As I published during June 2017, Facebook aims to allow people to type 100 words per minute with just your mind, 5X faster than typing on a smartphone. Knowing the technological evolution that we are living, in your opinion, how many years Facebook will need to create this BCI solution? The possible answers are: 2 years, 5 years, 10 years, 20 years or never. Share your opinion pressing here.


For more information about BCI/EEG press here.


Tuesday, October 17, 2017

Brain Sciences Journal

Brain Sciences is a peer-reviewed scientific journal that publishes original articles, critical reviews, research notes and short communications in the areas of cognitive neuroscience, developmental neuroscience, molecular and cellular neuroscience, neural engineering, neuroimaging, neurolinguistics, clinical neuroscience, systems neuroscience, and theoretical and computational neuroscience. 


Our aim is to encourage scientists to publish their experimental and theoretical results in as much detail as possible. There is no restriction on the length of the papers. The full experimental details must be provided so that the results can be reproduced. Electronic files or software regarding the full details of the calculation and experimental procedure, if unable to be published in a normal way, can be deposited as supplementary material.

For more information about BCI/EEG press here.


Monday, October 16, 2017

EEGrunt: A Collection Python EEG

EEGrunt consists of a collection of functions for reading EEG data from CSV files, converting and filtering it in various ways, and finally generating pretty and informative visualizations.

Features

  • EEGrunt is compatible with data from OpenBCI and Muse.
  • EEGrunt has bandpass, notch, and highpass filters for cleaning up powerline interference, OpenBCI's DC offset, and zeroing in on the frequency band you want to analyze.
  • EEGrunt makes it easy to generate signal plots, amplitude trend graphs, spectrograms, and FFT (fast-fouier transform) graphs, etc.

Here is my small code adaptation from the original analyze_data.py file:

# Download the required files from https://github.com/curiositry/EEGrunt
import EEGrunt
source = 'openbci'
path = 'data/'
filename = 'eegrunt-obci-ovibe-test-data.csv'
session_title = "OpenBCI EEGrunt Test Data"

EEG = EEGrunt.EEGrunt(path, filename, source, session_title)
EEG.plot = 'show'

EEG.load_data()
print "\n\n\nChannels:" + str(EEG.channels)

for channel in EEG.channels:
    EEG.load_channel(channel)
    print("Processing channel "+ str(EEG.channel))
    EEG.remove_dc_offset()
    EEG.notch_mains_interference()
    EEG.signalplot()
    EEG.get_spectrum_data()

    EEG.data = EEG.bandpass(0,1)
    EEG.spectrogram()
    EEG.plot_band_power(8,12,"Alpha")
    EEG.plot_spectrum_avg_fft( )

EEG.showplots()


For more information about BCI/EGG press here.


Sunday, October 15, 2017

40th International Engineering in Medicine and Biology Conference, Hawaii

The theme of the meeting, from July 17-21, 2018, is “Learning from the Past, Looking to the Future”, inspired by the 40th anniversary of the world’s largest international biomedical engineering meeting.


Proposals for Workshops, Tutorials, Invited Sessions, Mini-Symposia and Special Sessions are invited. Submission opens on September 1, 2017 and closes November 1, 2017. 

Formore information about BCI/EEG press here.


Friday, October 13, 2017

Translational and Regenerative Medicine Conference, Italy

The International Translational and Regenerative Medicine Conference, from April 25-27, 2018 aims to the “Need for translational medicine, Challenges in translational medicine, and Opportunities in translational medicine”. Discover the advances in health practice, management and education in relation to health disparities as well as a breadth of other topics.


Conference Themes

  • Translational therapeutics/ Novel therapeutic technologies
  • Translational Neuroscience
  • Biomedical sciences / Bioengineering
  • Bio Molecular/ Nuclear imaging
  • Stem cells/ Regenerative Medicine
  • Translational Stem Cell Research
  • Scaffold in regenerative medicine
  • (...)

For more information about BCI/EEG press here.