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
fda7bb95
Commit
fda7bb95
authored
Mar 02, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10938 from mshabunin:fix-static-issues-9
parents
546f1d9f
7c855aa3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
pooling_layer.cpp
modules/dnn/src/layers/pooling_layer.cpp
+2
-0
grfmt_tiff.cpp
modules/imgcodecs/src/grfmt_tiff.cpp
+1
-0
No files found.
modules/dnn/src/layers/pooling_layer.cpp
View file @
fda7bb95
...
...
@@ -323,6 +323,8 @@ public:
#if CV_SIMD128
const
int
*
ofsptr
=
ofsbuf
.
empty
()
?
0
:
(
const
int
*
)
&
ofsbuf
[
0
];
if
(
poolingType
==
MAX
&&
!
compMaxIdx
&&
!
ofsptr
)
CV_Error
(
Error
::
StsBadArg
,
"ofsbuf should be initialized in this mode"
);
v_float32x4
idx00
(
0.
f
,
(
float
)
stride_w
,
(
float
)(
stride_w
*
2
),
(
float
)(
stride_w
*
3
));
v_float32x4
ones
=
v_setall_f32
(
1.
f
);
v_float32x4
idx_delta
=
v_setall_f32
((
float
)(
inp_width
-
kernel_w
));
...
...
modules/imgcodecs/src/grfmt_tiff.cpp
View file @
fda7bb95
...
...
@@ -775,6 +775,7 @@ bool TiffEncoder::writeLibTiff( const std::vector<Mat>& img_vec, const std::vect
}
default
:
{
TIFFClose
(
pTiffHandle
);
return
false
;
}
}
...
...
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