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
89230fa4
Commit
89230fa4
authored
May 28, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11605 from alalek:fix_build_10963
parents
58d28061
549b5df2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
cvdef.h
modules/core/include/opencv2/core/cvdef.h
+7
-1
highgui_c.h
modules/highgui/include/opencv2/highgui/highgui_c.h
+2
-0
No files found.
modules/core/include/opencv2/core/cvdef.h
View file @
89230fa4
...
@@ -480,7 +480,7 @@ Cv64suf;
...
@@ -480,7 +480,7 @@ Cv64suf;
// Integer types portatibility
// Integer types portatibility
#ifdef OPENCV_STDINT_HEADER
#ifdef OPENCV_STDINT_HEADER
#include OPENCV_STDINT_HEADER
#include OPENCV_STDINT_HEADER
#el
se
#el
if defined(__cplusplus)
#if defined(_MSC_VER) && _MSC_VER < 1600
/* MSVS 2010 */
#if defined(_MSC_VER) && _MSC_VER < 1600
/* MSVS 2010 */
namespace
cv
{
namespace
cv
{
typedef
signed
char
int8_t
;
typedef
signed
char
int8_t
;
...
@@ -517,9 +517,15 @@ typedef ::int64_t int64_t;
...
@@ -517,9 +517,15 @@ typedef ::int64_t int64_t;
typedef
::
uint64_t
uint64_t
;
typedef
::
uint64_t
uint64_t
;
}
}
#endif
#endif
#else // pure C
#include <stdint.h>
#endif
#endif
//! @}
//! @}
#ifndef __cplusplus
#include "opencv2/core/fast_math.hpp" // define cvRound(double)
#endif
#endif // OPENCV_CORE_CVDEF_H
#endif // OPENCV_CORE_CVDEF_H
modules/highgui/include/opencv2/highgui/highgui_c.h
View file @
89230fa4
...
@@ -135,8 +135,10 @@ CVAPI(int) cvNamedWindow( const char* name, int flags CV_DEFAULT(CV_WINDOW_AUTOS
...
@@ -135,8 +135,10 @@ CVAPI(int) cvNamedWindow( const char* name, int flags CV_DEFAULT(CV_WINDOW_AUTOS
CVAPI
(
void
)
cvSetWindowProperty
(
const
char
*
name
,
int
prop_id
,
double
prop_value
);
CVAPI
(
void
)
cvSetWindowProperty
(
const
char
*
name
,
int
prop_id
,
double
prop_value
);
CVAPI
(
double
)
cvGetWindowProperty
(
const
char
*
name
,
int
prop_id
);
CVAPI
(
double
)
cvGetWindowProperty
(
const
char
*
name
,
int
prop_id
);
#ifdef __cplusplus // FIXIT remove in OpenCV 4.0
/* Get window image rectangle coordinates, width and height */
/* Get window image rectangle coordinates, width and height */
CVAPI
(
cv
::
Rect
)
cvGetWindowImageRect
(
const
char
*
name
);
CVAPI
(
cv
::
Rect
)
cvGetWindowImageRect
(
const
char
*
name
);
#endif
/* display image within window (highgui windows remember their content) */
/* display image within window (highgui windows remember their content) */
CVAPI
(
void
)
cvShowImage
(
const
char
*
name
,
const
CvArr
*
image
);
CVAPI
(
void
)
cvShowImage
(
const
char
*
name
,
const
CvArr
*
image
);
...
...
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