Skip to content

Commit 69e0099

Browse files
committed
Prepare release of v1.0.0
Added Author information
1 parent cad1954 commit 69e0099

16 files changed

+128
-4
lines changed

DeepLabStream.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/usr/bin/env python
22
"""
3-
Adapted from DeepLabCut Toolbox
4-
by
5-
Jens Schweihoff, [email protected]
6-
Matvey Loshakov, [email protected]
3+
DeepLabStream
4+
© J.Schweihoff, M. Loshakov
5+
University Bonn Medical Faculty, Germany
6+
https://github.com/SchwarzNeuroconLab/DeepLabStream
7+
Licensed under GNU General Public License v3.0
78
"""
89
import time
910
import os

app.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
"""
2+
DeepLabStream
3+
© J.Schweihoff, M. Loshakov
4+
University Bonn Medical Faculty, Germany
5+
https://github.com/SchwarzNeuroconLab/DeepLabStream
6+
Licensed under GNU General Public License v3.0
7+
"""
8+
19
import sys
210
import os
311
import cv2

experiments/DAQ_output.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
"""
2+
DeepLabStream
3+
© J.Schweihoff, M. Loshakov
4+
University Bonn Medical Faculty, Germany
5+
https://github.com/SchwarzNeuroconLab/DeepLabStream
6+
Licensed under GNU General Public License v3.0
7+
"""
8+
19
import nidaqmx
210
import time
311

experiments/experiments.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
"""
2+
DeepLabStream
3+
© J.Schweihoff, M. Loshakov
4+
University Bonn Medical Faculty, Germany
5+
https://github.com/SchwarzNeuroconLab/DeepLabStream
6+
Licensed under GNU General Public License v3.0
7+
"""
8+
9+
110
from experiments.stimulus_process import ExampleProtocolProcess, Timer
211
from experiments.triggers import RegionTrigger
312
from utils.plotter import plot_triggers_response

experiments/stimulation.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
"""
2+
DeepLabStream
3+
© J.Schweihoff, M. Loshakov
4+
University Bonn Medical Faculty, Germany
5+
https://github.com/SchwarzNeuroconLab/DeepLabStream
6+
Licensed under GNU General Public License v3.0
7+
"""
8+
19
import time
210
import os
311
import cv2

experiments/stimulus_process.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
"""
2+
DeepLabStream
3+
© J.Schweihoff, M. Loshakov
4+
University Bonn Medical Faculty, Germany
5+
https://github.com/SchwarzNeuroconLab/DeepLabStream
6+
Licensed under GNU General Public License v3.0
7+
"""
8+
19
import time
210
import cv2
311
import multiprocessing as mp

experiments/triggers.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
"""
2+
DeepLabStream
3+
© J.Schweihoff, M. Loshakov
4+
University Bonn Medical Faculty, Germany
5+
https://github.com/SchwarzNeuroconLab/DeepLabStream
6+
Licensed under GNU General Public License v3.0
7+
"""
8+
9+
110
from utils.analysis import angle_between_vectors, calculate_distance, EllipseROI, RectangleROI
211
from utils.configloader import RESOLUTION
312

utils/VideoAnalyzer.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
"""
2+
DeepLabStream
3+
© J.Schweihoff, M. Loshakov
4+
University Bonn Medical Faculty, Germany
5+
https://github.com/SchwarzNeuroconLab/DeepLabStream
6+
Licensed under GNU General Public License v3.0
7+
"""
8+
19
import cv2
210
import time
311
import os

utils/analysis.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
DeepLabStream
4+
© J.Schweihoff, M. Loshakov
5+
University Bonn Medical Faculty, Germany
6+
https://github.com/SchwarzNeuroconLab/DeepLabStream
7+
Licensed under GNU General Public License v3.0
8+
"""
9+
10+
211
import os
312
from typing import Union, List, Tuple
413
import numpy as np

utils/configloader.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
"""
2+
DeepLabStream
3+
© J.Schweihoff, M. Loshakov
4+
University Bonn Medical Faculty, Germany
5+
https://github.com/SchwarzNeuroconLab/DeepLabStream
6+
Licensed under GNU General Public License v3.0
7+
"""
8+
19
import time
210
import os
311
import configparser as cfg

0 commit comments

Comments
 (0)