Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
9e47cb7d
Commit
9e47cb7d
authored
Aug 10, 2014
by
biagio montesano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added window's pragma warning
parent
f37f2c0f
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
33 additions
and
0 deletions
+33
-0
array32.hpp
...ne_descriptor/include/opencv2/line_descriptor/array32.hpp
+4
-0
bitarray.hpp
...e_descriptor/include/opencv2/line_descriptor/bitarray.hpp
+4
-0
bitops.hpp
...ine_descriptor/include/opencv2/line_descriptor/bitops.hpp
+1
-0
bucket_group.hpp
...scriptor/include/opencv2/line_descriptor/bucket_group.hpp
+4
-0
ed_line_detector.hpp
...ptor/include/opencv2/line_descriptor/ed_line_detector.hpp
+4
-0
mihasher.hpp
...e_descriptor/include/opencv2/line_descriptor/mihasher.hpp
+4
-0
sparse_hashtable.hpp
...ptor/include/opencv2/line_descriptor/sparse_hashtable.hpp
+4
-0
types.hpp
...line_descriptor/include/opencv2/line_descriptor/types.hpp
+4
-0
precomp.hpp
modules/line_descriptor/src/precomp.hpp
+4
-0
No files found.
modules/line_descriptor/include/opencv2/line_descriptor/array32.hpp
View file @
9e47cb7d
...
@@ -43,6 +43,10 @@
...
@@ -43,6 +43,10 @@
#ifndef __OPENCV_ARRAY32_HPP
#ifndef __OPENCV_ARRAY32_HPP
#define __OPENCV_ARRAY32_HPP
#define __OPENCV_ARRAY32_HPP
#ifdef _WIN32
#pragma warning( disable : 4267 )
#endif
#include "types.hpp"
#include "types.hpp"
class
Array32
class
Array32
...
...
modules/line_descriptor/include/opencv2/line_descriptor/bitarray.hpp
View file @
9e47cb7d
...
@@ -43,6 +43,10 @@
...
@@ -43,6 +43,10 @@
#ifndef __OPENCV_BITARRAY_HPP
#ifndef __OPENCV_BITARRAY_HPP
#define __OPENCV_BITARRAY_HPP
#define __OPENCV_BITARRAY_HPP
#ifdef _WIN32
#pragma warning( disable : 4267 )
#endif
#include "types.hpp"
#include "types.hpp"
#include <stdio.h>
#include <stdio.h>
#include <math.h>
#include <math.h>
...
...
modules/line_descriptor/include/opencv2/line_descriptor/bitops.hpp
View file @
9e47cb7d
...
@@ -47,6 +47,7 @@
...
@@ -47,6 +47,7 @@
# include <intrin.h>
# include <intrin.h>
# define popcnt __popcnt
# define popcnt __popcnt
# define popcntll __popcnt64
# define popcntll __popcnt64
# pragma warning( disable : 4267 )
#else
#else
# define popcntll __builtin_popcountll
# define popcntll __builtin_popcountll
# define popcnt __builtin_popcount
# define popcnt __builtin_popcount
...
...
modules/line_descriptor/include/opencv2/line_descriptor/bucket_group.hpp
View file @
9e47cb7d
...
@@ -43,6 +43,10 @@
...
@@ -43,6 +43,10 @@
#ifndef __OPENCV_BUCKET_GROUP_HPP
#ifndef __OPENCV_BUCKET_GROUP_HPP
#define __OPENCV_BUCKET_GROUP_HPP
#define __OPENCV_BUCKET_GROUP_HPP
#ifdef _WIN32
#pragma warning( disable : 4267 )
#endif
#include "types.hpp"
#include "types.hpp"
#include "array32.hpp"
#include "array32.hpp"
#include "bitarray.hpp"
#include "bitarray.hpp"
...
...
modules/line_descriptor/include/opencv2/line_descriptor/ed_line_detector.hpp
View file @
9e47cb7d
...
@@ -41,6 +41,10 @@
...
@@ -41,6 +41,10 @@
#ifndef __OPENCV_ED_LINE_DETECTOR_HH_
#ifndef __OPENCV_ED_LINE_DETECTOR_HH_
#define __OPENCV_ED_LINE_DETECTOR_HH_
#define __OPENCV_ED_LINE_DETECTOR_HH_
#ifdef _WIN32
#pragma warning( disable : 4267 )
#endif
#include <vector>
#include <vector>
#include <iostream>
#include <iostream>
#include <list>
#include <list>
...
...
modules/line_descriptor/include/opencv2/line_descriptor/mihasher.hpp
View file @
9e47cb7d
...
@@ -43,6 +43,10 @@
...
@@ -43,6 +43,10 @@
#ifndef __OPENCV_MIHASHER_HPP
#ifndef __OPENCV_MIHASHER_HPP
#define __OPENCV_MIHASHER_HPP
#define __OPENCV_MIHASHER_HPP
#ifdef _WIN32
#pragma warning( disable : 4267 )
#endif
#include "types.hpp"
#include "types.hpp"
#include "bitops.hpp"
#include "bitops.hpp"
#include "sparse_hashtable.hpp"
#include "sparse_hashtable.hpp"
...
...
modules/line_descriptor/include/opencv2/line_descriptor/sparse_hashtable.hpp
View file @
9e47cb7d
...
@@ -43,6 +43,10 @@
...
@@ -43,6 +43,10 @@
#ifndef __OPENCV_SPARSE_HASHTABLE_HPP
#ifndef __OPENCV_SPARSE_HASHTABLE_HPP
#define __OPENCV_SPARSE_HASHTABLE_HPP
#define __OPENCV_SPARSE_HASHTABLE_HPP
#ifdef _WIN32
#pragma warning( disable : 4267 )
#endif
#include "types.hpp"
#include "types.hpp"
#include "bucket_group.hpp"
#include "bucket_group.hpp"
...
...
modules/line_descriptor/include/opencv2/line_descriptor/types.hpp
View file @
9e47cb7d
...
@@ -45,6 +45,10 @@
...
@@ -45,6 +45,10 @@
#ifndef __OPENCV_TYPES_HPP
#ifndef __OPENCV_TYPES_HPP
#define __OPENCV_TYPES_HPP
#define __OPENCV_TYPES_HPP
#ifdef _WIN32
#pragma warning( disable : 4267 )
#endif
/* define data types */
/* define data types */
typedef
uint64_t
UINT64
;
typedef
uint64_t
UINT64
;
typedef
uint32_t
UINT32
;
typedef
uint32_t
UINT32
;
...
...
modules/line_descriptor/src/precomp.hpp
View file @
9e47cb7d
...
@@ -42,6 +42,10 @@
...
@@ -42,6 +42,10 @@
#ifndef __OPENCV_PRECOMP_H__
#ifndef __OPENCV_PRECOMP_H__
#define __OPENCV_PRECOMP_H__
#define __OPENCV_PRECOMP_H__
#ifdef _WIN32
#pragma warning( disable : 4267 )
#endif
#define _USE_MATH_DEFINES
#define _USE_MATH_DEFINES
#include <algorithm>
#include <algorithm>
...
...
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