// // MPT_RimageCamera.h // AUCoderDemo // // Created by Andrew Salamon on 9/5/06. // Copyright (c) 2006 Machine Perception Laboratory. University of California San Diego. // All rights reserved. #import #import #import "MPT_RimageAdaptor.h" /** This subclass of CSGCamera handles RImage's as well as CGImage's. * If the delegate has the correct selector, each new frame will be used to create a new * RImage wrapped in an autoreleased MPT_RimageAdaptor then passed to the delegate. */ @interface MPT_RimageCamera : CSGCamera { } @end @interface NSObject(MPT_RimageCameraDelegate) - (void)camera:(CSGCamera *)aCamera didReceiveRImage:(MPT_RimageAdaptor *)aFrame; @end