allow translation of demosaic methods; hide Sub-Image selector for files with onyl 1 raw file; ...

This commit is contained in:
heckflosse
2017-03-22 14:13:51 +01:00
parent a7511f754e
commit 9bb5164cce
18 changed files with 149 additions and 56 deletions

View File

@@ -51,6 +51,8 @@ public:
void getAutoWBMultipliers (double &rm, double &gm, double &bm);
ColorTemp getSpotWB (std::vector<Coord2D> &red, std::vector<Coord2D> &green, std::vector<Coord2D> &blue, int tran, double equal);
eSensorType getSensorType() const {return ST_NONE;}
bool isWBProviderReady ()
{
return true;
@@ -96,6 +98,8 @@ public:
return rgbSourceModified;
}
void setCurrentFrame(unsigned int frameNum) {}
int getFrameCount() {return 1;}
void getRawValues(int x, int y, int rotate, int &R, int &G, int &B) { R = G = B = 0;}