Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Results 1 to 2 of 2

Thread: general matrix multiplication/manipulation, convolution modification

  1. #1
    Junior Member Newbie
    Join Date
    Nov 2001
    Location
    lille, france
    Posts
    7

    general matrix multiplication/manipulation, convolution modification

    hello,
    i'm greatly intersted in image manipulation using opengl image subset but :
    * i've not found a general way to multiply image matrix with a special fx matrix, this could be used to FFT or some other transform
    * i wanted to use convolution to build tools as blur but opengl matrix convolution does not allow to do
    C[i',j']=sum(n=-wf/2,wf/2)sum(m=-hf/2,hf/2)CS[i+n,j+m]cf[n+wf/2,m+wh/2]
    i want to acces value that are lower indexed that the value i want to modify
    *there is no way to use matrix algebra which can be used for most of image manipulation...

  2. #2
    Junior Member Newbie
    Join Date
    Nov 2001
    Location
    lille, france
    Posts
    7

    Re: general matrix multiplication/manipulation, convolution modification

    is there someone interested or is my question too hard?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •