Omar Juarez

Results 37 comments of Omar Juarez

Yeap that's correct. I get the same. Then I assign the camera like this. But no video feed :( ```// Get all audio and video devices on this machine let...

Apparently my image didn't had standard dimensions so I used a 512x512 image and it worked. Maybe only multiples of 2 ? I don't know.

Just use regular dimensions. Dont use weird dimensions like 526x431 or such. Im doing 720p and works fine. Also square works On Jun 21, 2017, 3:58 PM -0700, Van Carney...

@jgh- how fast can ``` - (void) addPixelBufferSource: (UIImage*) image withRect: (CGRect) rect; ``` Be called ? Im running a callback block from GPUImage framework, that outputs raw data super...

I couldn't just simply pass a CVPixelBufferRef, it only accepts **unsigned char** so I had to do the following... ``` -(void)addPixelBufferSource:(CVPixelBufferRef)bufferRef realImageSize:(CGSize)size andRect:(CGRect)rect{ NSInteger width = size.width; NSInteger height =...

@AkshayBudhiraja You have to modify the addPixelBufferSource method. Because that method currently receives an UIImage. In my sample, thats what I did, I modified the method so that is accepts...

@odemiral I updated my previous post with the complete method. Check it out.

The name of the method is different from the original in the VideoCore Library. Remember to expose or change the name of the method in the .h file, so that...

@s00500 can you elaborate more on this ? what is exactly what your are describing ?

try with a squared watermark image. I believe the oroblem is the dimensions of your image.  On Wed, Mar 23, 2016 at 1:59 AM -0700, "michalsenk" [email protected] wrote: — You...