惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
B
Blog
腾讯CDC
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - Franky
罗磊的独立博客
月光博客
月光博客
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
G
Google Developers Blog
V
Visual Studio Blog
I
InfoQ
有赞技术团队
有赞技术团队
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - AImageLab-zip/CALHippo-Framework: MICCAI 2026 - ...
ettore_c · 2026-06-25 · via Hacker News: Show HN

CALHippo Framework - Codebase of the Cellular Annotation Library for the Hippocampus

Python uv PyTorch TensorFlow Models

Important

CALHippo has been accepted at MICCAI 2026! The current preprint version is available here. See the citation below.

Paper

This repository contains the official framework associated with the CALHippo dataset. It provides a multiscale workflow that bridges microscopic cell instances and macroscopic brain architecture, enabling the generation of biologically plausible 3D cellular point clouds from BigBrain histological sections.

CALHippo Logo

The framework preprocesses raw high-resolution (HR) (a) and low-resolution (LR) (e) BigBrain slices, segments and classifies HR cells (b), maps the annotations into LR space (c), trains LR density models (d), runs full-slice LR inference (f), and reconstructs 3D point-cloud outputs (g).

calhippo_pipeline

Results

Setup

Clone this repo, cd into the repository root and install uv:

curl -LsSf https://astral.sh/uv/install.sh | sh
#or if you don't have curl installed:
wget -qO- https://astral.sh/uv/install.sh | sh

Then install the dependencies:

Optionally activate the environment:

source .venv/bin/activate

or run .py files directly using uv run instead of python.

Pipeline Usage

To reproduce and/or use the pipeline, read the following documents in order:

Document Use it for
Data setup Data sources, setup script, folder structure, transform notes
Pipeline instructions Reproducibility path and inference-stage commands after data setup
HR/LR coordinate conventions Coordinate and affine rules for HR to LR mapping
HR/LR mapping notebook Visual/debug reference for HR/LR mapping

Data Layout

The maintained documentation uses a single configurable <DATA_ROOT> convention. The canonical tree is specified in Data setup.

Key folders:

  • raw inputs live under <DATA_ROOT>/raw/high_res, <DATA_ROOT>/raw/low_res, and <DATA_ROOT>/raw/masks
  • preprocessing outputs live under <DATA_ROOT>/input/all_regions and <DATA_ROOT>/input/single_regions
  • optional manually adjusted HR ROI masks can live under <DATA_ROOT>/input/custom_masks/high_res and be used explicitly during HR single-region extraction
  • pipeline outputs live under <DATA_ROOT>/output/segmentation, <DATA_ROOT>/output/classification, <DATA_ROOT>/output/lr_density_dataset, <DATA_ROOT>/output/test_lr_density_gt, <DATA_ROOT>/output/lr_gt_eval, <DATA_ROOT>/output/full_lr_predictions, and <DATA_ROOT>/output/mesoscale_reconstruction
  • density-estimator training runs live under <DATA_ROOT>/density_estimator_training
  • released and trained model artifacts live under <DATA_ROOT>/models

The maintained LR inference output is <DATA_ROOT>/output/full_lr_predictions/allCA_best_model_128_96_smooth_b05_k5_roi. Point-cloud reconstruction consumes a prediction folder such as <DATA_ROOT>/output/full_lr_predictions/<PREDICTIONS_NAME> plus LR bbox JSONs and raw LR MINC files, then writes <DATA_ROOT>/output/mesoscale_reconstruction/<PREDICTIONS_NAME>/point_cloud.csv.

Maintained region names are RCA1, RCA2, RCA3, and RCA4.

Development

Install the dev dependencies:

Use ruff to check and format the code:

uv run ruff check .
uv run ruff format .

Developer reference:

See AGENTS.md for repository-specific development guidance.

License

Original CALHippo source code is released under the Apache License 2.0.

Code authors: Giovanni Casari and Ettore Candeloro, equal contribution.

Model weights, trained checkpoints, datasets, derived annotations, rendered figures, notebook outputs, and other BigBrain-derived artifacts are not covered by the Apache License 2.0. These artifacts are released under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) for non-commercial academic research use only.

Some parts of this repository include copied or modified code from upstream model projects used by the pipeline, including Cellpose, HoVer-Net, InstanSeg, StarDist, and related dependencies. Those files remain subject to their original upstream licenses and copyright notices. Where applicable, upstream notices are retained in the corresponding source folders and/or in THIRD_PARTY_NOTICES.md.

UNI2-h weights are not redistributed by this repository. Users who need the UNI2-h classification path must request access from the upstream provider and authenticate locally.

The CALHippo framework, released weights, and derived artifacts are intended for non-commercial research use and are not intended for clinical diagnosis, medical decision-making, or commercial deployment.

Citations

If you use our dataset/code you must cite the following:

@inproceedings{2026MICCAI_calhippo,
  title={CALHippo: Cell Segmentation for Neuronal Density Inference in the Human Hippocampus},
  author={Casari, Giovanni and Candeloro, Ettore and Gandolfi, Daniela and Mapelli, Jonathan and Bolelli, Federico and Grana, Costantino},
  year={2026},
  month={June},
  book={Medical Image Computing and Computer Assisted Intervention – MICCAI 2026},
  booktitle={Medical Image Computing and Computer Assisted Intervention – MICCAI 2026},
  venue={Strasbourg, France},
  keywords={Human Brain, Cell Segmentation, Density Estimation}
}