1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

add CV_64S type support to modules/dnn/src/layers/gatherND.cpp

This commit is contained in:
SheliaJimenez
2026-04-23 09:08:17 +08:00
parent d95badefa4
commit 50ba8fdbdb
+1
View File
@@ -112,6 +112,7 @@ public:
case CV_16F: forward_impl<int64_t, int16_t>(data, indices, out); break;
case CV_32F: forward_impl<int64_t, float>(data, indices, out); break;
case CV_64F: forward_impl<int64_t, double>(data, indices, out); break;
case CV_64S: forward_impl<int64_t, int64_t>(data, indices, out); break;
default: CV_Error(Error::StsNotImplemented, "Unsupported data type");
}
} break;