mirror of
https://github.com/opencv/opencv.git
synced 2025-06-16 06:40:49 +08:00
highgui: drop invalid cvGetWindowImageRect
- return type is C++ template - removal from 'extern "C"' scope broke ABI anyway, so this symbols is removed completelly
This commit is contained in:
parent
aa11cc19e8
commit
0ee61d178f
@ -135,11 +135,6 @@ 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 */
|
|
||||||
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 );
|
||||||
|
|
||||||
|
@ -191,6 +191,7 @@ CV_IMPL double cvGetWindowProperty(const char* name, int prop_id)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static
|
||||||
cv::Rect cvGetWindowImageRect(const char* name)
|
cv::Rect cvGetWindowImageRect(const char* name)
|
||||||
{
|
{
|
||||||
if (!name)
|
if (!name)
|
||||||
|
Loading…
Reference in New Issue
Block a user