mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 07:43:03 +04:00
Implement asynchronous execution for islands
This commit is contained in:
committed by
Ruslan Garnov
parent
cb5921b375
commit
b1f42a6506
@@ -29,7 +29,6 @@ namespace cv
|
||||
// (user-inaccessible) classes.
|
||||
class GNode;
|
||||
struct GOrigin;
|
||||
|
||||
template<typename T> class GArray;
|
||||
|
||||
/**
|
||||
@@ -262,6 +261,9 @@ namespace detail
|
||||
{
|
||||
return m_ref->m_desc;
|
||||
}
|
||||
|
||||
// May be used to uniquely identify this object internally
|
||||
const void *ptr() const { return static_cast<const void*>(m_ref.get()); }
|
||||
};
|
||||
|
||||
// Helper (FIXME: work-around?)
|
||||
|
||||
@@ -25,7 +25,6 @@ namespace cv
|
||||
// (user-inaccessible) classes.
|
||||
class GNode;
|
||||
struct GOrigin;
|
||||
|
||||
template<typename T> class GOpaque;
|
||||
|
||||
/**
|
||||
@@ -250,6 +249,9 @@ namespace detail
|
||||
{
|
||||
return m_ref->m_desc;
|
||||
}
|
||||
|
||||
// May be used to uniquely identify this object internally
|
||||
const void *ptr() const { return static_cast<const void*>(m_ref.get()); }
|
||||
};
|
||||
} // namespace detail
|
||||
|
||||
|
||||
Reference in New Issue
Block a user