Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
seo young Joung
opencv
Commits
04f3c19b
Commit
04f3c19b
authored
12 years ago
by
Andrey Kamaev
Committed by
OpenCV Buildbot
12 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #263 from taka-no-me:hough_explicit_double
parents
b7881111
16687a26
4.x
2.4
3.4
5.x
master
next
4.5.5
4.5.4
4.5.3
4.5.3-openvino
4.5.3-openvino-2021.4.2
4.5.3-openvino-2021.4.1
4.5.2
4.5.2-openvino
4.5.1
4.5.1-openvino
4.5.0
4.5.0-openvino
4.4.0
4.4.0-openvino
4.3.0
4.3.0-openvino
4.3.0-openvino-2020.3.0
4.2.0
4.2.0-openvino
4.1.2
4.1.2-openvino
4.1.1
4.1.1-openvino
4.1.0
4.1.0-openvino
4.0.1
4.0.1-openvino
4.0.0
4.0.0-rc
4.0.0-openvino
4.0.0-beta
4.0.0-alpha
3.4.17
3.4.16
3.4.15
3.4.14
3.4.13
3.4.12
3.4.11
3.4.10
3.4.9
3.4.8
3.4.7
3.4.6
3.4.5
3.4.4
3.4.3
3.4.3-openvino
3.4.2
3.4.2-openvino
3.4.1
3.4.1-cvsdk
3.4.0
3.4.0-rc
3.3.1
3.3.1-cvsdk
3.3.0
3.3.0-rc
3.3.0-cvsdk
3.2.0
3.2.0-rc
3.1.0
3.0.0
3.0.0-rc1
3.0.0-beta
3.0.0-alpha
3.0-ocl-tp2
3.0-ocl-tech-preview
2.4.13.7
2.4.13.6
2.4.13.5
2.4.13.4
2.4.13.3
2.4.13.2
2.4.13.1
2.4.13
2.4.12.3
2.4.12.2
2.4.12.1
2.4.12
2.4.11
2.4.10.4
2.4.10.3
2.4.10.2
2.4.10.1
2.4.10
2.4.9.1
2.4.9
2.4.8.3
2.4.8.2
2.4.8.1
2.4.8
2.4.7.2
2.4.7.1
2.4.7
2.4.7-rc1
2.4.6.2
2.4.6.2r3
2.4.6.2r2
2.4.6.2-rc1
2.4.6.1
2.4.6
2.4.5
2.4.4
2.4.4-beta
2.4.3.2
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/imgproc/src/hough.cpp
+2
-2
modules/imgproc/src/hough.cpp
with
2 additions
and
2 deletions
+2
-2
modules/imgproc/src/hough.cpp
View file @
04f3c19b
...
...
@@ -118,8 +118,8 @@ icvHoughLinesStandard( const CvMat* img, float rho, float theta,
float
ang
=
0
;
for
(
int
n
=
0
;
n
<
numangle
;
ang
+=
theta
,
n
++
)
{
tabSin
[
n
]
=
(
float
)(
sin
(
ang
)
*
irho
);
tabCos
[
n
]
=
(
float
)(
cos
(
ang
)
*
irho
);
tabSin
[
n
]
=
(
float
)(
sin
(
(
double
)
ang
)
*
irho
);
tabCos
[
n
]
=
(
float
)(
cos
(
(
double
)
ang
)
*
irho
);
}
// stage 1. fill accumulator
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help