mne-qt-browser icon indicating copy to clipboard operation
mne-qt-browser copied to clipboard

A new backend for the 2D data browser in MNE-Python

Results 47 mne-qt-browser issues
Sort by recently updated
recently updated
newest added

This is WIP to add a menu for better discoverability of functionality and to make things more accessible and feel more like a real application. Qt does some magic to...

MWE: ```python # %% from pathlib import Path import mne sample_dir = Path(mne.datasets.sample.data_path()) sample_fname = sample_dir / 'MEG' / 'sample' / 'sample_audvis_raw.fif' raw = mne.io.read_raw_fif(sample_fname) raw.crop(tmax=60) events = mne.find_events(raw, stim_channel='STI...

bug

The "Zoom in / out" buttons are kind of arbitrarily labeled, considering that just left of them in the toolbar there are buttons for "zooming in and out" of time...

enhancement

MWE: ```python # %% import mne sample_dir = mne.datasets.sample.data_path() sample_fname = sample_dir / 'MEG' / 'sample' / 'sample_audvis_raw.fif' raw = mne.io.read_raw_fif(sample_fname, preload=True) raw.pick_types(meg='mag', ecg=True) epochs = mne.preprocessing.create_ecg_epochs( raw=raw.filter(l_freq=0.1, h_freq=30) )...

bug

MWE: ```python # %% from pathlib import Path import mne sample_dir = Path(mne.datasets.sample.data_path()) sample_fname = sample_dir / 'MEG' / 'sample' / 'sample_audvis_raw.fif' raw = mne.io.read_raw_fif(sample_fname) raw.crop(tmax=60) raw.pick_types(eeg=True, eog=True, stim=True) events...

bug

Hi, is there any way that I could take a screenshot of the signals, also could set DPI for it?

enhancement

A GFP waveform of all data plotted (EEG or MEG) would surely be of great value !

enhancement

Hi, It would be nice if we could add/remove the list of channels that apply to each annotation. I've started playing around with it and it seems a `QPushButton` would...

Now I know that this package doesn't use Matplotlib, but based on years of "common user experience", what I'd expect is that after I've run the magic `%matplotlib inline`, the...

Hello, I finally found a bit of time to play with the `qt-browser` and I ran into a number of things that didn't work as expected, or were too hard...