mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-08 06:11:19 +08:00
STY: Remove linewidth parameter to simplify API
This commit is contained in:
@@ -18,8 +18,6 @@ class LineProfile(PlotPlugin):
|
||||
|
||||
Parameters
|
||||
----------
|
||||
linewidth : float
|
||||
Line width for interpolation. Wider lines average over more pixels.
|
||||
maxdist : float
|
||||
Maximum pixel distance allowed when selecting end point of scan line.
|
||||
epsilon : float
|
||||
@@ -34,7 +32,7 @@ class LineProfile(PlotPlugin):
|
||||
"""
|
||||
name = 'Line Profile'
|
||||
|
||||
def __init__(self, linewidth=1, maxdist=10, epsilon='deprecated',
|
||||
def __init__(self, maxdist=10, epsilon='deprecated',
|
||||
limits='image', **kwargs):
|
||||
super(LineProfile, self).__init__(**kwargs)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user