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
2627c91c
Commit
2627c91c
authored
Sep 24, 2012
by
Ilya Lavrenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added platform specific definitions in resize algorithm
parent
077115bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
29 deletions
+35
-29
imgwarp.cpp
modules/imgproc/src/imgwarp.cpp
+35
-29
No files found.
modules/imgproc/src/imgwarp.cpp
View file @
2627c91c
...
...
@@ -1399,6 +1399,12 @@ struct DecimateAlpha
float
alpha
;
};
#ifdef __APPLE__
#define HAVE_TBB HAVE_GDC
#elif defined _MSC_VER && _MSC_VER >= 1600
#define HABE_TBB HAVE_CONCURRENCY
#endif
template
<
typename
T
,
typename
WT
>
class
resizeArea_Invoker
:
public
ParallelLoopBody
...
...
@@ -1416,8 +1422,8 @@ public:
,
cur_dy_ofs
(
_cur_dy_ofs
),
bands
(
_bands
)
#endif
{
if
(
src
.
size
()
==
Size
(
16
,
16
)
&&
dst
.
size
()
==
Size
(
5
,
5
))
std
::
cout
<<
"scale_y = "
<<
scale_y_
<<
std
::
endl
<<
std
::
endl
;
//
if (src.size() == Size(16, 16) && dst.size() == Size(5, 5))
//
std::cout << "scale_y = " << scale_y_ << std::endl << std::endl;
}
#ifdef HAVE_TBB
...
...
@@ -1488,8 +1494,8 @@ public:
if
(
(
cur_dy
+
1
)
*
scale_y
<=
sy
+
1
||
sy
==
ssize
.
height
-
1
)
{
if
(
dsize
==
Size
(
5
,
5
)
&&
ssize
==
Size
(
16
,
16
))
std
::
cout
<<
"Band: ("
<<
range
.
start
<<
", "
<<
range
.
end
<<
")"
<<
std
::
endl
;
//
if (dsize == Size(5, 5) && ssize == Size(16, 16))
//
std::cout << "Band: (" << range.start << ", " << range.end << ")" << std::endl;
WT
beta
=
std
::
max
(
sy
+
1
-
(
cur_dy
+
1
)
*
scale_y
,
(
WT
)
0
);
WT
beta1
=
1
-
beta
;
...
...
@@ -1501,14 +1507,14 @@ public:
for
(
dx
=
0
;
dx
<
dsize
.
width
;
dx
++
)
{
D
[
dx
]
=
saturate_cast
<
T
>
((
sum
[
dx
]
+
buf
[
dx
])
/
min
(
scale_y
,
src
.
rows
-
cur_dy
*
scale_y
));
//
if
(
dsize
==
Size
(
5
,
5
)
&&
ssize
==
Size
(
16
,
16
))
{
std
::
cout
<<
"sum["
<<
dx
<<
"] = "
<<
sum
[
dx
]
<<
std
::
endl
;
std
::
cout
<<
"buf["
<<
dx
<<
"] = "
<<
buf
[
dx
]
<<
std
::
endl
;
std
::
cout
<<
"min(scale_y, src.rows - cur_dy * scale_y) = "
<<
min
(
scale_y
,
src
.
rows
-
cur_dy
*
scale_y
)
<<
std
::
endl
;
std
::
cout
<<
"D["
<<
dx
<<
"] = "
<<
D
[
dx
]
<<
std
::
endl
;
std
::
cout
<<
std
::
endl
;
}
//
if (dsize == Size(5, 5) && ssize == Size(16, 16))
//
{
//
std::cout << "sum[" << dx << "] = " << sum[dx] << std::endl;
//
std::cout << "buf[" << dx << "] = " << buf[dx] << std::endl;
//
std::cout << "min(scale_y, src.rows - cur_dy * scale_y) = " << min(scale_y, src.rows - cur_dy * scale_y) << std::endl;
//
std::cout << "D[" << dx << "] = " << D[dx] << std::endl;
//
std::cout << std::endl;
//
}
sum
[
dx
]
=
buf
[
dx
]
=
0
;
}
}
...
...
@@ -1516,15 +1522,15 @@ public:
for
(
dx
=
0
;
dx
<
dsize
.
width
;
dx
++
)
{
D
[
dx
]
=
saturate_cast
<
T
>
((
sum
[
dx
]
+
buf
[
dx
]
*
beta1
)
/
min
(
scale_y
,
src
.
rows
-
cur_dy
*
scale_y
));
//
if
(
dsize
==
Size
(
5
,
5
)
&&
ssize
==
Size
(
16
,
16
))
{
std
::
cout
<<
"sum["
<<
dx
<<
"] = "
<<
sum
[
dx
]
<<
std
::
endl
;
std
::
cout
<<
"buf["
<<
dx
<<
"] = "
<<
buf
[
dx
]
<<
std
::
endl
;
std
::
cout
<<
"beta1 = "
<<
beta1
<<
std
::
endl
;
std
::
cout
<<
"min(scale_y, src.rows - cur_dy * scale_y) = "
<<
min
(
scale_y
,
src
.
rows
-
cur_dy
*
scale_y
)
<<
std
::
endl
;
std
::
cout
<<
"D["
<<
dx
<<
"] = "
<<
D
[
dx
]
<<
std
::
endl
;
std
::
cout
<<
std
::
endl
;
}
//
if (dsize == Size(5, 5) && ssize == Size(16, 16))
//
{
//
std::cout << "sum[" << dx << "] = " << sum[dx] << std::endl;
//
std::cout << "buf[" << dx << "] = " << buf[dx] << std::endl;
//
std::cout << "beta1 = " << beta1 << std::endl;
//
std::cout << "min(scale_y, src.rows - cur_dy * scale_y) = " << min(scale_y, src.rows - cur_dy * scale_y) << std::endl;
//
std::cout << "D[" << dx << "] = " << D[dx] << std::endl;
//
std::cout << std::endl;
//
}
sum
[
dx
]
=
buf
[
dx
]
*
beta
;
buf
[
dx
]
=
0
;
}
...
...
@@ -1605,17 +1611,17 @@ static void resizeArea_( const Mat& src, Mat& dst, const DecimateAlpha* xofs, in
}
// bands.push_back(std::make_pair(index, ssize.height));
#endif
#ifdef HAVE_TBB
Range
range
(
0
,
bands
.
size
());
if
(
dsize
==
Size
(
5
,
5
)
&&
ssize
==
Size
(
16
,
16
))
{
std
::
cout
<<
"Bands"
<<
std
::
endl
;
for
(
std
::
vector
<
std
::
pair
<
int
,
int
>
>::
const_iterator
i
=
bands
.
begin
(),
end
=
bands
.
end
();
i
!=
end
;
++
i
)
std
::
cout
<<
i
->
first
<<
" "
<<
i
->
second
<<
std
::
endl
;
std
::
cout
<<
std
::
endl
;
}
//
if (dsize == Size(5, 5) && ssize == Size(16, 16))
//
{
//
std::cout << "Bands" << std::endl;
//
for (std::vector<std::pair<int, int> >::const_iterator i = bands.begin(), end = bands.end(); i != end; ++i)
//
std::cout << i->first << " " << i->second << std::endl;
//
std::cout << std::endl;
//
}
resizeArea_Invoker
<
T
,
WT
>
invoker
(
src
,
dst
,
xofs
,
xofs_count
,
scale_y_
,
cur_dy_ofs
,
bands
);
#else
...
...
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