COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
bounding.h
Go to the documentation of this file.
1#ifndef BOUNDING_H
2#define BOUNDING_H
3
4bool mergeBoundingBoxes(int & x1, int & y1, int & w1, int & h1, int x2, int y2,
5 int w2, int h2);
6
7#endif
bool mergeBoundingBoxes(int &x1, int &y1, int &w1, int &h1, int x2, int y2, int w2, int h2)
Definition 2.cpp:9