Skip to content

Commit bfe11b6

Browse files
committed
minor doco + formatting changes
1 parent 6a18937 commit bfe11b6

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

machinevisiontoolbox/ImageCore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1831,7 +1831,7 @@ def plane(self, planes: int | Sequence[int] | str):
18311831
>>> red_blue
18321832
18331833
.. note::
1834-
1834+
18351835
- This can also be performed using the overloaded ``__getitem__``
18361836
operator.
18371837
- To select more than one plane, use either a sequence of integers or a string

machinevisiontoolbox/ImageFiducials.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def fiducial(self, dict="4x4_1000", K=None, side=None):
111111
:references:
112112
- Robotics, Vision & Control for Python, Section 13.6.1, P. Corke, Springer 2023.
113113
114-
:seealso: :class:`Fiducial`
114+
:seealso: :class:`Fiducial` :class:`ArUcoBoard`
115115
"""
116116

117117
dictionary = _fiducial_dict(dict)

machinevisiontoolbox/ImagePointFeatures.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1635,7 +1635,6 @@ def plot_correspondence(self, *arg, offset=(0, 0), **kwargs):
16351635
plt.draw()
16361636

16371637
def estimate(self, func, method="ransac", **args):
1638-
16391638
solution = func(self.p1, self.p2, method=method, **args)
16401639
self._inliers = solution[-1]
16411640

@@ -2244,7 +2243,6 @@ def ComboFeature(self, detector, descriptor, det_opts, des_opts):
22442243

22452244
class _Harris_create:
22462245
def __init__(self, nfeat=250, k=0.04, scale=7, hw=2, patch=5):
2247-
22482246
self.nfeat = nfeat
22492247
self.k = k
22502248
self.hw = hw
@@ -2289,7 +2287,6 @@ def detectAndCompute(self, image, mask=None):
22892287

22902288
# ------------------------------------------------------------------------- #
22912289
if __name__ == "__main__":
2292-
22932290
# step 1: familiarisation with open cv's sift
22942291

22952292
# im = cv.imread('images/test/longquechen-moon.png')

0 commit comments

Comments
 (0)