Home
last modified time | relevance | path

Searched refs:otherPix (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/openfx-misc/openfx-misc-3ab0531/TrackerPM/
H A DTrackerPM.cpp381 assert(refPix && otherPix); in computeScore()
393 otherSsq -= weight * aggregateCC(otherPix[c], otherPix[c]); in computeScore()
397 … otherSsq -= weight * aggregateNCC(otherPix[c], otherMean[c], otherPix[c], otherMean[c]); in computeScore()
518 PIX otherPix) in aggregateSD() argument
520 double d = (double)refPix - otherPix; in aggregateSD()
526 PIX otherPix) in aggregateAD() argument
528 return std::abs( (double)refPix - otherPix ); in aggregateAD()
532 PIX otherPix) in aggregateCC() argument
534 return -(double)refPix * otherPix; in aggregateCC()
539 PIX otherPix, in aggregateNCC() argument
[all …]
/dports/games/scummvm/scummvm-2.5.1/graphics/
H A Dpixelbuffer.h152 inline void setPixelAt(int thisPix, const PixelBuffer &buf, int otherPix) { in setPixelAt() argument
154 memcpy(getRawBuffer(thisPix), buf.getRawBuffer(otherPix), _format.bytesPerPixel); in setPixelAt()
158 buf.getARGBAt(otherPix, a, r, g, b); in setPixelAt()
/dports/games/residualvm/residualvm-0.3.1/graphics/
H A Dpixelbuffer.h157 inline void setPixelAt(int thisPix, const PixelBuffer &buf, int otherPix) { in setPixelAt() argument
159 memcpy(getRawBuffer(thisPix), buf.getRawBuffer(otherPix), _format.bytesPerPixel); in setPixelAt()
163 buf.getARGBAt(otherPix, a, r, g, b); in setPixelAt()
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/common/trop/
H A Draster_edge_iterator.h81 pixel_type *otherPix() const { return m_rightSide ? m_leftPix : m_rightPix; } in otherPix() function