Skip to content

Commit

Permalink
Merge branch '168-fix-documentation' into 'release'
Browse files Browse the repository at this point in the history
doc: delete parameters to remove sphinx warning

See merge request 3d/PandoraBox/pandora2d!135
  • Loading branch information
lecontm committed Jul 22, 2024
2 parents 0ec5968 + 445de8e commit 2a1e94e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions pandora2d/estimation/phase_cross_correlation.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ class PhaseCrossCorrelation(estimation.AbstractEstimation):
PhaseCrossCorrelation class allows to perform estimation
"""

_range_col = None
_range_row = None
_sample_factor = None

# Default configuration, do not change these values
_RANGE_COL = 5
_RANGE_ROW = 5
Expand Down
2 changes: 0 additions & 2 deletions pandora2d/refinement/dichotomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ class Dichotomy(refinement.AbstractRefinement):
"filter": And(str, lambda x: x in ["sinc", "bicubic"]),
}

_filter = None

def __init__(self, cfg: dict = None, _: list = None, __: int = 5) -> None:
"""
:param cfg: optional configuration, {}
Expand Down
1 change: 0 additions & 1 deletion pandora2d/refinement/optical_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class OpticalFlow(refinement.AbstractRefinement):
OpticalFLow class allows to perform the subpixel cost refinement step
"""

_iterations = None
_invalid_disp = None

_ITERATIONS = 4
Expand Down
1 change: 0 additions & 1 deletion pandora2d/refinement/refinement.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ class AbstractRefinement:

refinement_methods_avail: Dict = {}
_refinement_method = None
cfg = None
margins = NullMargins()

schema: Dict # This will raise an AttributeError if not override in subclasses
Expand Down

0 comments on commit 2a1e94e

Please sign in to comment.