Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
CGoGN
CGoGN
Commits
0edf4e04
Commit
0edf4e04
authored
Mar 29, 2012
by
Pierre Kraemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
suppress warning (omp parallel for in MC/image.hpp)
parent
283be0c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
include/Algo/MC/image.hpp
include/Algo/MC/image.hpp
+2
-1
No files found.
include/Algo/MC/image.hpp
View file @
0edf4e04
...
...
@@ -430,7 +430,8 @@ Image<DataType>* Image<DataType>::Blur3()
for
(
int
y
=
1
;
y
<
tym
;
++
y
)
{
*
(
newImg
->
getVoxelPtr
(
0
,
y
,
z
))
=
*
(
getVoxelPtr
(
0
,
y
,
z
));
#pragma omp parallel for // OpenMP
// #pragma omp parallel for // OpenMP
for
(
int
x
=
1
;
x
<
txm
;
++
x
)
{
DataType
*
ori
=
getVoxelPtr
(
x
,
y
,
z
);
...
...
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