I'm trying to learn how to use Bridging Headers in this test project. For this part, I want to have a method where it takes in and returns a CGPoint array.
    #import <Foundation/Foundation.h>
    #import <UIKit/UIKit.h>
    #import <CoreGraphics/CoreGraphics.h>
    @interface OpenCVWrapper : NSObject
    + (UIImage *)grayscaleImage:(UIImage *)image;
    + (UIImage *)gaussianBlurImage:(UIImage *)image;
    + (UIImage *)cannyEdgeImage:(UIImage *)image;
    //Error says Expected a type
    + ([CGPoint *])lineEdges:([CGPoint *])points;
    @end
Because I'm new to this, I don't know where to even start looking for a problem.
 
    