Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
6b7470f6
Commit
6b7470f6
authored
Jul 24, 2012
by
Maria Dimashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed gcc compilation
parent
39554ead
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
copy.cpp
modules/core/src/copy.cpp
+3
-4
No files found.
modules/core/src/copy.cpp
View file @
6b7470f6
...
...
@@ -78,7 +78,7 @@ copyMask_(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, ucha
}
}
template
<>
static
void
template
<>
void
copyMask_
<
uchar
>
(
const
uchar
*
_src
,
size_t
sstep
,
const
uchar
*
mask
,
size_t
mstep
,
uchar
*
_dst
,
size_t
dstep
,
Size
size
)
{
for
(
;
size
.
height
--
;
mask
+=
mstep
,
_src
+=
sstep
,
_dst
+=
dstep
)
...
...
@@ -108,7 +108,7 @@ copyMask_<uchar>(const uchar* _src, size_t sstep, const uchar* mask, size_t mste
}
}
template
<>
static
void
template
<>
void
copyMask_
<
ushort
>
(
const
uchar
*
_src
,
size_t
sstep
,
const
uchar
*
mask
,
size_t
mstep
,
uchar
*
_dst
,
size_t
dstep
,
Size
size
)
{
for
(
;
size
.
height
--
;
mask
+=
mstep
,
_src
+=
sstep
,
_dst
+=
dstep
)
...
...
@@ -627,4 +627,4 @@ cvRepeat( const CvArr* srcarr, CvArr* dstarr )
cv
::
repeat
(
src
,
dst
.
rows
/
src
.
rows
,
dst
.
cols
/
src
.
cols
,
dst
);
}
/* End of file. */
\ No newline at end of file
/* End of file. */
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