MCPcopy Create free account
hub / github.com/CVCUDA/CV-CUDA / GetSizeInBytes

Method GetSizeInBytes

python/mod_cvcuda/nvcv/Image.cpp:529–534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

527}
528
529int64_t Image::GetSizeInBytes() const
530{
531 // m_size_inbytes == -1 indicates failure case and value has not been computed yet
532 NVCV_ASSERT(m_size_inbytes != -1 && "Image has m_size_inbytes == -1, ie m_size_inbytes has not been correctly set");
533 return m_size_inbytes;
534}
535
536std::shared_ptr<Image> Image::shared_from_this()
537{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected