I was reading OpenCV library functions that I encountered to this function:
void cv::logPolar(
cv::InputArray src,
cv::OutputArray dst,
cv::Point2f center,
double m,
int flags = cv::INTER_LINEAR | cv::WARP_FILL_OUTLIERS
);
In last argument (flag) it takes two inputs at the same time separated by |
. How is it possible and How does it work?