Unverified Commit 096cfefd authored by Peterson, Peter's avatar Peterson, Peter Committed by GitHub
Browse files

Merge pull request #278 from ornlneutronimaging/panel_0.14.2

Remove old facade in favor of standard class
parents 47827d54 d3539407
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -6,9 +6,6 @@ imars3d.ui.widgets package
   :undoc-members:
   :show-inheritance:

.. autoclass:: imars3d.ui.widgets.Tqdm
   :members:


Submodules
----------
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ dependencies:
  - tomopy
  - dxchange
  - jsonschema
  - panel
  - panel>=0.14.2
  - param
  - pyvista
  - pydocstyle
+2 −2
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ def denoise_by_bilateral(
        Standard deviation for range distance.
    max_workers:
        The number of cores to use for parallel processing, default is 0, which means using all available cores.
    tqdm_class: imars3d.ui.widgets.TqdmType
    tqdm_class: panel.widgets.Tqdm
        Class to be used for rendering tqdm progress

    Returns
@@ -218,7 +218,7 @@ class denoise(param.ParameterizedFunction):
        The sigma of the spatial space, only valid for 'bilateral' method.
    max_workers: int = 0
        The number of cores to use for parallel processing, default is 0, which means using all available cores.
    tqdm_class: imars3d.ui.widgets.TqdmType
    tqdm_class: panel.widgets.Tqdm
        Class to be used for rendering tqdm progress

    Returns
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ class intensity_fluctuation_correction(param.ParameterizedFunction):
        detection via canny edge detection from skimage.
    max_workers: int = 0
        The number of cores to use for parallel processing, default is 0, which means using all available cores.
    tqdm_class: imars3d.ui.widgets.TqdmType
    tqdm_class: panel.widgets.Tqdm
        Class to be used for rendering tqdm progress

    Returns
+1 −1
Original line number Diff line number Diff line
@@ -171,7 +171,7 @@ class remove_ring_artifact(param.ParameterizedFunction):
        Multiplicative correction factor is capped within given range.
    max_workers: int = 0
        Number of cores to use for parallel processing.
    tqdm_class: imars3d.ui.widgets.TqdmType
    tqdm_class: panel.widgets.Tqdm
        Class to be used for rendering tqdm progress

    Returns
Loading