Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
81e40f3
add script for recording video with boson sdk
sumi1194 Sep 29, 2025
1c935f1
Create README.md
sumi1194 Sep 29, 2025
b536eec
Update README.md
sumi1194 Sep 29, 2025
3a53134
Update recording script
sumi1194 Sep 30, 2025
6a962df
flake8 and pylint
sumi1194 Sep 30, 2025
69f0061
Update 16bit to 8bit normalization method
sumi1194 Oct 7, 2025
7bd5adc
Make setup delay longer
sumi1194 Oct 20, 2025
8495b63
Make compatible with headless setup
sumi1194 Oct 20, 2025
9c1f06d
Fix stop record method
sumi1194 Oct 20, 2025
d386808
Fix status statement formatting
sumi1194 Oct 20, 2025
e907101
Fix flake8
sumi1194 Oct 20, 2025
2d7fb57
Fix live view error
sumi1194 Oct 22, 2025
8649808
Merge pull request #9 from conservationtechlab/6_radiometric_data
sumi1194 Oct 23, 2025
c63e46b
Add abstract class to handle different cameras
sumi1194 Nov 5, 2025
c7a5181
Add boson_capture file
sumi1194 Nov 5, 2025
af995da
Add start recording loop
sumi1194 Nov 5, 2025
539ab3d
Complete start and stop recording methods
sumi1194 Nov 6, 2025
4799021
Document & pylint capture.py
sumi1194 Nov 6, 2025
5c4107e
pylint and flake8 boson_capture.py
sumi1194 Nov 6, 2025
5c67bb8
Fix bad commit
sumi1194 Nov 6, 2025
136b21b
Fix recording frame rate and final pylint
sumi1194 Nov 10, 2025
448b7b5
modified record.py to use boson_capture class
sumi1194 Nov 10, 2025
7cd69b6
Add doc strings
sumi1194 Nov 11, 2025
40d2c59
flake8/pylint boson_record.py
sumi1194 Nov 11, 2025
5fc1176
Fix relative import
sumi1194 Nov 12, 2025
2444660
Remove boson scripts folder
sumi1194 Nov 12, 2025
85058a6
Update port initialization
sumi1194 Nov 13, 2025
30cf623
Update doc strings
sumi1194 Nov 13, 2025
8093eff
Merge pull request #14 from conservationtechlab/12_abstract_class_for…
sumi1194 Nov 17, 2025
404e578
Fix quote type in doc strings
sumi1194 Nov 19, 2025
29a7d6a
Implementing Counting Methods
May 12, 2026
d669e91
Restructured dirs and keeping thresholding with configs
Jul 20, 2026
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
165 changes: 92 additions & 73 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,73 +1,92 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
venv/
ENV/
env/
.venv/
.env/
pip-wheel-metadata/
*.log

# Jupyter Notebook checkpoints
.ipynb_checkpoints

# VSCode or PyCharm
.vscode/
.idea/

# Pytest
.cache/
.pytest_cache/

# MyPy
.mypy_cache/
.dmypy.json
dmypy.json

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover

# Docker
*.pid
*.tar
*.log
*.sqlite
*.db

# System files
.DS_Store
Thumbs.db
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
venv/
ENV/
env/
.venv/
.env/
pip-wheel-metadata/
*.log

# Jupyter Notebook checkpoints
.ipynb_checkpoints

# VSCode or PyCharm
.vscode/
.idea/

# Pytest
.cache/
.pytest_cache/

# MyPy
.mypy_cache/
.dmypy.json
dmypy.json

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover

# Docker
*.pid
*.tar
*.log
*.sqlite
*.db

# System files
.DS_Store
Thumbs.db

# Videos and Images
*.jpg
*.png
*.mkv
*.mp4

# Data Folders
heatseek/counting/clips
heatseek/counting/detections_413_full_thermal_vid
heatseek/counting/detections_414_full_thermal_vid
heatseek/counting/detections
heatseek/counting/detections_120b
heatseek/counting/detections_30b
heatseek/counting/detections_60b
heatseek/counting/detections_synthetic
heatseek/counting/detections_test
heatseek/outputs
heatseek/counting/verify_detections.ipynb
42 changes: 21 additions & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
MIT License

Copyright (c) 2025 SDZWA

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
MIT License
Copyright (c) 2025 SDZWA
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading