MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / area

Method area

arm_compute/core/Size2D.h:56–59  ·  view source on GitHub ↗

The area of the image or rectangle calculated as (width * height) * * @return Area (width * height) * */

Source from the content-addressed store, hash-verified

54 *
55 */
56 size_t area() const
57 {
58 return (width * height);
59 }
60
61 bool operator==(const Size2D &other) const
62 {

Calls

no outgoing calls

Tested by

no test coverage detected