본문 바로가기
Somnology/Visbrain

[Sleep] Annotations

by goatlab 2022. 6. 30.
728x90
반응형
SMALL

Annotations

 

주석에 대한 테이블을 제공한다. 이 표에서 이벤트 시작, 종료 및 관련 텍스트를 지정한다. 이 테이블의 행을 선택하면 창 중앙에 선택한 타임코드가 표시된다. 이를 통해 대용량 파일에서도 빠르게 탐색할 수 있다.

 

수면의 주석.

 

Import Annotations

 

인터페이스가 열려 있으면 Files > Load > Annotations 메뉴에서 주석을 로드한다. 그렇지 않으면 입력 변수 주석을 사용 하여 로드해야 하는 기존 주석 파일의 경로를 설정할 수 있다. 주석을 정의하는 방법에는 여러 가지가 있다.

 

 

Annotations in a text file

 

주석은 csv 파일 또는 txt 파일에 정의할 수 있다.

 

from mne import io
# Import the Sleep module:
from visbrain.gui import Sleep

Sleep(annotations='pathto/myannotations.txt')

 

Using MNE-Python annotations

 

MNE-python의 주석을 사용하고 주석을 주석 변수에 전달할 수 있다.

 

import numpy as np
from mne import Annotations
from visbrain.gui import Sleep

# Define the onset, duration and description :
onset = np.array([117., 256., 312.])
durations = np.array([5, 10, 4])
description = np.array(['First event', 'Second event', 'Third event'])
annot = Annotations(onset, durations, description)

Sleep(annotations=annot)

 

Define only markers

 

주석은 시간 코드와 레이블의 조합으로 볼 수 있다. 이벤트에 레이블이 필요하지 않은 경우 시간 코드를 초 단위로만 지정할 수 있다.

 

import numpy as np
from visbrain.gui import Sleep

# Define the onset :
onset = np.array([117., 256., 312.])

Sleep(annotations=onset)

 

Add new annotations

 

새 주석을 추가하려면 다음 단계를 따른다.

 

  • 눈금자 또는 빠른 설정 패널의 주석 탭에서 주석 버튼을 사용하여 현재 표시된 창에 주석을 단다.
  • 캔버스를 두 번 클릭하면 주석을 빠르게 추가할 수 있다.

 

Save annotations

 

주석 목록을 내보내거나 (.txt 또는 .csv로) 파일 상황에 맞는 메뉴에서 로드할 수 있다.

 

http://visbrain.org/sleep.html

 

1. Sleep — visbrain 0.4.6 documentation

If the interface is opened, load annotations from the menu Files > Load > Annotations. Otherwise, you can use the input variable annotations to set the path to an existing annotation file that need to be loaded. There is several ways to define annotations

visbrain.org

 

728x90
반응형
LIST

'Somnology > Visbrain' 카테고리의 다른 글

[Sleep] 반자동 감지 적용  (0) 2022.06.30
[Sleep] Hypnogram scoring  (0) 2022.06.30
[Sleep] 지원되는 파일 및 형식  (0) 2022.06.30
[Sleep] Settings panel tabs  (0) 2022.06.30
[Sleep] Main features  (0) 2022.06.30