mrzerocore 0.2.6__cp37-abi3-win_amd64.whl → 0.2.7__cp37-abi3-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
MRzeroCore/_prepass.pyd CHANGED
Binary file
@@ -4,7 +4,7 @@ import gzip
4
4
  import requests
5
5
  import os
6
6
  import numpy as np
7
- from perlin_numpy import generate_perlin_noise_3d
7
+ # from perlin_numpy import generate_perlin_noise_3d
8
8
 
9
9
 
10
10
  # Load the brainweb data file that contains info about tissues, subjects, ...
@@ -54,7 +54,8 @@ def gen_noise(range: float, res: np.ndarray) -> np.ndarray:
54
54
  else:
55
55
  freq = 20
56
56
  padded_res = (res + freq - 1) // freq * freq
57
- noise = generate_perlin_noise_3d(padded_res, (freq, freq, freq))
57
+ # noise = generate_perlin_noise_3d(padded_res, (freq, freq, freq))
58
+ noise = np.random.random(padded_res)
58
59
  return 1 + range * noise[:res[0], :res[1], :res[2]]
59
60
 
60
61
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MRzeroCore
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -16,8 +16,8 @@ Summary: Core functionality of MRzero
16
16
  Author-email: Jonathan Endres <jonathan.endres@uk-erlangen.de>
17
17
  Requires-Python: >=3.9
18
18
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
19
- Project-URL: Documentation, https://mrzero-core.readthedocs.io/
20
19
  Project-URL: Repository, https://github.com/MRsources/MRzero-Core
20
+ Project-URL: Documentation, https://mrzero-core.readthedocs.io/
21
21
  Project-URL: MRzero-Paper, https://arxiv.org/abs/2002.04265
22
22
 
23
23
  [![Documentation Status](https://readthedocs.org/projects/mrzero-core/badge/?version=latest)](https://mrzero-core.readthedocs.io/en/latest/?badge=latest)
@@ -1,10 +1,10 @@
1
- MRzeroCore-0.2.6.dist-info/METADATA,sha256=RH2lFxHy7ShAeFj-3j5EYcQxafh_MQeYQMHWD0IVlu8,3737
2
- MRzeroCore-0.2.6.dist-info/WHEEL,sha256=ZnSmVnashXVUiLCKmp20reANrPJdUjOt4GHgJoJkZ3E,96
3
- MRzeroCore-0.2.6.dist-info/license_files/LICENSE,sha256=rd_IFJ484uAluv8CigP2CpXg4l2GJLLKENqB6-RXPp4,35112
1
+ MRzeroCore-0.2.7.dist-info/METADATA,sha256=kRySHhgxUCvbYnZoEJWonfxeLXT6sZlWe7WN8wtqxPo,3737
2
+ MRzeroCore-0.2.7.dist-info/WHEEL,sha256=ZnSmVnashXVUiLCKmp20reANrPJdUjOt4GHgJoJkZ3E,96
3
+ MRzeroCore-0.2.7.dist-info/license_files/LICENSE,sha256=rd_IFJ484uAluv8CigP2CpXg4l2GJLLKENqB6-RXPp4,35112
4
4
  MRzeroCore/phantom/brainweb/brainweb_data.json,sha256=HETnXgLJndWbqeL4yfm8N-f9t0EwO-v6HzRA46f4VPU,1795
5
5
  MRzeroCore/phantom/brainweb/brainweb_data_sources.txt,sha256=Sh6NFLU1bhdaD0pp12D_Hc70cA_UC1s7KdHcuoGTKuA,1853
6
6
  MRzeroCore/phantom/brainweb/output/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- MRzeroCore/phantom/brainweb/__init__.py,sha256=FFUf4-vksejFs0riau3onT-mnJVJ3OEnq0kxp90Hc04,6574
7
+ MRzeroCore/phantom/brainweb/__init__.py,sha256=fDUvGQMWmpruMdYxnFzgcqdNcZ28BAr_AxNQYbOPZjs,6624
8
8
  MRzeroCore/phantom/custom_voxel_phantom.py,sha256=Pt5X1KjOgzNo6ebINyl4oT8drFTWp4NU3Mi3e5a0YVM,10413
9
9
  MRzeroCore/phantom/sim_data.py,sha256=sYN9kwn3KwpzXOJ2pe6iQPTR2exEqKYMBs5GrQzZi6A,7133
10
10
  MRzeroCore/phantom/voxel_grid_phantom.py,sha256=JftvRMP-qR1FYBId2GEkzGnPclX0Y4ExzKt1BnC2FD4,16654
@@ -31,5 +31,5 @@ MRzeroCore/simulation/isochromat_sim.py,sha256=tp1Jo0E3nKpOuN0weunlBzQQfqE0SF3Ms
31
31
  MRzeroCore/simulation/main_pass.py,sha256=c5-llCKrGIIEz6l-vcjA9jdbvHRCf53ye1zFeJliUw0,9298
32
32
  MRzeroCore/simulation/pre_pass.py,sha256=5wmXKxgFeGwA7yrqTkOjcWoFuGuRYEPzedRGqkx2Evg,5117
33
33
  MRzeroCore/__init__.py,sha256=A0PQPakvuFhf5gYtioSTiBbqV3CZzBvbwW6anzeUH4M,830
34
- MRzeroCore/_prepass.pyd,sha256=wOFmKXjE82S4WbfIIg2q7tRLC9Oi-e7ib6491CPYUMI,400896
35
- MRzeroCore-0.2.6.dist-info/RECORD,,
34
+ MRzeroCore/_prepass.pyd,sha256=tMkHLyPar08X9k3j1ZmmAPO08Vp7lTVAGRSMFhEc-R4,400896
35
+ MRzeroCore-0.2.7.dist-info/RECORD,,