#include "iclMirrorOp.h" #include namespace icl{ template void MirrorOp::mirror (const ImgBase *poSrc, ImgBase *poDst) { const Img *poS = (const Img*) poSrc; Img *poD = (Img*) poDst; for(int c=0; c < poSrc->getChannels(); c++) { flippedCopyChannelROI (m_eAxis, poS, c, m_oSrcOffset, m_oSize, poD, c, m_oDstOffset, m_oSize); } } MirrorOp::MirrorOp (axis eAxis) : m_eAxis (eAxis) { this->m_aMethods[depth8u] = &MirrorOp::mirror; this->m_aMethods[depth16s] = &MirrorOp::mirror; this->m_aMethods[depth32s] = &MirrorOp::mirror; this->m_aMethods[depth32f] = &MirrorOp::mirror; this->m_aMethods[depth64f] = &MirrorOp::mirror; } void MirrorOp::apply (const ImgBase *poSrc, ImgBase **ppoDst) { Point oROIOffset; if (getClipToROI()) { m_oSrcOffset = poSrc->getROIOffset(); oROIOffset = m_oDstOffset = Point::null; m_oSize = poSrc->getROISize(); } else { m_oDstOffset = m_oSrcOffset = Point::null; m_oSize = poSrc->getSize(); oROIOffset = poSrc->getROIOffset(); if (m_eAxis == axisHorz || m_eAxis == axisBoth) oROIOffset.y = m_oSize.height - oROIOffset.y - poSrc->getROISize().height; if (m_eAxis == axisVert || m_eAxis == axisBoth) oROIOffset.x = m_oSize.width - oROIOffset.x - poSrc->getROISize().width; } if (UnaryOp::prepare (ppoDst, poSrc->getDepth(), m_oSize, poSrc->getFormat(), poSrc->getChannels(), Rect (oROIOffset, poSrc->getROISize()), poSrc->getTime())) (this->*(m_aMethods[poSrc->getDepth()]))(poSrc, *ppoDst); } }