Skip to content

Commit

Permalink
Updated software page
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ramachandran committed Oct 19, 2024
1 parent 2fa6dda commit 5bbbaff
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 15 deletions.
40 changes: 31 additions & 9 deletions _data/repositories.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,36 @@
github_users:
- torvalds
- alshedivat
# - mikgroup

repo_description_lines_max: 2

bart_repos:
- mrirecon/bart
- mrirecon/bart-workshop

sigpy_repos:
- mikgroup/sigpy
- mikgroup/sigpy-mri-tutorial

espirit_repos:
- mikgroup/espirit-matlab-examples
- mikgroup/espirit-python

github_repos:
- alshedivat/al-folio
- jekyll/jekyll
- twbs/bootstrap
- jquery/jquery
- FortAwesome/Font-Awesome
- mathjax/MathJax
- jpswalsh/academicons
- mikgroup/extreme_mri
- mikgroup/kspace_precond
- mikgroup/bpt_paper
- mikgroup/bpt_mrpub
- mikgroup/UFLoss
- mikgroup/ResoNet
- mikgroup/Caterpillar-Traps
- mikgroup/DiSpectMRI
- mikgroup/phase_cycling


# - alshedivat/al-folio
# - jekyll/jekyll
# - twbs/bootstrap
# - jquery/jquery
# - FortAwesome/Font-Awesome
# - mathjax/MathJax
# - jpswalsh/academicons
54 changes: 48 additions & 6 deletions _pages/repositories.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
---
layout: page
permalink: /repositories/
title: repositories
description: Edit the `_data/repositories.yml` and change the `github_users` and `github_repos` lists to include your own GitHub profile and repositories.
permalink: /sofware/
title: software
description: # Edit the `_data/repositories.yml` and change the `github_users` and `github_repos` lists to include your own GitHub profile and repositories.
nav: true
nav_order: 4
---



{% if site.data.repositories.github_users %}

## GitHub users
Expand All @@ -17,7 +19,7 @@ nav_order: 4
{% endfor %}
</div>

---
<!-- ---
{% if site.repo_trophies.enabled %}
{% for user in site.data.repositories.github_users %}
Expand All @@ -32,16 +34,56 @@ nav_order: 4
---
{% endfor %}
{% endif %} -->
{% endif %}
{% endif %}

## BART

<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
{% for repo in site.data.repositories.bart_repos %}
{% include repository/repo.liquid repository=repo %}
{% endfor %}
</div>

The Berkeley Advanced Reconstruction Toolbox (BART) is a free and open-source image-reconstruction framework for Magnetic Resonance Imaging (MRI). It consists of a programming library and a toolbox of command-line programs. The library provides common operations on multi-dimensional arrays, Fourier and wavelet transforms, as well as generic implementations of iterative optimization algorithms. The command-line tools provide direct access to basic operations on multi-dimensional arrays as well as efficient implementations of many calibration and reconstruction algorithms for parallel imaging and compressed sensing.

## SigPy

<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
{% for repo in site.data.repositories.sigpy_repos %}
{% include repository/repo.liquid repository=repo %}
{% endfor %}
</div>

This package is built to operate directly on numpy arrays on CPU and cupy arrays on GPU. Its main features include: a unified CPU/GPU interface to signal processing functions, Linear operator classes, Proximal operator classes (Prox), Iterative algorithm classes (Alg), and Application classes (App) that wrap Alg, Linop, and Prox to form a final deliverable for each application.

SigPy also provides a submodule sigpy.mri for MRI iterative reconstruction methods. It includes Apps for common MRI reconstruction methods such as SENSE reconstruction, l1-wavelet reconstruction, total-variation reconstruction, and JSENSE reconstruction. This module also includes convenient simulation and sampling functions, including poisson-disc sampling function, and Shepp-Logan phantom generation function.

## Data

### [mridata.org](http://mridata.org)

This website provides open datasets to researchers who desire to contribute to a community of reproducible research, where they can test and validate their algorithms against known undersampled acquisitions. These datasets were acquired through a collaboration between Michael Lustig at UC Berkeley and Dr. Shreyas Vasanawala at Stanford's Lucille Packard Children's Hospital. The undersampled datasets are of two varieties: variable-density undersampling and uniform-density undersampling. At present, all of the datasets are of knee images. In addition to undersampled datasets, we also provide separate cases of fully sampled knees, for researchers who wish to experiment with their own undersampling patterns

## ESPIRiT

<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
{% for repo in site.data.repositories.espirit_repos %}
{% include repository/repo.liquid repository=repo %}
{% endfor %}
</div>


<!-- ## Compressed Sensing -->

{% if site.data.repositories.github_repos %}

## GitHub Repositories
## Github Repositories

<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
{% for repo in site.data.repositories.github_repos %}
{% include repository/repo.liquid repository=repo %}
{% endfor %}
</div>
{% endif %}

0 comments on commit 5bbbaff

Please sign in to comment.