PEXTREM(1) General Commands Manual PEXTREM(1)NAME
pextrem - find minimum and maximum values in RADIANCE picture
SYNOPSIS
pextrem [ -o ] [ picture ]
DESCRIPTION
Pextrem locates the minimum and maximum values for the input picture, and prints their pixel locations and color values. The first line
printed contains the x and y pixel location (x measured from the left margin, y measured from the bottom), followed by the red, green and
blue values. The second line printed contains the same information for the maximum value.
The -o option prints the original (radiance) values, undoing any exposure or color correction done on the picture.
If no input picture is given, the standard input is read.
AUTHOR
Greg Ward
BUGS
The luminance value is used for comparison of pixels, although in certain anomolous cases (ie. highly saturated colors) it is possible that
pextrem will not pick the absolute minimum or maximum luminance value. This is because a fast integer-space comparison is used. A more
reliable floating-point comparison would be slower by an order of magnitude.
SEE ALSO falsecolor(1), getinfo(1), pcomb(1), pcompos(1), pextrem(1), pfilt(1), pflip(1), protate(1), psign(1), rpict(1), ximage(1)RADIANCE 11/15/93 PEXTREM(1)
Hi folks,
Here i have written a shell script to calculate a maximum number from 10 numbers entered on command line.
max=0
echo Enter 10 numbers , one at a time
for i in 1 2 3 4 5 6 7 8 9 10
do
read n
max=`expr $max + $n`
if --- At this last step there is some problem, it gives error... (5 Replies)
This might be a simple answer but I can't for my life figure it out. If I input "bat", how do I get the condition to pick it up with the wild card *at*.
#!/bin/bash
read -p "enter" BOO
if ; then
echo "you win"
else
echo "you lose"
fi (3 Replies)
The string comparison highlighted below is not working fine. Please help:
while read line
do
# Get File name by deleting everything that preceedes and follows Filename as printed in cvs status' output
f_name=`echo $line | sed -e 's/^File://' -e 's/ *Status:.*//' | awk '{print $NF}'`
... (4 Replies)
Deal All,
I have millions of input file like this:
input 1:
disk minimum
DISK01 5173
DISK02 5227
DISK03 5284
DISK04 5346
DISK05 5400
DISK06 5456
DISK07 5511
DISK08 5572
.
.
.
input 2:
range 5180-5300 (3 Replies)
Hi :o
I'm working on Windows, with gawk,
and let's say I have two files to compare.
searching for a script to do a text comparison I came across to this line:
gawk "{if(NR==FNR){A}else{B}}END{for(x in A){if(!(x in B))print x>\"1not2.txt\"}for(x in B){if(!(x in A))print x>\"2not1.txt\"}}"... (7 Replies)
Dear All,
I would really appreciate if you can help me to resolve this file comparison
I have two files:
file1:
chr start end ID gene_name
chr1 2020 3030 1 test1
chr1 900 5000 2 test1
chr2 5000 8000 3 test2
chr3 6000 12000 4 test3
chr3 6000 15000 5 test3
file2:... (2 Replies)
Can I print the minimum and maximum values of values in first 4 columns ?
input
3038669 3038743 3037800 3038400 m101c
3218627 3218709 3217600 3219800 m290
.............
output
3037800 3038743 m101c
3217600 3219800 m290 (2 Replies)
I am trying to find the minimum maximum and average from one file which has values
Received message from https://www.demandmatrix.net/app/dm/xml] in milliseconds.
Received message from https://www.demandmatrix.net/app/dm/xml] in milliseconds.
Received message from... (5 Replies)
Hi Evreyone
below is the sample data i have in one file
Wed Jan 30 7 :04:50 2013 type1 419990050 101 ms
Wed Jan 30 7 :04:58 2013 type1 488226363 101 ms
Wed Jan 30 7 :05:03 2013 type1 431525334 101 ms
Wed Jan 30 7 :05:48 2013 type2 400676615 101 ms
Wed Jan 30 8 :09:46... (3 Replies)
Hi friends,,,
for comparison purpose i need to use nested loop....pls give one example..as I have confusion while file reading..my code looks somewhat like this..
awk 'FNR==NR{
{ getline < "file.dat" ; la=$1 }
{ getline < "file.dat" ; lo=$2 }
{ getline < "file.dat" ;... (4 Replies)
Dear Masters,
Kindly need your helps for this issue..
I face a formula as a picture...
the input file is
A DEPT Vp Vs rho VPperVS
------------------------ ------------ ------------ ------------
700 151.9218 121.9269 ... (11 Replies)
Hi All
I hope that someone could help me!
I have an input file like this, with 4 colum(ID, feature1, start, end):
a x 1 5
b x 3 10
b x 4 9
b x 5 16
c x 5 9
c x 4 8
And my output file should be like this:
a x 1 5
b x 3 16
c x 4 9
What I would like to do is to output for each ID... (2 Replies)
Hi -
The below code works perfectly for e-mailing HTML embeded with JPG picture
sendmail -t <<EOT
TO: ABC.TO@abc.com
FROM: ABC.FROM@abc.com
SUBJECT: Embed image test
MIME-Version: 1.0
Content-Type: multipart/related;boundary="XYZ"
--XYZ
Content-Type: text/html; charset=ISO-8859-15... (5 Replies)
Hello,
I need to find out the minimum and maximum values based on specific column, and then print out the entire row with the max value.
Infile.txt:
scf6 290173 290416 . + X_047241 T_00113118-1
scf6 290491 290957 . + X_047241 T_00113118-2
scf6 290898 290957 . + X_047241 T_00113119-3
scf6... (2 Replies)