The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 91, in _split_generators
pa_table = next(iter(self._generate_tables(**splits[0].gen_kwargs, allow_full_read=False)))[1]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 193, in _generate_tables
examples = [ujson_loads(line) for line in batch.splitlines()]
^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/utils/json.py", line 20, in ujson_loads
return pd.io.json.ujson_loads(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: Expected object or value
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 65, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
CattleFace-RGBT: Cattle Facial Landmark Dataset with RGB-Thermal Imagery
Dataset Description
CattleFace-RGBT is the first publicly available multimodal dataset featuring paired frontal-view RGB and thermal facial images of cattle, annotated with 13 facial keypoints and associated ground-truth rectal temperature measurements. The dataset was developed to support research in automated cattle fever estimation and precision livestock farming.
Paper: CattleFever: An automated cattle fever estimation system Published in: Smart Agricultural Technology, Volume 12, 2025
Dataset Summary
| Component | Count |
|---|---|
| RGB images (annotated) | 1,890 |
| Thermal JPG images (annotated, colorized) | 2,611 |
| Raw thermal TIFF frames | 30,954 |
| Thermal videos (.mp4) | 51 |
| Unique cattle | 108 |
| Cattle with temperature readings | 29 |
| Facial keypoints per image | 13 |
| Recording dates | 3 (Feb 1, Feb 6, Feb 13) |
Dataset Structure
CattleFace-RGBT/
βββ README.md
βββ rgb/ # RGB images organized by folder
β βββ 1/
β βββ 17/
β βββ 25/
β βββ 50/
β βββ 64/
βββ thermal/ # Colorized thermal JPG images
β βββ 1/
β βββ 2/
β βββ 17/
β βββ 25/
β βββ 50/
β βββ 64/
βββ thermal_raw/ # Raw thermal TIFF frames (temperature data)
β βββ 02_01/ # Feb 1 recording session
β βββ 02_06/ # Feb 6 recording session
β βββ 02_13/ # Feb 13 recording session
βββ annotations/
βββ rgb_keypoints.json # COCO-format keypoint annotations for RGB
βββ thermal_keypoints.json # COCO-format keypoint annotations for thermal
βββ metadata.csv # Cow ID, temperature, and data mapping
βββ cow_mapping.json # Sequence number β cow tag ID mapping
Annotation Format
Annotations follow the COCO keypoint format:
Images
{
"id": 0,
"file_name": "rgb/1/00001.jpg",
"width": 2560,
"height": 1440,
"folder": "1",
"frame_id": "00001"
}
Annotations
{
"id": 0,
"image_id": 0,
"category_id": 1,
"keypoints": [x1, y1, v1, x2, y2, v2, ...],
"num_keypoints": 13,
"bbox": [x, y, width, height],
"area": 123456,
"iscrowd": 0
}
13 Facial Keypoints
| Index | Name | Description |
|---|---|---|
| 1 | left_ear_base | Base of left ear |
| 2 | left_ear_middle | Middle of left ear |
| 3 | left_ear_tip | Tip of left ear |
| 4 | poll | Top of head (poll) |
| 5 | right_ear_base | Base of right ear |
| 6 | right_ear_middle | Middle of right ear |
| 7 | right_ear_tip | Tip of right ear |
| 8 | left_eye | Left eye |
| 9 | right_eye | Right eye |
| 10 | muzzle | Center of muzzle |
| 11 | left_nostril | Left nostril |
| 12 | right_nostril | Right nostril |
| 13 | mouth | Mouth |
Visibility flag: 0 = not labeled, 2 = labeled and visible.
Raw Thermal Data
The thermal_raw/ directory contains raw TIFF frames from the ICI FMX 400 thermal camera (384 x 288 pixels). Each pixel contains a temperature value in Celsius. These files can be read with:
from PIL import Image
import numpy as np
tiff = Image.open("thermal_raw/02_01/0001_Video_Frame_1.tiff")
temp_array = np.array(tiff) # Temperature values in Celsius
TIFF filenames follow the pattern: {sequence_num}_Video_Frame_{frame_num}.tiff
Use cow_mapping.json to map sequence numbers to cow tag IDs and temperatures.
Temperature Data
Ground-truth rectal temperatures (in Fahrenheit) are available for 29 cattle across 3 recording sessions. The mapping is provided in metadata.csv and cow_mapping.json.
Data Collection
Data was collected at the Arkansas Agricultural Experiment Station, Savoy Research Complex, Beef Cattle Research Area, in partnership with the University of Arkansas. The setup used:
- RGB camera: Standard webcam (2560 x 1440 resolution)
- Thermal camera: ICI FMX 400 (384 x 288 pixel resolution, 50 Hz frame rate, < 0.03Β°C thermal sensitivity)
- Temperature: Rectal thermometer (ground truth)
Each calf was guided into a cattle squeeze chute for ~20 seconds of synchronized RGB and thermal video recording.
Supported Tasks
- Cattle facial landmark detection β Detect 13 keypoints on cattle faces
- Cattle face detection β Detect and localize cattle faces using bounding boxes
- Core body temperature estimation β Predict rectal temperature from thermal facial features
Recommended Splits
As described in the paper:
- Keypoint detection: 70% train / 30% test (random split)
- Temperature estimation: 80% train / 20% test
Citation
@article{pham2025cattlefever,
title={CattleFever: An automated cattle fever estimation system},
author={Pham, Trong Thang and Coffman, Ethan and Kegley, Beth and Powell, Jeremy G. and Zhao, Jiangchao and Le, Ngan},
journal={Smart Agricultural Technology},
volume={12},
pages={101434},
year={2025},
publisher={Elsevier},
doi={10.1016/j.atech.2025.101434}
}
License
This dataset is released under the CC BY 4.0 license.
Contact
For questions about this dataset, please contact:
- Trong Thang Pham (tp030@uark.edu) β AICV Lab, University of Arkansas
- Downloads last month
- 5