biigle / largo
This package is abandoned and no longer maintained.
No replacement package was suggested.
BIIGLE module to review image annotations in a regular grid.
v2.39.0
2025-04-29 07:37 UTC
Requires
- jcupitt/vips: ^1.0 || ^2.0
- meyfa/php-svg: ^0.14.6
- php-ffmpeg/php-ffmpeg: ^0.14 || ^0.19 || ^1.0
This package is auto-updated.
Last update: 2025-05-08 08:04:35 UTC
README
⚠️ This module has been merged into biigle/core.
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::classto theprovidersarray inconfig/app.php. - Run
php artisan vendor:publish --tag=publicto publish the public assets of this module. - Configure a storage disk for the Largo annotation patches and set the
LARGO_PATCH_STORAGE_DISKvariable to the name of this storage disk in the.envfile. 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/publicin thepublicdirectory.
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.