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
d9858614
Commit
d9858614
authored
Nov 27, 2012
by
marina.kolpakova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused std imports
parent
1d97a454
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
9 deletions
+3
-9
emulation.hpp
modules/gpu/include/opencv2/gpu/device/emulation.hpp
+0
-1
optical_flow_farneback.cu
modules/gpu/src/cuda/optical_flow_farneback.cu
+0
-3
NCV.cu
modules/gpu/src/nvidia/core/NCV.cu
+3
-5
No files found.
modules/gpu/include/opencv2/gpu/device/emulation.hpp
View file @
d9858614
...
@@ -44,7 +44,6 @@
...
@@ -44,7 +44,6 @@
#define OPENCV_GPU_EMULATION_HPP_
#define OPENCV_GPU_EMULATION_HPP_
#include "warp_reduce.hpp"
#include "warp_reduce.hpp"
#include <stdio.h>
namespace
cv
{
namespace
gpu
{
namespace
device
namespace
cv
{
namespace
gpu
{
namespace
device
{
{
...
...
modules/gpu/src/cuda/optical_flow_farneback.cu
View file @
d9858614
...
@@ -42,7 +42,6 @@
...
@@ -42,7 +42,6 @@
#if !defined CUDA_DISABLER
#if !defined CUDA_DISABLER
#include <stdio.h>
#include "internal_shared.hpp"
#include "internal_shared.hpp"
#include "opencv2/gpu/device/common.hpp"
#include "opencv2/gpu/device/common.hpp"
#include "opencv2/gpu/device/border_interpolate.hpp"
#include "opencv2/gpu/device/border_interpolate.hpp"
...
@@ -57,8 +56,6 @@
...
@@ -57,8 +56,6 @@
#define BORDER_SIZE 5
#define BORDER_SIZE 5
#define MAX_KSIZE_HALF 100
#define MAX_KSIZE_HALF 100
using namespace std;
namespace cv { namespace gpu { namespace device { namespace optflow_farneback
namespace cv { namespace gpu { namespace device { namespace optflow_farneback
{
{
__constant__ float c_g[8];
__constant__ float c_g[8];
...
...
modules/gpu/src/nvidia/core/NCV.cu
View file @
d9858614
...
@@ -45,8 +45,6 @@
...
@@ -45,8 +45,6 @@
#include <vector>
#include <vector>
#include "NCV.hpp"
#include "NCV.hpp"
using namespace std;
//==============================================================================
//==============================================================================
//
//
...
@@ -55,16 +53,16 @@ using namespace std;
...
@@ -55,16 +53,16 @@ using namespace std;
//==============================================================================
//==============================================================================
static void stdDebugOutput(const string &msg)
static void stdDebugOutput(const st
d::st
ring &msg)
{
{
cout << msg;
std::
cout << msg;
}
}
static NCVDebugOutputHandler *debugOutputHandler = stdDebugOutput;
static NCVDebugOutputHandler *debugOutputHandler = stdDebugOutput;
void ncvDebugOutput(const string &msg)
void ncvDebugOutput(const st
d::st
ring &msg)
{
{
debugOutputHandler(msg);
debugOutputHandler(msg);
}
}
...
...
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