Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: vedb_store
name: vedb_analysis
channels:
- anaconda
- conda-forge
- auto
- vedb
dependencies:
- python=3.8
- python=3.10
- numpy
- scipy
- matplotlib
Expand All @@ -20,9 +20,9 @@ dependencies:
- appdirs
- python-couchdb
- opencv=4.2.0
- msgpack-python=0.6.2
- msgpack-python
- pip
- pip:
- git+https://github.com/vedb/file_io@main
- git+https://github.com/vedb/docdb_lite@main
- git+https://github.com/vedb/vedb-store@devel
- git+https://github.com/piecesofmindlab/file_io@main
- git+https://github.com/vedb/vedb-gaze@main
- git+https://github.com/vedb/vedb-store@main
18 changes: 0 additions & 18 deletions test_data_base.py

This file was deleted.

20 changes: 1 addition & 19 deletions vedb_store/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
from . import orm, options
from .orm.session import Session, SessionClip
from .orm.recording import RecordingSystem, RecordingDevice, Camera, Odometer, GPS
from .orm.segment import Segment
from .orm.subject import Subject
from .orm.paramdictionary import ParamDictionary
from .orm.pupil_detection import PupilDetection
from .orm.marker_detection import MarkerDetection
from .orm.calibration import Calibration
from .orm.gaze import Gaze, GazeError

from .orm.session import Session, SessionClip, ClipList
from functools import partial

try:
from .dbwrapper import docdb_lite as docdb
dbhost = options.config.get('db', 'dbhost')
dbname = options.config.get('db', 'dbname')
if (dbname is not None) and (dbname.lower() not in ('none', '')):
docdb.getclient = partial(docdb.getclient, dbhost=dbhost, dbname=dbname)
except ImportError:
print('Failed to import docdb - no database functions available.')
32 changes: 0 additions & 32 deletions vedb_store/dbwrapper.py

This file was deleted.

11 changes: 0 additions & 11 deletions vedb_store/defaults.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,3 @@ vedb_directory=~/remote_mounts/vedbcloud0/vedb_official/
sync_directory=
# Directory where processed gaze and odometry files are stored:
proc_directory=~/remote_mounts/vedbcloud0/db/pydra_cache/

[db]
# Deprecated and will probably go away
dbhost=None
dbname=None

[param_defaults]
# Deprecated and will probably go away
uvc={"codec": "libx264", "color_format": "gray", "crf": 18, "fps": 120, "preset": "ultrafast", "resolution": [400, 400]}
flir={"codec": "libx264", "color_format": "bayer_rggb8", "crf": 18, "fps": 30, "preset": "ultrafast", "resolution": [2048, 1536], "settings": {"ExposureAuto": "Continuous", "GainAuto": "Continuous"},}
t265={"codec": "libx264", "color_format": "rgb", "crf": 18, "fps": 30, "preset": "ultrafast", "resolution": [1696, 800]}
110 changes: 0 additions & 110 deletions vedb_store/orm/calibration.py

This file was deleted.

Loading