File: pan.c

package info (click to toggle)
libpano13 2.9.19%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,736 kB
  • ctags: 3,225
  • sloc: ansic: 34,695; sh: 11,214; makefile: 311; perl: 242
file content (195 lines) | stat: -rw-r--r-- 5,102 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* Panorama_Tools	-	Generate, Edit and Convert Panoramic Images
   Copyright (C) 1998,1999 - Helmut Dersch  der@fh-furtwangen.de
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this software; see the file COPYING.  If not, a copy
   can be downloaded from http://www.gnu.org/licenses/gpl.html, or
   obtained by writing to the Free Software Foundation, Inc.,
   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */

/*------------------------------------------------------------*/


#include "filter.h"

void 	pan	(TrformStr *TrPtr, panControls *pc )
{
	int	 		destwidth, destheight;
	aPrefs		aP;
	double		hfov;
	Image		*im, buf;


	if( readPrefs( (char*)&aP, _adjust ) != 0 )
	{
		PrintError("Could not read Preferences");
		TrPtr->success = 0;
		return;
	}

	switch( TrPtr->tool )
	{
		case _apply:			
			// Maybe the viewing window has been resized (Hopefully not more!)
			aP.im.width			= TrPtr->src->width;
			aP.im.height		= TrPtr->src->height;
			
			// pano must be the saved buffer image
			if( *aP.sBuf.destName == 0  || LoadBufImage( &aP.pano, aP.sBuf.destName, 0) != 0 )
			{
				PrintError("Could not load Buffer");
				TrPtr->success = 0;
				return;
			}
			
			im					= TrPtr->dest;
			TrPtr->dest 		= &aP.pano;
			TrPtr->dest->data 	= (unsigned char**) mymalloc( (size_t)TrPtr->dest->dataSize );
			if( TrPtr->dest->data == NULL )
			{
				PrintError( "Not enough memory to create Panorama");
				TrPtr->success = 0;
				return;
			}
			TrPtr->mode				|= _honor_valid;

			CopyPosition( TrPtr->src, &(aP.im) );
			addAlpha( TrPtr->src ); // Add alpha channel to indicate valid data
		
			MakePano( TrPtr,  &aP );

			// Stitch images; Proceed only if panoramic image valid
				
			if( TrPtr->success )
			{
				// Now load the whole bufferimage

				if(  LoadBufImage( &buf, aP.sBuf.destName, 1 ) != 0  )
				{
					PrintError( "Not enough Memory to merge Images" );
				}
				else 
				{
					if( merge( TrPtr->dest , &buf, aP.sBuf.feather, TrPtr->mode & _show_progress, _dest ) != 0 )
					{
						PrintError( "Error merging images" );
					}
					else
					{
						if( SaveBufImage( TrPtr->dest, aP.sBuf.destName ) != 0 )
							PrintError( "Could not save Buffer Image.");
					}
					myfree( (void**)buf.data );
				}

			} // Tr.success 
			
			TrPtr->success = 0;
			myfree( (void**)TrPtr->dest->data );
			TrPtr->dest = im;
			break;
		case _getPano:
			
			// Load buffer into dest
			// destSupplied is not allowed here!
			
			if( *aP.sBuf.destName == 0  || LoadBufImage( TrPtr->dest, aP.sBuf.destName, 1) != 0 )
			{
				PrintError("Could not load Buffer");
				TrPtr->success = 0;
			}
			else
				TrPtr->success = 1;
			break;
		case _increment:
			if( SetPanPrefs( pc ) )
				writePrefs( (char*)pc, _panleft );
			TrPtr->success = 0; // don't destroy source!
			break;
		default:
			switch( TrPtr->tool )
			{
				case _panright:
					aP.im.yaw += pc->panAngle;
					NORM_ANGLE( aP.im.yaw );
					break;
				case _panleft:
					aP.im.yaw -= pc->panAngle;
					NORM_ANGLE( aP.im.yaw );
					break;
				case _panup:
					aP.im.pitch += pc->panAngle;
					NORM_ANGLE( aP.im.pitch );
					break;
				case _pandown:
					aP.im.pitch -= pc->panAngle;
					NORM_ANGLE( aP.im.pitch );
					break;
				case _zoomin:
					hfov = aP.im.hfov / ((100.0 + pc->zoomFactor)/100.0);
					if( aP.im.format != _rectilinear || hfov < 180.0 )
						aP.im.hfov = hfov;
					break;
				case _zoomout:
					hfov = aP.im.hfov * ((100.0 + pc->zoomFactor)/100.0);
					if( aP.im.format != _rectilinear || hfov < 180.0 )
						aP.im.hfov = hfov;
					break;
				default: break;
			}
			// Maybe the viewing window has been resized (Hopefully not more!)
			aP.im.width			= TrPtr->src->width;
			aP.im.height		= TrPtr->src->height;


			destheight 				= aP.im.height;
			destwidth 				= aP.im.width;
			
			if( SetDestImage( TrPtr, destwidth, destheight) != 0)
			{
				PrintError("Could not allocate %ld bytes",TrPtr->dest->dataSize );
				TrPtr->success = 0;
				return;
			}
			TrPtr->mode				|= _honor_valid;

			if( LoadBufImage( &aP.pano, aP.sBuf.destName, 1) != 0 )
			{
				PrintError("Could not load Buffer" );
				TrPtr->success = 0;
				return;
			}
						
			im = TrPtr->src;
			TrPtr->src = &aP.pano;

			if( aP.pano.hfov == 360.0 )
				TrPtr->mode				|= _wrapX;
			
			ExtractStill( TrPtr , &aP );

			myfree( (void**)TrPtr->src->data );
			TrPtr->src = im;
			
			if(TrPtr->success)
				writePrefs(  (char*)&aP, _adjust );

			if( TrPtr->success == 0 && ! (TrPtr->mode & _destSupplied))
				myfree( (void**)TrPtr->dest->data );
			break;
		
	}
}