2
Answers

Morphing a Fisheye to Panorama

Sascha B

Sascha B

14y
12.9k
1
Hello :)

Currently I want to code a program that morphs a fisheye image to a panorama image.
I found this really great page about transforming those images with some functions.
http://www.fisheyelens.de/html/pano-def.html (site is in German language)
Has someone of you worked with images and did works beyond resizing, coloring, stretching etc. ?
I'm totally new to work with images and also it's a difficult task. 
Because it seems that I have to re arrange every pixel with one of these functions and not 
only call one method for the complete picture.
So could you give me a hint on how to use these functions?

I hope it was understandable.

Answers (2)
0
wooi83
NA 18 0 21y
thanks for mentioning connection string. i did close the connection in the connection method. infact i mustn't do that.. thanks alot...
0
subbaram_k
NA 2 0 21y
int intParamCount = 0; SqlParameter[] sqlParam=new SqlParameter[2]; SqlCommand objInsertCommand=new SqlCommand("sp_InsertReserve",objConn); //specify the connection objInsertCommand.CommandType =CommandType.StoredProcedure; //Associate Parameters sqlParam[0]=new SqlParameter("@reservationUserID",SqlDbType.VarChar ); sqlParam[0].Direction =ParameterDirection.Input ; sqlParam[0].Value =UID; sqlParam[1]=new SqlParameter("@reservationBookID",SqlDbType.VarChar ); sqlParam[1].Direction =ParameterDirection.Input ; sqlParam[1].Value =BID; while(intParamCount
0
jaac79
NA 34 0 21y
In your code where are you setting the connection object?