template struct cv::cudev::IsPowerOf2
#include <type_traits.hpp> template <int N> struct IsPowerOf2 { // enums enum { value = ((N != 0)&& !(N& (N - 1))), }; };
#include <type_traits.hpp> template <int N> struct IsPowerOf2 { // enums enum { value = ((N != 0)&& !(N& (N - 1))), }; };