~ubuntu-branches/ubuntu/vivid/rawstudio/vivid

« back to all changes in this revision

Viewing changes to plugins/denoise/floatimageplane.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2011-07-28 17:36:32 UTC
  • mfrom: (2.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20110728173632-5czluz9ye3c83zc5
Tags: 2.0-1
* [3750b2cf] Merge commit 'upstream/2.0'
* [63637468] Removing Patch, not necessary anymore.
* [2fb580dc] Add new build-dependencies.
* [c57d953b] Run dh_autoreconf due to patches in configure.in
* [13febe39] Add patch to remove the libssl requirement.
* [5ae773fe] Replace libjpeg62-dev by libjpeg8-dev :)
* [1969d755] Don't build static libraries.
* [7cfe0a2e] Add a patch to fix the plugin directory path.
  As plugins are shared libraries, they need to go into /usr/lib,
  not into /usr/share.
  Thanks to Andrew McMillan
* [c1d0d9dd] Don't install .la files for all plugins and libraries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * * Copyright (C) 2006-2011 Anders Brander <anders@brander.dk>, 
 
3
 * * Anders Kvist <akv@lnxbx.dk> and Klaus Post <klauspost@gmail.com>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU General Public License
 
7
 * as published by the Free Software Foundation; either version 2
 
8
 * of the License, or (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef imageplane_h__
 
21
#define imageplane_h__
 
22
#include "jobqueue.h"
 
23
#include <rawstudio.h>
 
24
#include <vector>
 
25
#include "complexfilter.h"
 
26
 
 
27
namespace RawStudio {
 
28
namespace FFTFilter {
 
29
 
 
30
 
 
31
using namespace std;
 
32
class FFTWindow;
 
33
 
 
34
class FloatImagePlane
 
35
{
 
36
public:
 
37
  FloatImagePlane(int _w, int _h, int id = -1);
 
38
  FloatImagePlane(const FloatImagePlane& p);
 
39
  virtual ~FloatImagePlane(void);
 
40
  void allocateImage(); 
 
41
  void mirrorEdges(int mirror_x, int mirror_y);
 
42
  gfloat* getLine(int y);
 
43
  gfloat* getAt(int x, int y);
 
44
  FloatImagePlane* getSlice(int x,int y,int new_w, int new_h);
 
45
  void blitOnto(FloatImagePlane *dst);
 
46
  void multiply(float mul);
 
47
  void addJobs(JobQueue *jobs, int bw, int bh, int ox, int oy, FloatImagePlane *outPlane);
 
48
  void applySlice(PlanarImageSlice *p);
 
49
  const int w;
 
50
  const int h;
 
51
  gfloat* data;
 
52
  int plane_id;
 
53
  ComplexFilter* filter;
 
54
  FFTWindow* window;
 
55
  int pitch;    // Not in bytes, but in floats
 
56
private:
 
57
  gfloat* allocated;
 
58
};
 
59
 
 
60
void FBitBlt(guchar* dstp, int dst_pitch, const guchar* srcp, int src_pitch, int row_size, int height);
 
61
 
 
62
}} // namespace RawStudio::FFTFilter
 
63
 
 
64
#endif // imageplane_h__