bodokaiser / mrtous

Generate US images from MR brain images.
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

elevate project to the next level #9

Closed bodokaiser closed 7 years ago

bodokaiser commented 7 years ago

1. Precision

To increase image precision on MRI images we would need to:

2. Filtering

To support our enhanced loss function we need to create a binary mask from US thresholding. That mask can also be used to filter too small US images (saves us one calculation) in the training loop.

3. Enhanced Loss

Bugs

bodokaiser commented 7 years ago

I just noticed that our ElasticNet implementation is numerically unstable (result yields nan's).

bodokaiser commented 7 years ago

I found the problem with why data varnishes after one epoch. The reason is that MNIBITENative calls to Normalize() overwrite the images such that with a second normalize (over the original value range) it has lost its precision. I try to find a way that MINC2 loads the corresponding image slice directly over h5py.File each time.

bodokaiser commented 7 years ago

Rebased with master.