Skip to content

Commit

Permalink
Prepare release of v1.0.0
Browse files Browse the repository at this point in the history
Added Author information
  • Loading branch information
JensBlack committed Jul 2, 2020
1 parent cad1954 commit 69e0099
Show file tree
Hide file tree
Showing 16 changed files with 128 additions and 4 deletions.
9 changes: 5 additions & 4 deletions DeepLabStream.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#!/usr/bin/env python
"""
Adapted from DeepLabCut Toolbox
by
Jens Schweihoff, [email protected]
Matvey Loshakov, [email protected]
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""
import time
import os
Expand Down
8 changes: 8 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import sys
import os
import cv2
Expand Down
8 changes: 8 additions & 0 deletions experiments/DAQ_output.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import nidaqmx
import time

Expand Down
9 changes: 9 additions & 0 deletions experiments/experiments.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""


from experiments.stimulus_process import ExampleProtocolProcess, Timer
from experiments.triggers import RegionTrigger
from utils.plotter import plot_triggers_response
Expand Down
8 changes: 8 additions & 0 deletions experiments/stimulation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import time
import os
import cv2
Expand Down
8 changes: 8 additions & 0 deletions experiments/stimulus_process.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import time
import cv2
import multiprocessing as mp
Expand Down
9 changes: 9 additions & 0 deletions experiments/triggers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""


from utils.analysis import angle_between_vectors, calculate_distance, EllipseROI, RectangleROI
from utils.configloader import RESOLUTION

Expand Down
8 changes: 8 additions & 0 deletions utils/VideoAnalyzer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import cv2
import time
import os
Expand Down
9 changes: 9 additions & 0 deletions utils/analysis.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# -*- coding: utf-8 -*-
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""


import os
from typing import Union, List, Tuple
import numpy as np
Expand Down
8 changes: 8 additions & 0 deletions utils/configloader.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import time
import os
import configparser as cfg
Expand Down
8 changes: 8 additions & 0 deletions utils/generic_camera.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import cv2
from utils.configloader import CAMERA_SOURCE

Expand Down
8 changes: 8 additions & 0 deletions utils/gui_image.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

from utils.configloader import RESOLUTION

import cv2
Expand Down
8 changes: 8 additions & 0 deletions utils/plotter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import cv2
import random
from utils.configloader import EGG
Expand Down
8 changes: 8 additions & 0 deletions utils/poser.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import sys
import os
import numpy as np
Expand Down
8 changes: 8 additions & 0 deletions utils/pylon.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

from pypylon import pylon
import cv2

Expand Down
8 changes: 8 additions & 0 deletions utils/realsense.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
DeepLabStream
© J.Schweihoff, M. Loshakov
University Bonn Medical Faculty, Germany
https://github.com/SchwarzNeuroconLab/DeepLabStream
Licensed under GNU General Public License v3.0
"""

import warnings
import numpy as np
warnings.filterwarnings(category=FutureWarning, action='ignore') # filter unwanted warnings
Expand Down

0 comments on commit 69e0099

Please sign in to comment.