mirror of
https://github.com/opencv/opencv.git
synced 2024-11-28 13:10:12 +08:00
Merge pull request #15777 from dbudniko:dbudniko/add_own_empty
This commit is contained in:
commit
02f4d6ca53
@ -284,7 +284,10 @@ namespace cv { namespace gapi { namespace own {
|
||||
The method returns true if Mat::total() is 0 or if Mat::data is NULL. Because of pop_back() and
|
||||
resize() methods `M.total() == 0` does not imply that `M.data == NULL`.
|
||||
*/
|
||||
bool empty() const;
|
||||
bool empty() const
|
||||
{
|
||||
return data == 0 || total() == 0 || dims.empty();
|
||||
}
|
||||
|
||||
/** @brief Returns the total number of array elements.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user