Skip to content

Commit

Permalink
🏗️ Extend package to 3D images and heatmaps.
Browse files Browse the repository at this point in the history
  • Loading branch information
jejon committed Jun 13, 2024
1 parent fcbc211 commit fac09b8
Show file tree
Hide file tree
Showing 12 changed files with 2,195 additions and 782 deletions.
446 changes: 213 additions & 233 deletions src/landmarker/data/landmark_dataset.py

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions src/landmarker/heatmap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
"""
Heatmap module.
"""
from .generator import LaplacianHeatmapGenerator, GaussianHeatmapGenerator

from .decoder import (
coord_argmax,
coord_cov_from_gaussian_ls,
coord_cov_windowed_weigthed_sample_cov,
coord_local_soft_argmax,
coord_weighted_spatial_mean,
coord_soft_argmax,
heatmap_to_coord,
heatmap_to_coord_enlarge,
coord_soft_argmax_cov,
coord_weighted_spatial_mean,
coord_weighted_spatial_mean_cov,
heatmap_to_coord_cov,
coord_cov_from_gaussian_ls,
cov_from_gaussian_ls,
heatmap_coord_to_weighted_sample_cov,
weighted_sample_cov,
coord_cov_windowed_weigthed_sample_cov,
heatmap_to_coord,
heatmap_to_coord_cov,
heatmap_to_coord_enlarge,
heatmap_to_multiple_coord,
non_maximum_surpression,
non_maximum_surpression_local_soft_argmax,
weighted_sample_cov,
)
from .generator import GaussianHeatmapGenerator, LaplacianHeatmapGenerator

__all__ = [
"LaplacianHeatmapGenerator",
Expand Down
Loading

0 comments on commit fac09b8

Please sign in to comment.