biigle / laserpoints
BIIGLE module to perform a heuristic laser point detection on images.
Installs: 7 148
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 1
Open Issues: 8
- dev-master
- v2.18.2
- v2.18.1
- v2.18.0
- v2.17.4
- v2.17.3
- v2.17.2
- v2.17.1
- v2.17.0
- v2.16.2
- v2.16.1
- v2.16.0
- v2.15.1
- v2.15.0
- v2.14.0
- v2.13.0
- v2.12.1
- v2.12.0
- v2.11.1
- v2.11.0
- v2.10.0
- v2.9.4
- v2.9.3
- v2.9.2
- v2.9.1
- v2.9.0
- v2.8.0
- v2.7.0
- v2.6.1
- v2.6.0
- v2.5.0
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.0
- v2.1.0
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v2.0.0-beta
- v1.x-dev
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.0
- v1.3.8
- v1.3.7
- v1.3.6
- v1.3.5
- v1.3.4
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.0
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.0
- dev-dependabot/npm_and_yarn/npm_and_yarn-5490e23419
- dev-laravel-10
- dev-WIP-storage-disk
This package is auto-updated.
Last update: 2024-10-30 11:19:55 UTC
README
This is the BIIGLE module to perform a heuristic laser point detection on images.
Installation
This module is already included in biigle/biigle
.
- Run
composer require biigle/laserpoints
. - Add
Biigle\Modules\Laserpoints\LaserpointsServiceProvider::class
to theproviders
array inconfig/app.php
. - Run
php artisan vendor:publish --tag=public
to publish the public assets of this module. - Run
pip install -r vendor/biigle/laserpoints/requirements.txt
to install the Python requirements. - Configure a storage disk for the temporary laserpoints files
LASERPOINTS_DISK
variable to the name of this storage disk in the.env
file. Example for a local disk:'laserpoints' => [ 'driver' => 'local', 'root' => storage_path('framework/cache/laserpoints'), ],
References
Reference publications that you should cite if you use the laser point detection for one of your studies.
-
BIIGLE 2.0 Langenkämper, D., Zurowietz, M., Schoening, T., & Nattkemper, T. W. (2017). Biigle 2.0-browsing and annotating large marine image collections. Frontiers in Marine Science, 4, 83. doi:
10.3389/fmars.2017.00083
-
Laser Point Detection Schoening, T., Kuhn, T., Bergmann, M., & Nattkemper, T. W. (2015). DELPHI—fast and adaptive computational laser point detection and visual footprint quantification for arbitrary underwater image collections. Frontiers in Marine Science, 2, 20. doi:
10.3389/fmars.2015.00020
Developing
Take a look at the development guide of the core repository to get started with the development setup.
Want to develop a new module? Head over to the biigle/module template repository.
Contributions and bug reports
Contributions to BIIGLE are always welcome. Check out the contribution guide to get started.