mirror of
https://github.com/opencv/opencv.git
synced 2024-11-28 05:06:29 +08:00
Remove compiler warnings
This commit is contained in:
parent
f617f18e46
commit
a7ffcaab28
@ -242,7 +242,7 @@ TEST(EqualizeHistIssue, Issue18035)
|
||||
imgPaths.push_back(std::string(cvtest::TS::ptr()->get_data_path()) + "../cv/shared/graffiti.png");
|
||||
imgPaths.push_back(std::string(cvtest::TS::ptr()->get_data_path()) + "../cv/shared/lena.png");
|
||||
|
||||
for (int i = 0; i < imgPaths.size(); ++i)
|
||||
for (size_t i = 0; i < imgPaths.size(); ++i)
|
||||
{
|
||||
std::string imgPath = imgPaths[i];
|
||||
cv::Mat src = cv::imread(imgPath, cv::IMREAD_GRAYSCALE);
|
||||
|
@ -116,15 +116,15 @@ namespace tvl1flow
|
||||
texture<float, cudaTextureType2D, cudaReadModeElementType> tex_I1y(false, cudaFilterModePoint, cudaAddressModeClamp);
|
||||
struct SrcTexRef : SrcTex
|
||||
{
|
||||
__device__ __forceinline__ float I1(float x, float y) const override
|
||||
__device__ __forceinline__ float I1(float x, float y) const CV_OVERRIDE
|
||||
{
|
||||
return tex2D(tex_I1, x, y);
|
||||
}
|
||||
__device__ __forceinline__ float I1x(float x, float y) const override
|
||||
__device__ __forceinline__ float I1x(float x, float y) const CV_OVERRIDE
|
||||
{
|
||||
return tex2D(tex_I1x, x, y);
|
||||
}
|
||||
__device__ __forceinline__ float I1y(float x, float y) const override
|
||||
__device__ __forceinline__ float I1y(float x, float y) const CV_OVERRIDE
|
||||
{
|
||||
return tex2D(tex_I1y, x, y);
|
||||
}
|
||||
@ -135,15 +135,15 @@ namespace tvl1flow
|
||||
__host__ SrcTexObj(cudaTextureObject_t tex_obj_I1_, cudaTextureObject_t tex_obj_I1x_, cudaTextureObject_t tex_obj_I1y_)
|
||||
: tex_obj_I1(tex_obj_I1_), tex_obj_I1x(tex_obj_I1x_), tex_obj_I1y(tex_obj_I1y_) {}
|
||||
|
||||
__device__ __forceinline__ float I1(float x, float y) const override
|
||||
__device__ __forceinline__ float I1(float x, float y) const CV_OVERRIDE
|
||||
{
|
||||
return tex2D<float>(tex_obj_I1, x, y);
|
||||
}
|
||||
__device__ __forceinline__ float I1x(float x, float y) const override
|
||||
__device__ __forceinline__ float I1x(float x, float y) const CV_OVERRIDE
|
||||
{
|
||||
return tex2D<float>(tex_obj_I1x, x, y);
|
||||
}
|
||||
__device__ __forceinline__ float I1y(float x, float y) const override
|
||||
__device__ __forceinline__ float I1y(float x, float y) const CV_OVERRIDE
|
||||
{
|
||||
return tex2D<float>(tex_obj_I1y, x, y);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user