biigle / largo
BIIGLE module to review image annotations in a regular grid.
Installs: 7 328
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 26
Requires
- jcupitt/vips: ^1.0 || ^2.0
- meyfa/php-svg: ^0.14.6
- php-ffmpeg/php-ffmpeg: ^0.14 || ^0.19 || ^1.0
- dev-master
- v2.36.1
- v2.36.0
- v2.35.0
- v2.34.8
- v2.34.7
- v2.34.6
- v2.34.5
- v2.34.4
- v2.34.3
- v2.34.2
- v2.34.1
- v2.34.0
- v2.33.26
- v2.33.25
- v2.33.24
- v2.33.23
- v2.33.22
- v2.33.21
- v2.33.20
- v2.33.19
- v2.33.18
- v2.33.17
- v2.33.16
- v2.33.15
- v2.33.14
- v2.33.13
- v2.33.12
- v2.33.11
- v2.33.10
- v2.33.9
- v2.33.8
- v2.33.7
- v2.33.6
- v2.33.5
- v2.33.4
- v2.33.3
- v2.33.2
- v2.33.1
- v2.33.0
- v2.32.0
- v2.31.0
- v2.30.0
- v2.29.0
- v2.28.1
- v2.28.0
- v2.27.0
- v2.26.1
- v2.26.0
- v2.25.1
- v2.25.0
- v2.24.1
- v2.24.0
- v2.23.0
- v2.22.1
- v2.22.0
- v2.21.6
- v2.21.5
- v2.21.4
- v2.21.3
- v2.21.2
- v2.21.1
- v2.21.0
- v2.20.0
- v2.19.1
- v2.19.0
- v2.18.0
- v2.17.4
- v2.17.3
- v2.17.2
- v2.17.1
- v2.17.0
- v2.16.1
- v2.16.0
- v2.15.1
- v2.15.0
- v2.14.1
- v2.14.0
- v2.13.1
- v2.13.0
- v2.12.3
- v2.12.2
- v2.12.1
- v2.12.0
- v2.11.2
- v2.11.1
- v2.11.0
- v2.10.1
- v2.10.0
- v2.9.2
- v2.9.1
- v2.9.0
- v2.8.0
- v2.7.0
- v2.6.0
- v2.5.1
- v2.5.0
- v2.4.1
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.2
- v2.0.1
- v2.0.0
- v2.0.0-beta2
- v2.0.0-beta
- v1.x-dev
- v1.11.2
- v1.11.1
- v1.11.0
- v1.10.0
- v1.9.0
- v1.8.0
- v1.7.0
- v1.6.4
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.4
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.3.1
- v0.3.0
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.0
- dev-adds-shape-filter
- dev-chunkingStoreLargoSession
- dev-flat-label-list-tab
- dev-enlarge-thumbnails
- dev-dependabot/npm_and_yarn/npm_and_yarn-a9d12a0507
- dev-sim-sort-thumbs
This package is auto-updated.
Last update: 2024-11-08 08:45:45 UTC
README
This is the BIIGLE module to review image annotations in a regular grid.
Installation
This module is already included in biigle/biigle
.
- Run
composer require biigle/largo
. - Install the Python dependencies with
pip install -r requirements.txt
. - Add
Biigle\Modules\Largo\LargoServiceProvider::class
to theproviders
array inconfig/app.php
. - Run
php artisan vendor:publish --tag=public
to publish the public assets of this module. - Configure a storage disk for the Largo annotation patches and set the
LARGO_PATCH_STORAGE_DISK
variable to the name of this storage disk in the.env
file. The content of the storage disk should be publicly accessible. Example for a local disk:'largo' => [ 'driver' => 'local', 'root' => storage_path('app/public/largo-patches'), 'url' => env('APP_URL').'/storage/largo-patches', 'visibility' => 'public', ],
This requires the linkstorage -> ../storage/app/public
in thepublic
directory.
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.