Home
last modified time | relevance | path

Searched refs:half_k (Results 1 – 9 of 9) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudafeatures2d/src/cuda/
H A Dorb.cu173 …_Angle(const PtrStepb image, const short2* loc_, float* angle, const int npoints, const int half_k) in IC_Angle() argument
192 for (int u = threadIdx.x - half_k; u <= half_k; u += blockDim.x) in IC_Angle()
197 for (int v = 1; v <= half_k; ++v) in IC_Angle()
230 …_gpu(PtrStepSzb image, const short2* loc, float* angle, int npoints, int half_k, cudaStream_t stre… in IC_Angle_gpu() argument
237 IC_Angle<<<grid, block, 0, stream>>>(image, loc, angle, npoints, half_k); in IC_Angle_gpu()
/dports/graphics/opencv/opencv-4.5.3/modules/features2d/src/opencl/
H A Dorb.cl89 int nkeypoints, int half_k )
103 for( u = -half_k; u <= half_k; u++ )
107 for( v = 1; v <= half_k; v++ )
/dports/graphics/opencv/opencv-4.5.3/modules/features2d/src/
H A Dorb.cpp88 const UMat& umax, int nkeypoints, int half_k) in ocl_ICAngles() argument
101 nkeypoints, half_k).run(1, globalSize, 0, true); in ocl_ICAngles()
177 std::vector<KeyPoint>& pts, const std::vector<int> & u_max, int half_k) in ICAngles() argument
190 for (int u = -half_k; u <= half_k; ++u) in ICAngles()
194 for (int v = 1; v <= half_k; ++v) in ICAngles()
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/Revoropt/include/Revoropt/RVD/
H A Dpolygon.hpp325 const double half_k = edge.dot(site_diff) ; in e_site_derivative() local
329 grad.noalias() = grad/half_k ; in e_site_derivative()
/dports/graphics/megapov/megapov-1.2.1/source/
H A Dphotons.cpp2341 unsigned int half_k = k / 2; in PQInsert() local
2342 DBL d_half_k_m1 = Distances[half_k - 1]; in PQInsert()
2348 Photons[k - 1] = Photons[half_k - 1]; in PQInsert()
2350 k = half_k; in PQInsert()
/dports/graphics/povray36/povray-3.6.1/source/
H A Dphotons.cpp2280 unsigned int half_k = k / 2; in PQInsert() local
2281 DBL d_half_k_m1 = Distances[half_k - 1]; in PQInsert()
2287 Photons[k - 1] = Photons[half_k - 1]; in PQInsert()
2289 k = half_k; in PQInsert()
/dports/graphics/povray38/povunix-v3.8.0-beta.2-src/source/core/lighting/
H A Dphotons.cpp2150 unsigned int half_k = k / 2; in PQInsert() local
2151 DBL d_half_k_m1 = Distances[half_k - 1]; in PQInsert()
2157 Photons[k - 1] = Photons[half_k - 1]; in PQInsert()
2159 k = half_k; in PQInsert()
/dports/graphics/povray37/povray-3.7.0.10/source/backend/lighting/
H A Dphotons.cpp2238 unsigned int half_k = k / 2; in PQInsert() local
2239 DBL d_half_k_m1 = Distances[half_k - 1]; in PQInsert()
2245 Photons[k - 1] = Photons[half_k - 1]; in PQInsert()
2247 k = half_k; in PQInsert()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudafeatures2d/src/
H A Dorb.cpp64 …_gpu(PtrStepSzb image, const short2* loc, float* angle, int npoints, int half_k, cudaStream_t stre…