image processing on a low level using PIG...Possible?

2010-07-26 Thread Ifeanyichukwu Osuji
Hi all, I was wondering if it would be possible to process images on a low level using PIG. I want to be able to write a pig script that can differentiate between two images.

Re: image processing on a low level using PIG...Possible?

2010-07-26 Thread Alan Gates
Pig itself does not contain image processing primitives. But if you write your image processing in a UDF, then Pig can be a great framework for dealing with the parallelism, running it on Hadoop, etc. Alan. On Jul 26, 2010, at 11:56 AM, Ifeanyichukwu Osuji wrote: Hi all,

Re: image processing on a low level using PIG...Possible?

2010-07-26 Thread Ashutosh Chauhan
To add in bit more details: You basically load images as bytearray type. Pig wont interpret it. Then you can write a UDF which takes these bytearrays as input. You can choose to work directly on bytearray or create image objects out of them, do your processing and return bytearray back to Pig. You

Re: image processing on a low level using PIG...Possible?

2010-07-26 Thread Russell Jurney
There was a slide desk sitting around google that had a 'facial recognition' UDF a while back. On Mon, Jul 26, 2010 at 7:32 PM, Mridul Muralidharan mrid...@yahoo-inc.comwrote: Hi, We have a few projects which do this on hadoop, but I dont see any reason why it cant have been done in pig.