Home
last modified time | relevance | path

Searched refs:dst_cols (Results 1 – 25 of 59) sorted by relevance

123

/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/opencl/
H A Dmatch_template.cl220 if (x < dst_cols && y < dst_rows)
250 if (x < dst_cols && y < dst_rows)
274 if (x < dst_cols && y < dst_rows)
305 if (x < dst_cols && y < dst_rows)
331 if (x < dst_cols && y < dst_rows)
359 if (x < dst_cols && y < dst_rows)
385 if (x < dst_cols && y < dst_rows)
414 if (x < dst_cols && y < dst_rows)
458 if (x < dst_cols && y < dst_rows)
489 if (x < dst_cols && y < dst_rows)
[all …]
H A Dresize.cl134 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
140 if (dx < dst_cols && dy < dst_rows)
142 __global const int * xofs = (__global const int *)(buffer), * yofs = xofs + dst_cols;
144 __global const short * ibeta = ialpha + ((dst_cols + dy) << 1);
170 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
176 if (dx < dst_cols && dy < dst_rows)
232 if (dx < dst_cols && dy < dst_rows)
254 if (dx < dst_cols && dy < dst_rows)
282 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
289 if (dx < dst_cols && dy < dst_rows)
[all …]
H A Dwarp_transform.cl10 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
17 if (x >= dst_cols || y >= dst_rows) return;
76 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
83 if (x >= dst_cols || y >= dst_rows) return;
154 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
161 if (x >= dst_cols || y >= dst_rows) return;
237 if (x >= dst_cols || y >= dst_rows) return;
272 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
279 if (x >= dst_cols || y >= dst_rows) return;
326 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
[all …]
H A Dcorner.cl96 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols, float k)
136 int clamped_col = min(2*dst_cols, col);
192 if (posX < dst_cols && (posY) < dst_rows)
198 if (posX < dst_cols && (posY + 1) < dst_rows)
205 if (posX < dst_cols && (posY) < dst_rows)
213 if (posX < dst_cols && (posY + 1) < dst_rows)
H A Dremap.cl144 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
152 if (x < dst_cols)
191 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
198 if (x < dst_cols)
231 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
238 if (x < dst_cols)
279 if (x < dst_cols)
335 if (x < dst_cols)
399 if (x < dst_cols)
501 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
[all …]
H A Dcalc_back_project.cl75 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
80 if (x < dst_cols && y < dst_rows)
117 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
122 if (x < dst_cols && y < dst_rows)
H A Dbilateral.cl60 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
66 if (y < dst_rows && x < dst_cols)
100 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
105 if (y < dst_rows && x < dst_cols / 4 )
H A Dwarp_perspective.cl87 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
93 if (dx < dst_cols && dy < dst_rows)
117 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
123 if (dx < dst_cols && dy < dst_rows)
179 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
185 if (dx < dst_cols && dy < dst_rows)
H A Dlaplacian5.cl15 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
21 if (y < dst_rows && x < dst_cols)
104 … __global uchar* Dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
165 if ((x < dst_cols) && (y + liy < dst_rows))
H A Dpyramid_up.cl11 … __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
16 if ((block_x * 4) >= dst_cols || y >= dst_rows) return;
45 bool row_e = ((block_x + 1) * 4 == dst_cols);
H A DfilterSepRow.cl158 … __global float * dst, int dst_step_in_pixel, int dst_cols, int dst_rows,
280 if ((x+3<dst_cols) & (y<dst_rows))
282 else if ((x+2<dst_cols) && (y<dst_rows))
288 else if ((x+1<dst_cols) && (y<dst_rows))
293 else if (x<dst_cols && y<dst_rows)
299 __global uchar * dst, int dst_step, int dst_cols, int dst_rows,
383 if (x < dst_cols && y < dst_rows)
H A Daccumulate.cl25 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols
37 if (x < dst_cols)
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudastereo/src/cuda/
H A Dstereobp.cu258 …__global__ void data_step_down(int dst_cols, int dst_rows, int src_cols, int src_rows, const PtrSt… in data_step_down() argument
263 if (x < dst_cols && y < dst_rows) in data_step_down()
288 grid.x = divUp(dst_cols, threads.x); in data_step_down_gpu()
291 …data_step_down<T><<<grid, threads, 0, stream>>>(dst_cols, dst_rows, src_cols, src_rows, (PtrStepSz… in data_step_down_gpu()
306 …__global__ void level_up_message(int dst_cols, int dst_rows, int src_rows, const PtrStep<T> src, P… in level_up_message() argument
311 if (x < dst_cols && y < dst_rows) in level_up_message()
330 grid.x = divUp(dst_cols, threads.x); in level_up_messages_gpu()
335 …level_up_message<T><<<grid, threads, 0, stream>>>(dst_cols, dst_rows, src_rows, (PtrStepSz<T>)mus[… in level_up_messages_gpu()
338 …level_up_message<T><<<grid, threads, 0, stream>>>(dst_cols, dst_rows, src_rows, (PtrStepSz<T>)mds[… in level_up_messages_gpu()
341 …level_up_message<T><<<grid, threads, 0, stream>>>(dst_cols, dst_rows, src_rows, (PtrStepSz<T>)mls[… in level_up_messages_gpu()
[all …]
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudev/include/opencv2/cudev/grid/detail/
H A Dpyr_up.hpp61 …obPtr<DstType> dst, const int src_rows, const int src_cols, const int dst_rows, const int dst_cols) in pyrUp() argument
152 if (x < dst_cols && y < dst_rows) in pyrUp()
157 …st GlobPtr<DstType>& dst, int src_rows, int src_cols, int dst_rows, int dst_cols, cudaStream_t str… in pyrUp() argument
160 const dim3 grid(divUp(dst_cols, block.x), divUp(dst_rows, block.y)); in pyrUp()
162 pyrUp<<<grid, block, 0, stream>>>(src, dst, src_rows, src_cols, dst_rows, dst_cols); in pyrUp()
H A Dpyr_down.hpp61 …const SrcPtr src, GlobPtr<DstType> dst, const int src_rows, const int src_cols, const int dst_cols) in pyrDown() argument
180 if (dst_x < dst_cols) in pyrDown()
186 …st GlobPtr<DstType>& dst, int src_rows, int src_cols, int dst_rows, int dst_cols, cudaStream_t str… in pyrDown() argument
191 pyrDown<Brd><<<grid, block, 0, stream>>>(src, dst, src_rows, src_cols, dst_cols); in pyrDown()
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/stan/math/opencl/kernels/
H A Dsub_block.hpp47 unsigned int dst_cols, unsigned int triangular_view) {
51 && (i + dst_offset_i) < dst_rows && (j + dst_offset_j) < dst_cols) {
/dports/graphics/py-scikit-image/scikit-image-0.19.0/doc/examples/transform/
H A Dplot_piecewise_affine.py25 dst_cols = src[:, 0] variable
28 dst = np.vstack([dst_cols, dst_rows]).T
/dports/devel/interactive_rebase_tool/git-interactive-rebase-tool-1.2.1/cargo-crates/pdcurses-sys-0.7.0/src/PDCurses/pdcurses/
H A Doverlay.c192 int src_rows, src_cols, dst_rows, dst_cols; in copywin() local
204 dst_cols = dst_bc - dst_tc + 1; in copywin()
207 min_cols = min(src_cols, dst_cols); in copywin()
/dports/devel/pdcurses/PDCurses-3.5/pdcurses/
H A Doverlay.c192 int src_rows, src_cols, dst_rows, dst_cols; in copywin() local
204 dst_cols = dst_bc - dst_tc + 1; in copywin()
207 min_cols = min(src_cols, dst_cols); in copywin()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/pdcurses-sys-0.7.1/src/PDCurses/pdcurses/
H A Doverlay.c192 int src_rows, src_cols, dst_rows, dst_cols;
204 dst_cols = dst_bc - dst_tc + 1;
207 min_cols = min(src_cols, dst_cols);
/dports/multimedia/musikcube/musikcube-0.96.7/src/3rdparty/win32_src/pdcurses/
H A Doverlay.c192 int src_rows, src_cols, dst_rows, dst_cols; in copywin() local
204 dst_cols = dst_bc - dst_tc + 1; in copywin()
207 min_cols = min(src_cols, dst_cols); in copywin()
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/opencl/
H A Dfft.cl545 FT scale = (FT) 1/dst_cols;
547 FT scale = (FT) 1/(dst_cols*dst_rows);
568 const int cols = dst_cols/2 + 1;
570 const int cols = dst_cols;
591 for (int i=x; i<dst_cols-1; i+=block_size)
606 for (int i=x; i<dst_cols; i+=block_size)
625 FT scale = 1.f/(dst_rows*dst_cols);
651 else if (x == (dst_cols+1)/2)
680 const FT scale = (FT) 1/dst_cols;
682 const FT scale = (FT) 1/(dst_cols*dst_rows);
[all …]
H A Dnormalize.cl32 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols
44 if (x < dst_cols)
/dports/devel/mingw32-pdcurses/PDCurses-3.4/pdcurses/
H A Doverlay.c234 int src_rows, src_cols, dst_rows, dst_cols; in copywin() local
246 dst_cols = dst_bc - dst_tc + 1; in copywin()
249 min_cols = min(src_cols, dst_cols); in copywin()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudastereo/src/
H A Dstereobp.cpp64 …void data_step_down_gpu(int dst_cols, int dst_rows, int src_cols, int src_rows, const PtrStepSzb& …
66 …void level_up_messages_gpu(int dst_idx, int dst_cols, int dst_rows, int src_rows, PtrStepSzb* mus,…
286 …typedef void (*data_step_down_t)(int dst_cols, int dst_rows, int src_cols, int src_rows, const Ptr… in calcBP()
292 …typedef void (*level_up_messages_t)(int dst_idx, int dst_cols, int dst_rows, int src_rows, PtrStep… in calcBP()

123