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
98031a41
Commit
98031a41
authored
Nov 30, 2012
by
Ilya Lavrenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed const modificators
parent
b8b13ccd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
16 deletions
+10
-16
demosaicing.cpp
modules/imgproc/src/demosaicing.cpp
+10
-16
No files found.
modules/imgproc/src/demosaicing.cpp
View file @
98031a41
...
...
@@ -310,12 +310,12 @@ public:
}
private
:
const
Mat
srcmat
;
Mat
srcmat
;
Mat
dstmat
;
const
int
Start_with_green
;
const
bool
Brow
;
const
Size
size
;
const
int
Bcoeff
,
Rcoeff
;
int
Start_with_green
;
bool
Brow
;
Size
size
;
int
Bcoeff
,
Rcoeff
;
};
template
<
typename
T
,
typename
SIMDInterpolator
>
...
...
@@ -589,13 +589,10 @@ public:
}
private
:
const
Mat
srcmat
;
Mat
srcmat
;
Mat
dstmat
;
int
Start_with_green
,
Blue
;
const
Size
size
;
const
Bayer2RGB_Invoker
&
operator
=
(
const
Bayer2RGB_Invoker
&
);
Bayer2RGB_Invoker
(
const
Bayer2RGB_Invoker
&
);
Size
size
;
};
template
<
typename
T
,
class
SIMDInterpolator
>
...
...
@@ -1271,13 +1268,10 @@ public:
}
private
:
const
Mat
src
;
Mat
src
;
Mat
dst
;
const
Size
size
;
const
int
Blue
,
Start_with_green
;
const
Bayer2RGB_EdgeAware_T_Invoker
&
operator
=
(
const
Bayer2RGB_EdgeAware_T_Invoker
&
);
Bayer2RGB_EdgeAware_T_Invoker
(
const
Bayer2RGB_EdgeAware_T_Invoker
&
);
Size
size
;
int
Blue
,
Start_with_green
;
};
template
<
typename
T
>
...
...
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