five

Francesco/trail-camera

收藏
Hugging Face2023-03-30 更新2024-03-04 收录
下载链接:
https://hf-mirror.com/datasets/Francesco/trail-camera
下载链接
链接失效反馈
官方服务:
资源简介:
--- dataset_info: features: - name: image_id dtype: int64 - name: image dtype: image - name: width dtype: int32 - name: height dtype: int32 - name: objects sequence: - name: id dtype: int64 - name: area dtype: int64 - name: bbox sequence: float32 length: 4 - name: category dtype: class_label: names: '0': game '1': Deer '2': Hog annotations_creators: - crowdsourced language_creators: - found language: - en license: - cc multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - object-detection task_ids: [] pretty_name: trail-camera tags: - rf100 --- # Dataset Card for trail-camera ** The original COCO dataset is stored at `dataset.tar.gz`** ## Dataset Description - **Homepage:** https://universe.roboflow.com/object-detection/trail-camera - **Point of Contact:** francesco.zuppichini@gmail.com ### Dataset Summary trail-camera ### Supported Tasks and Leaderboards - `object-detection`: The dataset can be used to train a model for Object Detection. ### Languages English ## Dataset Structure ### Data Instances A data point comprises an image and its object annotations. ``` { 'image_id': 15, 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>, 'width': 964043, 'height': 640, 'objects': { 'id': [114, 115, 116, 117], 'area': [3796, 1596, 152768, 81002], 'bbox': [ [302.0, 109.0, 73.0, 52.0], [810.0, 100.0, 57.0, 28.0], [160.0, 31.0, 248.0, 616.0], [741.0, 68.0, 202.0, 401.0] ], 'category': [4, 4, 0, 0] } } ``` ### Data Fields - `image`: the image id - `image`: `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]` - `width`: the image width - `height`: the image height - `objects`: a dictionary containing bounding box metadata for the objects present on the image - `id`: the annotation id - `area`: the area of the bounding box - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format) - `category`: the object's category. #### Who are the annotators? Annotators are Roboflow users ## Additional Information ### Licensing Information See original homepage https://universe.roboflow.com/object-detection/trail-camera ### Citation Information ``` @misc{ trail-camera, title = { trail camera Dataset }, type = { Open Source Dataset }, author = { Roboflow 100 }, howpublished = { \url{ https://universe.roboflow.com/object-detection/trail-camera } }, url = { https://universe.roboflow.com/object-detection/trail-camera }, journal = { Roboflow Universe }, publisher = { Roboflow }, year = { 2022 }, month = { nov }, note = { visited on 2023-03-29 }, }" ``` ### Contributions Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.

