Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
VTK
VTK
Commits
e3ab9f8e
Commit
e3ab9f8e
authored
May 15, 2003
by
Brad King
💬
Browse files
*** empty log message ***
parent
42de47d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Imaging/vtkImageHybridMedian2D.cxx
View file @
e3ab9f8e
...
...
@@ -23,7 +23,7 @@
#include
<vtkstd/algorithm>
#include
<vtkstd/numeric>
vtkCxxRevisionMacro
(
vtkImageHybridMedian2D
,
"1.2
1
"
);
vtkCxxRevisionMacro
(
vtkImageHybridMedian2D
,
"1.2
2
"
);
vtkStandardNewMacro
(
vtkImageHybridMedian2D
);
//----------------------------------------------------------------------------
...
...
@@ -252,9 +252,7 @@ void vtkImageHybridMedian2D::ThreadedExecute(vtkImageData *inData,
vtkImageData
*
outData
,
int
outExt
[
6
],
int
id
)
{
int
inExt
[
6
];
this
->
ComputeInputUpdateExtent
(
inExt
,
outExt
);
void
*
inPtr
=
inData
->
GetScalarPointerForExtent
(
inExt
);
void
*
inPtr
=
inData
->
GetScalarPointerForExtent
(
outExt
);
void
*
outPtr
=
outData
->
GetScalarPointerForExtent
(
outExt
);
// this filter expects the output type to be same as input
...
...
Write
Preview
Supports
Markdown
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