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

Merge pull request #28863 from SheliaJimenez:dnn-bug-fix

add CV_64S type support to modules/dnn/src/layers/gatherND.cpp
This commit is contained in:
Alexander Smorkalov
2026-04-25 11:33:59 +03:00
committed by GitHub
+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;