1
0
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:
Dmitry Matveev
2020-03-17 11:55:05 +03:00
committed by Ruslan Garnov
parent cb5921b375
commit b1f42a6506
9 changed files with 277 additions and 136 deletions
+3 -1
View File
@@ -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