Re: average of PIL images



On Feb 18, 10:18 am, vaneric <vaneric...@xxxxxxxxx> wrote:
hi
i have a set of RGB images of diff faces (of people )as a 2 dim
numpyarray
..something like
threefaces=array([[xa1,xa2,xa3],
       [xb1,xb2,xb3],
       [xc1,xc2,xc3]])
where xa1,xa2,xa3 are  tuples each representing rgb values of a pixel
of first image ..

i need to create the average face image and display it.problem is i
need to calculate (xa1+xb1+xc1)/3  etc to calculate avearge value of
each pixel.how can i do this calculation.do i need to convert the
r,g,b in to a single value for each pixel? the average value of a
pixel will be a float isn't it? how can i create a PIL image from
this?
any help,directive greatly appreciated
eric

import Numeric

arr = Numeric.array([
[1, 2, 3],
[4, 5, 6],
[7, 8, 9],
[10, 11, 12]
])

col1 = arr[0:,0]
print col1

sum = 0
count = 0
for num in col1:
sum += num
count += 1

avg = (sum * 1.0)/count #convert one term to a float to get float
result
print avg
print round(avg)
print int(round(avg))


print arr[0]

size = len(arr[0])
for i in range(size):
col = arr[0:, i]
sum = 0
count = 0

for num in col:
sum += num
count += 1

result = (sum * 1.0) /count
print result,
result = int(round(result))
print result

--output:--
[ 1 4 7 10]
5.5
6.0
6
[1 2 3]
5.5 6
6.5 7
7.5 8
.



Relevant Pages

  • [QUIZ] Weird Numbers (#57) Solution
    ... def weirdo_exhaustive ... .each do |num| ... list, sum=, 0 ... It seems to me like there must be a clever ...
    (comp.lang.ruby)
  • Re: Help with atoi function for a numero program.
    ... printf("The sum of the words are %d\n",res); ... turns to be a double digit and then check if // the final result will ... int sum_digits(int num) ... string and i am passing a character so i tried passing the charecter ...
    (comp.lang.c)
  • Re: averages 2
    ... I think *num is being used for too many things. ... Use another variable for the sum. ... double sma (int count, double *num) ... /* don't try and be clever. ...
    (comp.lang.c)
  • Re: "typedef" and "enum" problem
    ... assignment for me, it's just that I am lost. ... double num, num2; ... double secMax; ... sum = sum + num; ...
    (comp.lang.cpp)