I am working on an app that computes some points of interests from the live camera feed. The algorithm that I have for this is quite slow and I am therefore applying the processing on a small image using forceProcessingAtSizeRespectingAspectRatio.
[filter forceProcessingAtSizeRespectingAspectRatio:CGSizeMake(100, 80)];
I display the image that I get from the filter as follows:
GPUImageView *filterView = (GPUImageView *)imageView;
[filter addTarget:filterView];
I want to be able to show the full resolution image on the device. I have already normalised the points of interest that I compute within the algorithm so I can map them to the full resolution image. But I cannot get the full resolution images to show on the device.