--- license: cc-by-nc-sa-4.0 task_categories: - image-segmentation language: - en tags: - medical - image pretty_name: 'camus-lite' size_categories: - n<1K --- ## About This is a subset of the [CAMUS dataset](https://www.creatis.insa-lyon.fr/Challenge/camus/). - 1000 echocardiographic images and corresponding segmentation masks - No change to any image or segmentation mask - Files are rearranged in `Images` and `Masks` folders This dataset is released under the `CC BY-NC-SA 4.0` license. ## Segmentation Labels ```python labels_map = { "1": "left ventricular myocardium", "2": "left ventricle", "3": "left atrium", } ``` ## Official Release For more information, please go to these sites: - Data License (official): [CC BY-NC-SA 4.0](https://humanheart-project.creatis.insa-lyon.fr/database/#item/66e2904d961576b1bad4ed75) - Challenge (official): https://www.creatis.insa-lyon.fr/Challenge/camus/ - Data (official): https://www.creatis.insa-lyon.fr/Challenge/camus/databases.html ## Download from Huggingface ```bash #!/bin/bash pip install huggingface-hub[cli] huggingface-cli login --token $HF_TOKEN ``` ```python # python from huggingface_hub import snapshot_download snapshot_download(repo_id="YongchengYAO/CAMUS-Lite", repo_type='dataset', local_dir="/your/local/folder") ```