Using grep to compare JPEGs


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Using grep to compare JPEGs
# 1  
Old 12-06-2009
Using grep to compare JPEGs

Hi, I'm not sure if this is the right place but I'm a newb so it seemed right. I'm trying to write some code to organize JPEGs. Its a long story, but essentially, I need the program to tell me whether a particular jpeg is of 1) a sheet of paper (lets say its solid pink that takes up the entire frame) or 2) whether the image is of anything other than a piece of pink paper.

I assumed I would need to learn something like Python to do the comparison, but a friend suggested that I use the UNIX "grep" command. The problem I'm having is finding any string that represents "pink." Can anyone help me out?
# 2  
Old 12-06-2009
i don't think that "grep" is the right tool for you... and maybe no "scripting" language is. but i don't know python or other "higher" languages.
# 3  
Old 12-06-2009
JPEGs are binary data, there is no string in there representing pink. There are only the discreet transformations for each pixel and color (Red, Green, Blue), so unlike bitmaps, you can't even determine the color by looking at a certain position without decoding it first. Also, if you want to know more that just if an image contains "pink", you'll have to do image/pattern recognition.

grep, on the other hand, is intended to handle plain text (in various encodings if possible), and wouldn't even know what to do with pictures.
# 4  
Old 12-07-2009
Interesting question. You could use jpegtopnm (part of the netpbm toolkit) to convert to PPM Type 3 format and then write a script to check the contents using some sort of heuristics such as CCL (connected component labeling)
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Compare data - Match first column and compare second

Hi guys, looking for some help with a way to compare data in two files but with some conditions. example, File 1 consists of site1,10.1.1.1 site2,20.2.2.2 site3,30.3.3.3 File 2 contains site1,l0.1.1.1 site2,50.1.1.1 site3,30.3.3.3 site4,40.1.1.1 I want to be able to match the... (1 Reply)
Discussion started by: mutley2202
1 Replies

2. Shell Programming and Scripting

Compare intervals (columns) from two files (awk, grep, Perl?)

Hi dear users, I need to compare numeric columns in two files. These files have the following structure. K.txt (4 columns) A001 chr21 9805831 9846011 A002 chr21 9806202 9846263 A003 chr21 9887188 9988593 A003 chr21 9887188 ... (2 Replies)
Discussion started by: jcvivar
2 Replies

3. Shell Programming and Scripting

script to grep a pattern from file compare contents with another file and replace

Hi All, Need help on this I have 2 files one file file1 which has several entries as : define service{ hostgroup_name !host1,!host5,!host6,.* service_description check_nrpe } define service{ hostgroup_name !host2,!host4,!host6,.* service_description check_opt } another... (2 Replies)
Discussion started by: namitai
2 Replies

4. Shell Programming and Scripting

Cannot compare argument in if statement in csh/grep command if argument starts with “-“

If ($argv == “-debug”) then Echo “in loop” Endif But this is not working. If I modify this code and remove “-“, then it works. Similarly I am getting problem using grep command also Grep “-debug” Filename Can someone please help me on how to resolve these... (1 Reply)
Discussion started by: sarbjit
1 Replies

5. Shell Programming and Scripting

Require compare command to compare 4 files

I have four files, I need to compare these files together. As such i know "sdiff and comm" commands but these commands compare 2 files together. If I use sdiff command then i have to compare each file with other which will increase the codes. Please suggest if you know some commands whcih can... (6 Replies)
Discussion started by: nehashine
6 Replies

6. AIX

how to grep and compare timestamp in a file with the current date

I want to read a log file from a particular location.In the log file each line starts with timestamp.I need to compare the timestamp in the logfile with the current date.If the timpestamp in the log file is less than 4 hours then i need to read the file from that location.Below is the file... (1 Reply)
Discussion started by: achu
1 Replies

7. AIX

how to grep and compare timestamp in a file with the current date

I want to read a log file from a particular location.In the logfile , lines contains timestamp.I need to compare the timestamp in the logfile with the current date.If the timpestamp in the log file is less than 4 hours then i need to read the file from that location.Below is the file format.Please... (1 Reply)
Discussion started by: achu
1 Replies

8. Shell Programming and Scripting

how to grep and then to compare

Hello to all, i am new to scripting. I had to ques...1) If I had a variable $a which contains value i.e abc= jack I want to grep it first and then put into the variable lets say $b. Ques 2) If there is a file name.txt in which there are 15-20 names -----name.txt------ jack|male|london ... (5 Replies)
Discussion started by: ravi18s
5 Replies

9. UNIX for Dummies Questions & Answers

Compare 2 array files using grep

Using the bash shell I am trying to read in 2 files. The first file (file1) is a list of names to search for in (file2). If a name in file1 is found in file2 I want the entire line in file2 to be printed to an output file. File1 consists of a single column of names. File2 consists of several... (2 Replies)
Discussion started by: lanna001
2 Replies

10. UNIX for Dummies Questions & Answers

compare grep?

is there any way to compare two grep commands in an if statement? like: if grep blah = grep blah blah then is there a way to store the values of the greps and compare them? the greps are counting pattern matches in two different files and i need to make sure they match. (7 Replies)
Discussion started by: k@ssidy
7 Replies
Login or Register to Ask a Question