This is the BIIGLE module to review image annotations in a regular grid.
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:This requires the link'largo' => [ 'driver' => 'local', 'root' => storage_path('app/public/largo-patches'), 'url' => env('APP_URL').'/storage/largo-patches', 'visibility' => 'public', ],
storage -> ../storage/app/public
in thepublic
directory.
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 to BIIGLE are always welcome. Check out the contribution guide to get started.