nabu 2025.1.0rc1__py3-none-any.whl → 2025.1.0rc3__py3-none-any.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.
nabu/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "2025.1.0-rc1"
1
+ __version__ = "2025.1.0-rc3"
2
2
  __nabu_modules__ = [
3
3
  "app",
4
4
  "cuda",
nabu/app/cast_volume.py CHANGED
@@ -19,7 +19,6 @@ from nabu.io.cast_volume import (
19
19
  RESCALE_MIN_PERCENTILE,
20
20
  cast_volume,
21
21
  get_default_output_volume,
22
- remove_volume,
23
22
  )
24
23
  from nabu.pipeline.params import files_formats
25
24
  from nabu.utils import convert_str_to_tuple
@@ -277,10 +276,8 @@ def main(argv=None):
277
276
  data_max=data_max,
278
277
  rescale_min_percentile=rescale_min_percentile,
279
278
  rescale_max_percentile=rescale_max_percentile,
279
+ remove_input_volume=options.remove,
280
280
  )
281
- if options.remove:
282
- _logger.info(f"Removing {input_volume.data_url.file_path()}")
283
- remove_volume(input_volume, check=True)
284
281
  exit(0)
285
282
 
286
283
 
nabu/app/cli_configs.py CHANGED
@@ -654,6 +654,12 @@ ReduceDarkFlatConfig = {
654
654
 
655
655
  PCAFlatsConfig = {
656
656
  "datasets": {"help": "datasets to be stitched together", "default": tuple(), "nargs": "+", "mandatory": True},
657
+ "nsigma": {
658
+ "help": "Paramter to select PCA components. Default is 3. Higher nsigma, less components.",
659
+ "default": 3.0,
660
+ "type": float,
661
+ "required": False,
662
+ },
657
663
  "flat-method": {
658
664
  "help": f"Define the method to be used for computing flats. Valid methods are {reduce_methods}",
659
665
  "default": ReduceMethod.MEDIAN,
nabu/app/pcaflats.py CHANGED
@@ -42,10 +42,12 @@ def get_flats_darks_from_h5(filename):
42
42
  return flats, darks, "entry0000" # TODO this will be problematic on the reconstruction side
43
43
 
44
44
 
45
- def pcaflats_decomposition(flats, darks, pcaflats_filename="PCAFlats.h5", overwrite=False, entry="entry0000"):
45
+ def pcaflats_decomposition(
46
+ flats, darks, pcaflats_filename="PCAFlats.h5", overwrite=False, entry="entry0000", nsigma=3.0
47
+ ):
46
48
  """Compute the PCS decomposition of a series of flats and darks, possibly taken from various scans."""
47
49
  try:
48
- decomposer = PCAFlatsDecomposer(flats, darks)
50
+ decomposer = PCAFlatsDecomposer(flats, darks, nsigma=nsigma)
49
51
  decomposer.save_decomposition(pcaflats_filename, overwrite=overwrite, entry=entry)
50
52
  success = True
51
53
  except:
@@ -74,7 +76,11 @@ def main(argv=None):
74
76
  )
75
77
 
76
78
  # Get "where to write".
77
- abspath = os.path.abspath(args["output_filename"])
79
+ if args["output_filename"] is None:
80
+ abspath = os.path.abspath("./PCAFlats.hdf5")
81
+ else:
82
+ abspath = os.path.abspath(args["output_filename"])
83
+
78
84
  pcaflats_dir = os.path.dirname(abspath)
79
85
  pcaflats_filename = os.path.basename(abspath)
80
86
 
@@ -107,7 +113,7 @@ def main(argv=None):
107
113
 
108
114
  exit(
109
115
  pcaflats_decomposition(
110
- flats, darks, pcaflats_filename=args["output_filename"], overwrite=args["overwrite"], entry=entry
116
+ flats, darks, pcaflats_filename=output_path, overwrite=args["overwrite"], entry=entry, nsigma=args["nsigma"]
111
117
  )
112
118
  )
113
119
 
nabu/cuda/src/backproj.cu CHANGED
@@ -132,10 +132,10 @@ __global__ void backproj(
132
132
  sum3 += tex2D(tex_projections, h3 + 0.5f, proj + 0.5f);
133
133
  sum4 += tex2D(tex_projections, h4 + 0.5f, proj + 0.5f);
134
134
  #else
135
- sum1 += linear_interpolation(d_sino, num_bins, h1, proj);
136
- sum2 += linear_interpolation(d_sino, num_bins, h2, proj);
137
- sum3 += linear_interpolation(d_sino, num_bins, h3, proj);
138
- sum4 += linear_interpolation(d_sino, num_bins, h4, proj);
135
+ if (h1 >= 0 && h1 < num_bins) sum1 += linear_interpolation(d_sino, num_bins, h1, proj);
136
+ if (h2 >= 0 && h2 < num_bins) sum2 += linear_interpolation(d_sino, num_bins, h2, proj);
137
+ if (h3 >= 0 && h3 < num_bins) sum3 += linear_interpolation(d_sino, num_bins, h3, proj);
138
+ if (h4 >= 0 && h4 < num_bins) sum4 += linear_interpolation(d_sino, num_bins, h4, proj);
139
139
  #endif
140
140
  }
141
141
 
nabu/io/cast_volume.py CHANGED
@@ -139,6 +139,7 @@ def cast_volume(
139
139
  rescale_max_percentile=RESCALE_MAX_PERCENTILE,
140
140
  save=True,
141
141
  store=False,
142
+ remove_input_volume: bool = False,
142
143
  ) -> VolumeBase:
143
144
  """
144
145
  cast givent volume to output_volume of 'output_data_type' type
@@ -248,6 +249,14 @@ def cast_volume(
248
249
  except (OSError, KeyError):
249
250
  # if no metadata provided and or saved in disk or if some key are missing
250
251
  pass
252
+
253
+ if save and output_volume.metadata is not None:
254
+ output_volume.save_metadata()
255
+
256
+ if remove_input_volume:
257
+ _logger.info(f"Removing {input_volume.data_url.file_path()}")
258
+ remove_volume(input_volume, check=True)
259
+
251
260
  return output_volume
252
261
 
253
262
 
@@ -116,10 +116,10 @@ kernel void backproj(
116
116
  sum3 += read_imagef(d_sino, sampler, (float2) (h3 +0.5f,proj +0.5f)).x;
117
117
  sum4 += read_imagef(d_sino, sampler, (float2) (h4 +0.5f,proj +0.5f)).x;
118
118
  #else
119
- sum1 += linear_interpolation(d_sino, num_bins, h1, proj);
120
- sum2 += linear_interpolation(d_sino, num_bins, h2, proj);
121
- sum3 += linear_interpolation(d_sino, num_bins, h3, proj);
122
- sum4 += linear_interpolation(d_sino, num_bins, h4, proj);
119
+ if (h1 >= 0 && h1 < num_bins) sum1 += linear_interpolation(d_sino, num_bins, h1, proj);
120
+ if (h2 >= 0 && h2 < num_bins) sum2 += linear_interpolation(d_sino, num_bins, h2, proj);
121
+ if (h3 >= 0 && h3 < num_bins) sum3 += linear_interpolation(d_sino, num_bins, h3, proj);
122
+ if (h4 >= 0 && h4 < num_bins) sum4 += linear_interpolation(d_sino, num_bins, h4, proj);
123
123
  #endif
124
124
  }
125
125
 
@@ -16,9 +16,9 @@ nabu_config = {
16
16
  "type": "advanced",
17
17
  },
18
18
  "nexus_version": {
19
- "default": "1.4",
20
- "help": "Nexus version to use when browsing the HDF5 dataset. Default is 1.0.",
21
- "validator": float_validator,
19
+ "default": "",
20
+ "help": "Specify a Nexus version to use when browsing the HDF5 dataset.",
21
+ "validator": optional_float_validator,
22
22
  "type": "advanced",
23
23
  },
24
24
  "darks_flats_dir": {
@@ -4,7 +4,7 @@ import numpy as np
4
4
  from .get_double_flatfield import get_double_flatfield
5
5
  from silx.io import get_data
6
6
  from silx.io.url import DataUrl
7
- from ...utils import copy_dict_items, compare_dicts
7
+ from ...utils import copy_dict_items, compare_dicts, deprecation_warning
8
8
  from ...io.utils import hdf5_entry_exists, get_h5_value
9
9
  from ...io.reader import import_h5_to_dict
10
10
  from ...resources.utils import extract_parameters, get_values_from_file
@@ -86,8 +86,6 @@ class ProcessConfig(ProcessConfigBase):
86
86
  elif self.dataset_info.kind == "edf":
87
87
  self.dataset_info.flats = self.dataset_info.get_reduced_flats()
88
88
  self.dataset_info.darks = self.dataset_info.get_reduced_darks()
89
- else:
90
- raise TypeError("Unknown dataset format")
91
89
  self.rec_params = self.nabu_config["reconstruction"]
92
90
 
93
91
  subsampling_factor, subsampling_start = self.nabu_config["dataset"]["projections_subsampling"]
@@ -476,6 +474,14 @@ class ProcessConfig(ProcessConfigBase):
476
474
  #
477
475
  # Double flat field
478
476
  #
477
+ # ---- COMPAT ----
478
+ if nabu_config["preproc"].get("double_flatfield_enabled", False):
479
+ deprecation_warning(
480
+ "'double_flatfield_enabled' has been renamed to 'double_flatfield'. Please update your configuration file"
481
+ )
482
+ nabu_config["preproc"]["double_flatfield"] = True
483
+
484
+ # -------------
479
485
  if nabu_config["preproc"]["double_flatfield"]:
480
486
  tasks.append("double_flatfield")
481
487
  options["double_flatfield"] = {
@@ -486,7 +486,7 @@ class FullFieldReconstructor:
486
486
  {
487
487
  "sub_region": (
488
488
  (0, self.n_angles),
489
- (curr_z_min - margin_up, curr_z_max + margin_down),
489
+ (int(curr_z_min - margin_up), int(curr_z_max + margin_down)),
490
490
  (0, self.chunk_shape[-1]),
491
491
  ),
492
492
  "margin": ((margin_up, margin_down), (0, 0)),
nabu/preproc/ccd.py CHANGED
@@ -167,7 +167,7 @@ class CCDFilter:
167
167
  med = self.median_filter(dimg, self.kernel_size)
168
168
  err = dimg - med
169
169
  ds0 = err.std()
170
- msk = err > ds0 * nsigma
170
+ msk = err > (ds0 * nsigma)
171
171
  gromsk = binary_dilation(msk)
172
172
 
173
173
  output[i] = np.where(gromsk, med, radios[i])
nabu/preproc/flatfield.py CHANGED
@@ -669,7 +669,7 @@ class PCAFlatsDecomposer:
669
669
  def _ccdfilter_and_log(self, flats: np.ndarray):
670
670
  """Dezinger (substract dark, apply median filter) and takes log of the flat stack"""
671
671
 
672
- self.ccdfilter.dezinger_correction(flats, self.dark, nsigma=self.nsigma)
672
+ self.ccdfilter.dezinger_correction(flats, self.dark)
673
673
 
674
674
  with ThreadPool(self.n_threads) as tp:
675
675
  for i, frame in enumerate(tp.map(np.log, flats)):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nabu
3
- Version: 2025.1.0rc1
3
+ Version: 2025.1.0rc3
4
4
  Summary: Nabu - Tomography software
5
5
  Author-email: Pierre Paleo <pierre.paleo@esrf.fr>, Henri Payno <henri.payno@esrf.fr>, Alessandro Mirone <mirone@esrf.fr>, Jérôme Lesaint <jerome.lesaint@esrf.fr>
6
6
  Maintainer-email: Pierre Paleo <pierre.paleo@esrf.fr>
@@ -32,7 +32,7 @@ Requires-Dist: numpy>1.9.0
32
32
  Requires-Dist: scipy
33
33
  Requires-Dist: h5py>=3.0
34
34
  Requires-Dist: silx>=0.15.0
35
- Requires-Dist: tomoscan>=2.2.0a5
35
+ Requires-Dist: tomoscan>=2.2.2
36
36
  Requires-Dist: psutil
37
37
  Requires-Dist: pytest
38
38
  Requires-Dist: tifffile
@@ -1,15 +1,15 @@
1
1
  doc/conf.py,sha256=3xtCarCHrXPr50GbeRDuH-o3Jzojw7mpr7vpGfZPLAE,3787
2
2
  doc/create_conf_doc.py,sha256=IVOdP70KvbW9WS_UQu3Iyd0YfS60E2fJ5IDtQ_s4cDw,1143
3
3
  doc/get_mathjax.py,sha256=VIvKRCdDuF2VoY8JD3mSey9XX13AZMmwTJBHdt1tUs4,1012
4
- nabu/__init__.py,sha256=OFYai1bEoZ3LQEXRpCl_wc9LDqZnA7uga7Scl_CY5As,274
4
+ nabu/__init__.py,sha256=weQJf5hGEi-BzNCLAkn3BNQ71AJRC7nINDlNmkELmCc,274
5
5
  nabu/tests.py,sha256=hOJD1GGxn_KE1bWMoxfjnjzI7d9JBUpoc9B2_tVFiEk,1370
6
6
  nabu/testutils.py,sha256=eL81DWgYwu2CCFmDMsFs4QjfI7w9RPXFuPU5gvYF6No,8631
7
7
  nabu/utils.py,sha256=tJI64BNXMhD6W293fwwcgf9bvTalYG_5AwVGYkgi6tU,27179
8
8
  nabu/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  nabu/app/bootstrap.py,sha256=3yLZJmrmQBmPJMBtE2ih2cspfqOy5T_UN2U8B3i_hkI,3266
10
10
  nabu/app/bootstrap_stitching.py,sha256=wCKgugOQr6-lPMWEn4AYQeric0tCuRc9O-RnpBuTWAA,2230
11
- nabu/app/cast_volume.py,sha256=Z6DeEVtR8QtfDw2FtWuvA58N8ELtQdFwBNjgKjfKzG0,11570
12
- nabu/app/cli_configs.py,sha256=D3KaMVnZ9eLnSzgSJmdNWhxF0GESbmXMYiNeOBzu1vY,24794
11
+ nabu/app/cast_volume.py,sha256=OufJDx_ZJ-ZbhbvIPHxRox4jtL6PfWcL148g77BWCDU,11454
12
+ nabu/app/cli_configs.py,sha256=paHLX7ZDmTKhiXF9ZDzo18ld7H1HoOpaO8YnHPAqwhc,24991
13
13
  nabu/app/compare_volumes.py,sha256=3qm3QsxV-D_myLAkhM_LlX0DTrDmhzfhrnNak-1538Q,3337
14
14
  nabu/app/composite_cor.py,sha256=-qAbMJCFa0NmSb1hO2G1QvdW4fwEXSMBBbSFCnQXmCc,5068
15
15
  nabu/app/create_distortion_map_from_poly.py,sha256=aa-vE-ndB9PsuHwdHUW7-8jGz4BxvjC-bQDWHlPV0Kg,6193
@@ -22,7 +22,7 @@ nabu/app/histogram.py,sha256=gyLXKwFrU5WPQMkM1k8OdpIXSwGEEKC-f8RcTHKOho4,7930
22
22
  nabu/app/multicor.py,sha256=FjmJurruRmrwXF7v56KlTszQGIGsqft1_P7AKR9feY0,4726
23
23
  nabu/app/nx_z_splitter.py,sha256=p54jR-PAAw-AkGolM9fZE5lM2vbNLspCNCy5zBnJNP4,4976
24
24
  nabu/app/parse_reconstruction_log.py,sha256=msOtA3xaqLZpISRqS0F9_SrkvbdvKNPE99tdWhPrkY0,4745
25
- nabu/app/pcaflats.py,sha256=R1udJSdJwfGwBL557HoPH6dVzka7ULMFI0JHUZfR7ds,4018
25
+ nabu/app/pcaflats.py,sha256=mzZzRvZKqVJAbzj75gYrlDqDzP1fpy_H5QCdjD-ivCw,4170
26
26
  nabu/app/prepare_weights_double.py,sha256=jy78aP1UNKqSk82Wy6ZCkKjpYXxaGmlIj_vjB4SxS8A,5443
27
27
  nabu/app/reconstruct.py,sha256=g_pkrs11QFuclgxKLih1JCRLhyM-Ln8ACXlMspA2phc,5681
28
28
  nabu/app/reconstruct_helical.py,sha256=cMjcc8IUGUtqAOfObsznLkcGm6Ev4ZoE_vJa--fDSNQ,4257
@@ -43,7 +43,7 @@ nabu/cuda/padding.py,sha256=x6lk6_SoHzruHbQZCdN-FTgE4JlN3hyrtm3k6wwANZM,230
43
43
  nabu/cuda/processing.py,sha256=nefntcARa917yirZqe5c90yPXua_sGzVUtg6Fzc2Vu8,2655
44
44
  nabu/cuda/utils.py,sha256=C-0-X3mWXgUzHrEKqX0hXpir1M5M6wx1Im-HdEVIYBc,9628
45
45
  nabu/cuda/src/ElementOp.cu,sha256=PhebQQgeF0V7MDNzeYiRXIeNq3tE2PsBx00XhanBmvg,7188
46
- nabu/cuda/src/backproj.cu,sha256=XPKiW4s72Rk3Uj_T96E6tPRLwna0Fe01087sFg1VmUw,6077
46
+ nabu/cuda/src/backproj.cu,sha256=EsJtb-HKK6hNnTzIYxK8B8YkgvuKJd2LC_seE-OzSbI,6197
47
47
  nabu/cuda/src/backproj_polar.cu,sha256=sZbtw3KMfN69XyubJQSSLC87d5IPOyzbPBoRSNC1Cek,1851
48
48
  nabu/cuda/src/boundary.h,sha256=eQhfKZm-o0kj88BvkUwzqfqxYfRde4Tuj8AhQvRK16Y,2898
49
49
  nabu/cuda/src/cone.cu,sha256=BcW6eLhYVnJZ9WgyD8F35-fGtVeggFv01ZxuWkmCZ_g,3533
@@ -81,7 +81,7 @@ nabu/estimation/tests/test_motion_estimation.py,sha256=WKUpkVand8VszoBIvsaEnhKqv
81
81
  nabu/estimation/tests/test_tilt.py,sha256=KIgTJqQvNfWndm8f3aRSdznWFl3AdQhYXiZPKLseYOs,1672
82
82
  nabu/estimation/tests/test_translation.py,sha256=RkOnCYgk9DZGKlIka1snqTv4wbIz_nG7-EHAxnBHsJU,2999
83
83
  nabu/io/__init__.py,sha256=AbQgj4-fCCHOKynO_PyAR9ejnFSuWKgroxxhxWVpjyQ,120
84
- nabu/io/cast_volume.py,sha256=BmQW0Z8dMEBN-1_DsGYn9HOL17cj0fcHq9tbt7Y7I4w,21221
84
+ nabu/io/cast_volume.py,sha256=eJuiKuZILD3xClUtYOjCqmwnbW12gwg-gJTzj606u_Y,21499
85
85
  nabu/io/detector_distortion.py,sha256=qO1Z6gejkBrixThvU_sLwH3UfLAe8aAO63YQ8z7PH78,11750
86
86
  nabu/io/reader.py,sha256=M6kLLzDe-OLh4veNr_F1Nn4TT6E6RfBpWPxMxrsnL94,41324
87
87
  nabu/io/reader_helical.py,sha256=q3LOmu6F_4Uxi3rZZWJ-rsix2Lgu_saXXdiJF8TLi24,4533
@@ -121,7 +121,7 @@ nabu/opencl/padding.py,sha256=CjeifU4xcUhgD_OILoIC4vPDQGVyVRjJXsMb8gxPL_0,238
121
121
  nabu/opencl/processing.py,sha256=cKq_VLtLBPijp2pl7Zgc4mrVsYLUA27x26jPo484Kg4,2416
122
122
  nabu/opencl/utils.py,sha256=OPqSJAZ82EwRmqu_H5_S59Y9a3CrqQhEQomWQj-EuSU,10239
123
123
  nabu/opencl/src/ElementOp.cl,sha256=RMScHhHYDa6xXC4NLJrC1KpDRq-aMZG1lwq3O9pStiY,1258
124
- nabu/opencl/src/backproj.cl,sha256=PVyCmlw2Jj_4tgdmY1NGFxg0WMfrhxIZ1W9ShcpoghI,5350
124
+ nabu/opencl/src/backproj.cl,sha256=BmikalwFHhqO8xSWGq_txnkrkeAja5SlVcxhFxH2jIw,5470
125
125
  nabu/opencl/src/fftshift.cl,sha256=xq-HNRWhuXqTVD_nD-38_41HPYZPCXAHDTpxsGURSTY,1726
126
126
  nabu/opencl/src/halftomo.cl,sha256=IZ2VJwWLpfaNpzM8Ief13zsqDcq68lyFqG55qYWoHNE,1386
127
127
  nabu/opencl/src/padding.cl,sha256=0e4wDB3wOVFIFw0f7VTfD45PK6HzDhooCgK2DZqiUfA,460
@@ -146,9 +146,9 @@ nabu/pipeline/fullfield/chunked_cuda.py,sha256=US5prrhNjsx3QVHkY5duQp8uFcGdgYEPz
146
146
  nabu/pipeline/fullfield/computations.py,sha256=uqf7LvuDPm7n51BpP8eb8vTewDgRFyzSDP249g3FWBE,10098
147
147
  nabu/pipeline/fullfield/dataset_validator.py,sha256=HK_bmlII9pc59PXCgKJOyLv7Xu3DYv_jbH3RmQSgzvI,2933
148
148
  nabu/pipeline/fullfield/get_double_flatfield.py,sha256=uYFDAii6Nw4RCUQO_6Id6tXLdmtVbj_pxAHQWennSeE,5411
149
- nabu/pipeline/fullfield/nabu_config.py,sha256=0uZS02rpc1Exy_pvG3nysSy9ZZCM56MYMQMJhA621nY,33146
150
- nabu/pipeline/fullfield/processconfig.py,sha256=gGnRogl6dHu9kGf4fv2QleLJ2l5a3jHz69oKB05_A_Q,38081
151
- nabu/pipeline/fullfield/reconstruction.py,sha256=nyMvkhpn_Y8aOwSHW3z-Z4XsDFTp8c3xNKka06NLRSA,37996
149
+ nabu/pipeline/fullfield/nabu_config.py,sha256=F1E4KwHTfw6tynBnBjvr1F6tflIFsvDp8Pyop7xNmGg,33146
150
+ nabu/pipeline/fullfield/processconfig.py,sha256=skNF8z7bV0-dw8xJUUNsrR2hSnmBYG1fnwIpyIS2Jfs,38393
151
+ nabu/pipeline/fullfield/reconstruction.py,sha256=cljRyxD8rvZ5qDws_5AwChi7P-5T_0SSXsGkYUGOVb8,38006
152
152
  nabu/pipeline/helical/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
153
  nabu/pipeline/helical/dataset_validator.py,sha256=HdKjUSj3PIpJb1dKSzJg8s4zXbAnMPWaPn8kvp_xQEs,657
154
154
  nabu/pipeline/helical/fbp.py,sha256=MKn587bO5Lj7yFu-Sll2RkOIY5r3rC-fmC10SzFU5i0,5841
@@ -168,7 +168,7 @@ nabu/pipeline/tests/test_estimators.py,sha256=fYSc5ZA9j7e--AC9D4es7cSQ8-e0FsYq4I
168
168
  nabu/pipeline/xrdct/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
169
  nabu/preproc/__init__.py,sha256=dKxvZvWZXjKS3iPRaSXiUeM2dNGIOyTlirq5pdAWY0Y,284
170
170
  nabu/preproc/alignment.py,sha256=PUw4YdpCmY6FVkUaosaT6LxFoNgPv7XHFy11Fhz1_6w,19
171
- nabu/preproc/ccd.py,sha256=QEe6c0bynAziE-r1obWLNRZ1i6xqpwlitT0eMN_r678,6977
171
+ nabu/preproc/ccd.py,sha256=LELLZcoJaae9V6zW2lXehyP54-xWuvvQ3_0OIxWrpos,6979
172
172
  nabu/preproc/ccd_cuda.py,sha256=IckZjk0fznVgX6VlBWZEURar_RqvMTN-g87Aj6Y8rJk,6093
173
173
  nabu/preproc/ctf.py,sha256=LEZT5fawEIIT3Qx0V0910RSv8aPLYuuHDrMzTYqyd5o,14981
174
174
  nabu/preproc/ctf_cuda.py,sha256=j6s8JOYQ7IVuu5HHAoGJhbTRW2zi7t5d6YrcAxIU0aQ,5268
@@ -176,7 +176,7 @@ nabu/preproc/distortion.py,sha256=XksQNrrSBfZS7mlvIdVEMZjw839ppQWP6AitTLcgfb0,33
176
176
  nabu/preproc/double_flatfield.py,sha256=WcYsNuotgQgm_KaioNa3OVI8rGfk3Wrn_YCW5v4mo4w,7895
177
177
  nabu/preproc/double_flatfield_cuda.py,sha256=lqgvZyeujdWJ5nF_GNRMQx7punjqA3SZ8K3IIyL3HDY,6197
178
178
  nabu/preproc/double_flatfield_variable_region.py,sha256=yiyvfGLFv3b93aKzHw84EQszPwQHfBv0PqtlQ8khvm4,2258
179
- nabu/preproc/flatfield.py,sha256=pjXDcICtRtErj3_s3eBMkytqj0JL2hwjnwTKoDbZFLk,30572
179
+ nabu/preproc/flatfield.py,sha256=Lgh_2MsszLshUotH-Y1RJj0qtplnASy81tuanuxPrdc,30552
180
180
  nabu/preproc/flatfield_cuda.py,sha256=Iiqv7bHa870DZOH68L19xiN1kG9I9JXuckFfA3khGtY,5482
181
181
  nabu/preproc/flatfield_variable_region.py,sha256=RVmSW515vgkHagjqotPNPUe97oQooHgdqkBn6hPH_2Q,3142
182
182
  nabu/preproc/phase.py,sha256=nRFhnHN_Bmmu5AHDcoO-Kt59sXYFSQaTljHZ5dlZiA0,13857
@@ -317,9 +317,9 @@ nabu/thirdparty/pore3d_deringer_munch.py,sha256=o4bisnFc-wMjuohWBT8wgWmfNehPQGtC
317
317
  nabu/thirdparty/tomocupy_remove_stripe.py,sha256=Khe4zFf0kRzu65Yxnvq58gt1ljOztqJGdMDhVAiM7lM,24363
318
318
  nabu/thirdparty/tomopy_phase.py,sha256=hK4oPpkogLOhv23XzzEXQY2u3r8fJvASY_bINVs6ERE,8634
319
319
  nabu/thirdparty/tomwer_load_flats_darks.py,sha256=ZNoVAinUb_wGYbfvs_4BVnWsjsQmNxSvCh1bWhR2WWg,5611
320
- nabu-2025.1.0rc1.dist-info/licenses/LICENSE,sha256=1eAIPSnEsnSFNUODnLtNtQTs76exG3ZxJ1DJR6zoUBA,1066
321
- nabu-2025.1.0rc1.dist-info/METADATA,sha256=cm6lBb8UyHChthz3HLCNB8AojOzCX9ciK54SWWd2fGc,4276
322
- nabu-2025.1.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
323
- nabu-2025.1.0rc1.dist-info/entry_points.txt,sha256=YxzCY5CNQ1XHrIGbRKg-BgC1Jy7QaCITdITpyhhxpZU,1338
324
- nabu-2025.1.0rc1.dist-info/top_level.txt,sha256=fsm_N3eXLRZk2QXF9OSKPNDPFXOz8FAQjHh5avT3dok,9
325
- nabu-2025.1.0rc1.dist-info/RECORD,,
320
+ nabu-2025.1.0rc3.dist-info/licenses/LICENSE,sha256=1eAIPSnEsnSFNUODnLtNtQTs76exG3ZxJ1DJR6zoUBA,1066
321
+ nabu-2025.1.0rc3.dist-info/METADATA,sha256=YmXboCie2GZY8Om4wco2-8--nuhCJnhMq99FXIYKSfE,4274
322
+ nabu-2025.1.0rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
323
+ nabu-2025.1.0rc3.dist-info/entry_points.txt,sha256=YxzCY5CNQ1XHrIGbRKg-BgC1Jy7QaCITdITpyhhxpZU,1338
324
+ nabu-2025.1.0rc3.dist-info/top_level.txt,sha256=fsm_N3eXLRZk2QXF9OSKPNDPFXOz8FAQjHh5avT3dok,9
325
+ nabu-2025.1.0rc3.dist-info/RECORD,,