projects
/
platform
/
upstream
/
opencv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a72bf5
)
delete unused variable
author
103yiran
<1039105206@qq.com>
Fri, 2 Apr 2021 02:30:27 +0000
(10:30 +0800)
committer
GitHub
<noreply@github.com>
Fri, 2 Apr 2021 02:30:27 +0000
(10:30 +0800)
modules/imgproc/src/imgwarp.cpp
patch
|
blob
|
history
diff --git
a/modules/imgproc/src/imgwarp.cpp
b/modules/imgproc/src/imgwarp.cpp
index 298f9b3b5bbd696f9db52ec0f583f689b3847b9b..c4dfd13a9393da01df9e2988c18aabc73a5ce1ce 100644
(file)
--- a/
modules/imgproc/src/imgwarp.cpp
+++ b/
modules/imgproc/src/imgwarp.cpp
@@
-2190,7
+2190,7
@@
public:
int bw = std::min( bw0, dst.cols - x);
int bh = std::min( bh0, range.end - y);
- Mat _XY(bh, bw, CV_16SC2, XY)
, matA
;
+ Mat _XY(bh, bw, CV_16SC2, XY);
Mat dpart(dst, Rect(x, y, bw, bh));
for( y1 = 0; y1 < bh; y1++ )
@@
-2979,7
+2979,7
@@
public:
int bw = std::min( bw0, width - x);
int bh = std::min( bh0, range.end - y); // height
- Mat _XY(bh, bw, CV_16SC2, XY)
, matA
;
+ Mat _XY(bh, bw, CV_16SC2, XY);
Mat dpart(dst, Rect(x, y, bw, bh));
for( y1 = 0; y1 < bh; y1++ )