reformat comments to headerdoc

This commit is contained in:
Paul Zabelin
2018-03-04 20:09:39 -08:00
parent c6ea874b1d
commit b68defc19c

View File

@@ -1,8 +1,11 @@
// OpenCV needs to be installed
// brew install opencv
#import <opencv2/opencv.hpp>
#import "OpenCVWrapper.h"
/**
OpenCV library is dynamically linked, to install OpenCV:
brew install opencv
*/
@implementation OpenCVWrapper
+ (CATransform3D)findHomographyFromQuadrilateral:(Quadrilateral)origin toQuadrilateral:(Quadrilateral)destination {
CvPoint2D32f *cvsrc = [self openCVMatrixWithQuadrilateral:origin];