Closed beraldofilippo closed 8 years ago
Forgot to initialize correctly ArrayList<Point> in VisionDetRet.
ArrayList<Point>
VisionDetRet
The default constructor should be VisionDetRet() { mLandmarkPoints = new ArrayList<>(); } insted of being completely empty.
VisionDetRet() { mLandmarkPoints = new ArrayList<>(); }
Alternatively you can add the initialization right into the private field declaration. Sorry for that it slipped away!
Thx. Don't worry about it. I have initialized the private filed, you can check the source code. :)
Forgot to initialize correctly
ArrayList<Point>
inVisionDetRet
.The default constructor should be
VisionDetRet() { mLandmarkPoints = new ArrayList<>(); }
insted of being completely empty.Alternatively you can add the initialization right into the private field declaration. Sorry for that it slipped away!