7d0609ef91b94a38064d8374794d652e0cdc7c06,skimage/transform/hough_transform.py,,probabilistic_hough_line,#,226
Before Change
raise ValueError("The input image `image` must be 2D.")
if theta is None:
theta = np.pi / 2 - np.arange(180) / 180.0 * np.pi
return _prob_hough_line(image, threshold=threshold, line_length=line_length,
line_gap=line_gap, theta=theta, seed=seed)
After Change
raise ValueError("The input image `image` must be 2D.")
if theta is None:
theta = np.linspace(-np.pi / 2, np.pi / 2, 180, endpoint=False)
return _prob_hough_line(image, threshold=threshold, line_length=line_length,
line_gap=line_gap, theta=theta, seed=seed)
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 3
Instances
Project Name: scikit-image/scikit-image
Commit Name: 7d0609ef91b94a38064d8374794d652e0cdc7c06
Time: 2021-01-14
Author: madphysicist@users.noreply.github.com
File Name: skimage/transform/hough_transform.py
Class Name:
Method Name: probabilistic_hough_line
Project Name: librosa/librosa
Commit Name: b9a5f7d2bf056e397ee527425c41d214265ca59c
Time: 2013-11-14
Author: brm2132@columbia.edu
File Name: librosa/display.py
Class Name:
Method Name: specshow
Project Name: enthought/chaco
Commit Name: ba53776695cf883f6c9a5e384dcc7f19c7e6ccb6
Time: 2012-11-08
Author: warren.weckesser@gmail.com
File Name: examples/demo/data_labels.py
Class Name: PlotExample
Method Name: _plot_default
Project Name: librosa/librosa
Commit Name: 80a3aaabd4f7145193efa02704b020654f406399
Time: 2015-02-14
Author: brian.mcfee@nyu.edu
File Name: librosa/core/time_frequency.py
Class Name:
Method Name: mel_frequencies