Search found 1 match

by vpcompsci
2012-03-14T08:38:13-07:00
Forum: Users
Topic: Convolving, I'm Stuck
Replies: 1
Views: 3173

Convolving, I'm Stuck

Hey, so I am trying to make a program that computes recursively using imagemagick. I want to create each pixel using pixels that are to the up-left of the pixel. The computation I am using is SAT(x,y) = SAT(x-1,y) + SAT(x,y-1) + I(x,y) - SAT(x-1,y-1) where I(x,y) is the corresponding pixel to the ...