biigle/largo

BIIGLE 模块,用于在常规网格中审查图像标注。

v2.36.1 2024-09-06 09:38 UTC

README

Test status

这是BIIGLE模块,用于在常规网格中审查图像标注。

安装

此模块已包含在 biigle/biigle 中。

  1. 运行 composer require biigle/largo
  2. 使用 pip install -r requirements.txt 安装 Python 依赖项。
  3. Biigle\Modules\Largo\LargoServiceProvider::class 添加到 config/app.php 文件中的 providers 数组中。
  4. 运行 php artisan vendor:publish --tag=public 以发布此模块的公共资产。
  5. 为 Largo 标注补丁配置存储磁盘,并在 .env 文件中将 LARGO_PATCH_STORAGE_DISK 变量设置为该存储磁盘的名称。存储磁盘的内容应该是公开可访问的。例如,对于本地磁盘
    'largo' => [
        'driver' => 'local',
        'root' => storage_path('app/public/largo-patches'),
        'url' => env('APP_URL').'/storage/largo-patches',
        'visibility' => 'public',
    ],
    需要在 public 目录中的 storage 链接 storage -> ../storage/app/public

开发

查看核心存储库的 开发指南 以开始开发设置。

想要开发新模块?前往 biigle/module 模板存储库。

贡献和错误报告

BIIGLE 欢迎贡献。查看 贡献指南 以开始。