Add facility to read frames in RGB & RGBA format
[imageviewer.git] / chromaResample.h
blob2a5152b81f8fcbcaa2cf14eaceaf173977d0cb0e
1 /* ***** BEGIN LICENSE BLOCK *****
3 * $Id$
5 * The MIT License
7 * Copyright (c) 2008 BBC Research
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * THE SOFTWARE.
27 * ***** END LICENSE BLOCK ***** */
29 #ifndef __CHROMARESAMPLE_H
30 #define __CHROMARESAMPLE_H
32 #include "rawFrame.h"
34 class ChromaResample {
35 public:
37 ChromaResample(int inWidth, int inHeight, RawFrame::Chroma destType) :
38 _width(inWidth), _height(inHeight), _resampled(inWidth, inHeight,
39 destType)
43 const RawFrame& process(const RawFrame &src);
44 void process_ext(const RawFrame &src, RawFrame& dest);
46 protected:
48 void copyArray(const Array2d<int>& src, Array2d<int>& dest);
50 //frame conversion functions
51 void to444(const RawFrame& src, RawFrame& dest);
52 void to422(const RawFrame& src, RawFrame& dest);
53 void to420(const RawFrame& src, RawFrame& dest);
54 void to411(const RawFrame& src, RawFrame& dest);
55 void toYonly(const RawFrame& src, RawFrame& dest);
57 //array interpolation / subsampling functions
58 void horizSubsample(const Array2d<int>& in, Array2d<int>& out);
59 void vertSubsample(const Array2d<int>& in, Array2d<int>& out);
60 void horizInterp(const Array2d<int>& in, Array2d<int>& out);
61 void vertInterp(const Array2d<int>& in, Array2d<int>& out);
63 /* input size */
64 const int _width;
65 const int _height;
67 /* output */
68 RawFrame _resampled;
71 #endif