Home
last modified time | relevance | path

Searched refs:histogramR (Results 1 – 9 of 9) sorted by relevance

/dports/graphics/price/PRICE-1.3.0/
H A DPRHisto.m50 redHeight = histogramR[i]*barHeightScale;
70 if (histogramR[i] > histogramG[i])
78 bar = NSMakeRect(i*barWidth, 0, barWidth, histogramR[i]*barHeightScale);
86 bar = NSMakeRect(i*barWidth, 0, barWidth, histogramR[i]*barHeightScale);
98 bar = NSMakeRect(i*barWidth, 0, barWidth, histogramR[i]*barHeightScale);
106 bar = NSMakeRect(i*barWidth, 0, barWidth, histogramR[i]*barHeightScale);
H A DPRHistogram.m87 histogramR[i] = (float)histogramDenormR[i] / (float)pixNum;
90 if (histogramR[i] + histogramG[i] + histogramB[i] > maxHisto)
91 maxHisto = histogramR[i] + histogramG[i] + histogramB[i];
96 cumulativeHistogramR[0] = histogramR[0];
101 cumulativeHistogramR[i] = cumulativeHistogramR[i-1] + histogramR[i];
H A DPRHistogram.h22 float histogramR[UCHAR_MAX+1]; /* normalized histogram */ variable
H A DPREqualize.m101 float histogramR[UCHAR_MAX+1]; /* normalized histogram */
122 histogramR[i] = (float)histogramDenormR[i] / (float)pixNum;
128 cumulativeHistogramR[0] = histogramR[0];
133 cumulativeHistogramR[i] = cumulativeHistogramR[i-1] + histogramR[i];
H A DPRCurvesView.h33 float histogramR[UCHAR_MAX+1]; /* normalized histogram */ variable
H A DPRCurvesView.m295 histogramR[i] = (float)histogramDenormR[i] / (float)pixNum;
298 if (histogramR[i] > maxHisto)
299 maxHisto = histogramR[i];
339 [pathHR lineToPoint: NSMakePoint(i, histogramR[i] * histoScale)];
/dports/graphics/pinta/pinta-1.7.1/Pinta.Core/Effects/
H A DHistogramRGB.cs48 long[] histogramR = histogram[2]; in AddSurfaceRectangleToHistogram()
59 ++histogramR[ptr->R]; in AddSurfaceRectangleToHistogram()
/dports/graphics/eos-movrec/eos-movrec-0.3.2_beta/
H A Dlivethread.h119 int* histogramR() { return (int*)HistogramR; } in histogramR() function
H A Dhistogramwnd.cpp84 memcpy((void*)HistogramR, (void*)LiveThread->histogramR(), HistogramSize*sizeof(int)); in updateHistogram()