--- 数据集信息: 特征: - 名称: 图像ID 数据类型: 64位整数 - 名称: 图像 数据类型: 图像 - 名称: 图像宽度 数据类型: 32位整数 - 名称: 图像高度 数据类型: 32位整数 - 名称: 目标集合 序列类型: - 名称: 标注ID 数据类型: 64位整数 - 名称: 边界框面积 数据类型: 64位整数 - 名称: 边界框(bounding box, bbox) 序列类型: 32位浮点数 长度: 4 - 名称: 类别标签(class_label) 数据类型: 分类标签: 类别名称: '0': 猎物(game) '1': 鹿(Deer) '2': 野猪(Hog) 注释创建者: - 众包(crowdsourced) 语言创建者: - 现有数据源(found) 语言: - 英语(en) 许可协议: - 知识共享(Creative Commons, CC) 多语言属性: - 单语言(monolingual) 数据规模分类: - 1000 < 样本数 < 10000(1K<n<10K) 源数据集: - 原创(original) 任务类别: - 目标检测(object-detection) 任务子项: [] 友好名称: 野外相机(trail-camera) 标签: - RF100(rf100) --- # 野外相机(trail-camera)数据集卡片 ** 原始COCO数据集存储于`dataset.tar.gz` ** ## 数据集描述 - **主页链接**: https://universe.roboflow.com/object-detection/trail-camera - **联系人**: francesco.zuppichini@gmail.com ### 数据集概述 野外相机(trail-camera)数据集 ### 支持任务与基准榜单 - `目标检测(object-detection)`: 本数据集可用于训练目标检测模型。 ### 语言 英语 ## 数据集结构 ### 数据实例 每个数据点包含一张图像及其对应的目标注释。 { 'image_id': 15, 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>, 'width': 964043, 'height': 640, 'objects': { 'id': [114, 115, 116, 117], 'area': [3796, 1596, 152768, 81002], 'bbox': [ [302.0, 109.0, 73.0, 52.0], [810.0, 100.0, 57.0, 28.0], [160.0, 31.0, 248.0, 616.0], [741.0, 68.0, 202.0, 401.0] ], 'category': [4, 4, 0, 0] } } ### 数据字段 - `image_id`: 图像唯一标识符 - `image`: 承载图像的`PIL.JpegImagePlugin.JpegImageFile`对象。请注意,当访问图像列时:`dataset[0]["image"]`会自动对图像文件进行解码。解码大量图像文件可能会耗费大量时间,因此建议优先通过样本索引查询图像列,即**始终优先使用`dataset[0]["image"]`而非`dataset["image"][0]`** - `width`: 图像宽度 - `height`: 图像高度 - `objects`: 包含图像中目标的边界框元数据的字典 - `id`: 标注ID - `area`: 边界框面积 - `bbox`: 目标的边界框(采用[COCO格式](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco)) - `category`: 目标的类别标签。 #### 标注人员构成 标注人员为Roboflow平台用户。 ## 附加信息 ### 许可信息 详见主页链接:https://universe.roboflow.com/object-detection/trail-camera ### 引用信息 @misc{ trail-camera, title = { 野外相机数据集 }, type = { 开源数据集 }, author = { Roboflow 100 }, howpublished = { url{ https://universe.roboflow.com/object-detection/trail-camera } }, url = { https://universe.roboflow.com/object-detection/trail-camera }, journal = { Roboflow Universe }, publisher = { Roboflow }, year = { 2022 }, month = { 11月 }, note = { 访问于2023年3月29日 }, } ### 贡献 感谢[@mariosasko](https://github.com/mariosasko)为本数据集的收录提供支持。
提供机构:
Francesco
原始信息汇总

数据集概述

数据集名称

  • 名称: trail-camera

数据集特征

  • 特征列表:
    • image_id: 数据类型为 int64
    • image: 数据类型为 image
    • width: 数据类型为 int32
    • height: 数据类型为 int32
    • objects: 包含以下子特征
      • id: 数据类型为 int64
      • area: 数据类型为 int64
      • bbox: 数据类型为 float32,长度为4
      • category: 类别标签,包含以下名称
        • 0: game
        • 1: Deer
        • 2: Hog

数据集详情

  • 任务类别: object-detection
  • 语言: English
  • 多语言性: monolingual
  • 大小类别: 1K<n<10K
  • 源数据集: original

数据集结构

  • 数据实例: 每个数据点包含一张图片及其对象注释。
  • 数据字段:
    • image_id: 图片ID
    • image: 图片对象
    • width: 图片宽度
    • height: 图片高度
    • objects: 包含对象的元数据
      • id: 注释ID
      • area: 边界框的面积
      • bbox: 对象的边界框
      • category: 对象的类别

注释者信息

  • 注释者: Roboflow用户

许可证信息

  • 许可证: cc

引用信息

@misc{ trail-camera, title = { trail camera Dataset }, type = { Open Source Dataset }, author = { Roboflow 100 }, howpublished = { url{ https://universe.roboflow.com/object-detection/trail-camera } }, url = { https://universe.roboflow.com/object-detection/trail-camera }, journal = { Roboflow Universe }, publisher = { Roboflow }, year = { 2022 }, month = { nov }, note = { visited on 2023-03-29 }, }

搜集汇总
数据集介绍
main_image_url
背景与挑战
背景概述
该数据集是一个用于对象检测的trail-camera图像数据集,包含约1.31k张图像,分为训练、验证和测试集,每张图像均带有边界框和类别注释。数据集规模适中,格式为parquet,适用于训练计算机视觉模型,特别针对野外监控场景。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务