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
f8f06853
Commit
f8f06853
authored
Aug 13, 2013
by
Roman Donchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Boring changes - gpuarithm.
parent
57595a83
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
arithm.cpp
modules/gpuarithm/src/arithm.cpp
+1
-1
core.cpp
modules/gpuarithm/src/core.cpp
+1
-1
No files found.
modules/gpuarithm/src/arithm.cpp
View file @
f8f06853
...
...
@@ -629,7 +629,7 @@ Ptr<Convolution> cv::gpu::createConvolution(Size user_block_size)
CV_Error
(
Error
::
StsNotImplemented
,
"The library was build without CUFFT"
);
return
Ptr
<
Convolution
>
();
#else
return
new
ConvolutionImpl
(
user_block_size
);
return
makePtr
<
ConvolutionImpl
>
(
user_block_size
);
#endif
}
...
...
modules/gpuarithm/src/core.cpp
View file @
f8f06853
...
...
@@ -497,7 +497,7 @@ namespace
Ptr
<
LookUpTable
>
cv
::
gpu
::
createLookUpTable
(
InputArray
lut
)
{
return
new
LookUpTableImpl
(
lut
);
return
makePtr
<
LookUpTableImpl
>
(
lut
);
}
////////////////////////////////////////////////////////////////////////
...
...
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