biigle/laserpoints

BIIGLE模块,用于在图像上执行启发式激光点检测。


README

Test status

这是BIIGLE模块,用于在图像上执行启发式激光点检测。

安装

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

  1. 运行 composer require biigle/laserpoints
  2. Biigle\Modules\Laserpoints\LaserpointsServiceProvider::class 添加到 config/app.php 文件中的 providers 数组中。
  3. 运行 php artisan vendor:publish --tag=public 以发布此模块的公共资源。
  4. 运行 pip install -r vendor/biigle/laserpoints/requirements.txt 以安装Python需求。
  5. 配置临时激光点文件存储磁盘,将 LASERPOINTS_DISK 变量设置为该存储磁盘的名称。例如,对于本地磁盘
    'laserpoints' => [
        'driver' => 'local',
        'root' => storage_path('framework/cache/laserpoints'),
    ],

参考文献

如果您的研究中使用激光点检测,请引用以下参考文献。

开发

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

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

贡献和错误报告

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