Home
last modified time | relevance | path

Searched refs:nj1 (Results 1 – 25 of 142) sorted by relevance

123456

/dports/misc/vxl/vxl-3.3.2/core/vil/algo/
H A Dvil_find_4con_boundary.h22 int ni1, int nj1, in vil_next_point_below_thresh4() argument
33 if (j<nj1 && p[jstep]<=threshold) { ++j; p+=jstep; dir=0; return; } in vil_next_point_below_thresh4()
50 … int ni1, int nj1, std::ptrdiff_t istep, std::ptrdiff_t jstep, in vil_next_point_above_thresh4() argument
60 if (j<nj1 && p[jstep]>=threshold) { ++j; p+=jstep; dir=0; return; } in vil_next_point_above_thresh4()
87 int nj1 = image.nj()-1; in vil_find_4con_boundary_below_threshold() local
101 while (j<nj1 && p[jstep]<=threshold) {j++;p+=jstep;} in vil_find_4con_boundary_below_threshold()
110 vil_next_point_below_thresh4(i,j,dir,p,ni1,nj1,istep,jstep,threshold); in vil_find_4con_boundary_below_threshold()
130 int nj1 = image.nj()-1; in vil_find_4con_boundary_above_threshold() local
144 while (j<nj1 && p[jstep]>=threshold) {j++;p+=jstep;} in vil_find_4con_boundary_above_threshold()
153 vil_next_point_above_thresh4(i,j,dir,p,ni1,nj1,istep,jstep,threshold); in vil_find_4con_boundary_above_threshold()
H A Dvil_flood_fill.h49 unsigned nj1=image.nj()-1; in vil_flood_fill4() local
51 if (seed_i>ni1 || seed_j>nj1) return; // Seed outside image in vil_flood_fill4()
74 if (j<nj1) in vil_flood_fill4()
104 unsigned nj1=image.nj()-1; in vil_flood_fill4() local
106 if (seed_i>ni1 || seed_j>nj1) return; // Seed outside image in vil_flood_fill4()
131 if (j<nj1) in vil_flood_fill4()
157 unsigned nj1=image.nj()-1; in vil_flood_fill8() local
159 if (seed_i>ni1 || seed_j>nj1) return; // Seed outside image in vil_flood_fill8()
185 if (j<nj1) in vil_flood_fill8()
215 unsigned nj1=image.nj()-1; in vil_flood_fill8() local
[all …]
H A Dvil_sobel_1x3.cxx65 const unsigned nj1 = nj - 1; in vil_sobel_1x3_1plane() local
71 for (unsigned j = 1; j < nj1; ++j) in vil_sobel_1x3_1plane()
178 const unsigned nj1 = nj - 1; in vil_sobel_1x3_1plane() local
184 for (unsigned j = 1; j < nj1; ++j) in vil_sobel_1x3_1plane()
291 const unsigned nj1 = nj - 1; in vil_sobel_1x3_1plane() local
297 for (unsigned j = 1; j < nj1; ++j) in vil_sobel_1x3_1plane()
402 const unsigned nj1 = nj - 1; in vil_sobel_1x3_1plane() local
408 for (unsigned j = 1; j < nj1; ++j) in vil_sobel_1x3_1plane()
H A Dvil_sobel_3x3.cxx69 const unsigned nj1 = nj - 1; in vil_sobel_3x3_1plane() local
75 for (unsigned j = 1; j < nj1; ++j) in vil_sobel_3x3_1plane()
186 const unsigned nj1 = nj - 1; in vil_sobel_3x3_1plane() local
192 for (unsigned j = 1; j < nj1; ++j) in vil_sobel_3x3_1plane()
303 const unsigned nj1 = nj - 1; in vil_sobel_3x3_1plane() local
309 for (unsigned j = 1; j < nj1; ++j) in vil_sobel_3x3_1plane()
418 const unsigned nj1 = nj - 1; in vil_sobel_3x3_1plane() local
424 for (unsigned j = 1; j < nj1; ++j) in vil_sobel_3x3_1plane()
H A Dvil_find_peaks.h47 const unsigned ni1=image.ni()-1,nj1=image.nj()-1; variable
50 for (unsigned j=1;j<nj1;++j,row+=jstep)
158 const unsigned ni1=image.ni()-1,nj1=image.nj()-1; variable
162 for (unsigned j=1;j<nj1;++j,row+=jstep)
H A Dvil_find_plateaus.h47 const unsigned ni1=image.ni()-1,nj1=image.nj()-1; variable
50 for (unsigned j=1;j<nj1;++j,row+=jstep)
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bil/algo/
H A Dbil_trace_8con_boundary.cxx13 int ni1, int nj1, in bil_next_8con_boundary_point() argument
23 if (i<ni1 && j<nj1 && p[istep+jstep]) { in bil_next_8con_boundary_point()
26 if (j<nj1 && p[jstep]) { ++j; p+=jstep; dir=7; return; } in bil_next_8con_boundary_point()
28 if (i>0 && j<nj1 && p[jstep-istep]) { in bil_next_8con_boundary_point()
81 unsigned int nj1 = image.nj()-1; in bil_trace_8con_boundary() local
95 bil_next_8con_boundary_point(i,j,dir,p,ni1,nj1,istep,jstep); in bil_trace_8con_boundary()
107 bil_next_8con_boundary_point(i,j,dir,p,ni1,nj1,istep,jstep); in bil_trace_8con_boundary()
116 bil_next_8con_boundary_point(i,j,dir,p,ni1,nj1,istep,jstep); in bil_trace_8con_boundary()
120 bil_next_8con_boundary_point(i,j,dir,p,ni1,nj1,istep,jstep); in bil_trace_8con_boundary()
H A Dbil_trace_4con_boundary.cxx13 int ni1, int nj1, in bil_next_4con_boundary_point() argument
23 if (j<nj1 && p[jstep]) { ++j; p+=jstep; dir=0; return; } in bil_next_4con_boundary_point()
58 unsigned int nj1 = image.nj()-1; in bil_trace_4con_boundary() local
72 bil_next_4con_boundary_point(i,j,dir,p,ni1,nj1,istep,jstep); in bil_trace_4con_boundary()
83 bil_next_4con_boundary_point(i,j,dir,p,ni1,nj1,istep,jstep); in bil_trace_4con_boundary()
92 bil_next_4con_boundary_point(i,j,dir,p,ni1,nj1,istep,jstep); in bil_trace_4con_boundary()
/dports/misc/vxl/vxl-3.3.2/contrib/mul/vil3d/tests/
H A Dtest_algo_abs_shuffle_distance.cxx53 unsigned ni1=Nx-10, nj1=Ny-10, nk1=Nz-10; in test_algo_abs_shuffle_distance() local
54 vil3d_image_view<int> sub_im1 = vil3d_crop(image0,2,ni1,2,nj1,2,nk1); in test_algo_abs_shuffle_distance()
55 vil3d_image_view<int> sub_im2 = vil3d_crop(image0,3,ni1,2,nj1,2,nk1); in test_algo_abs_shuffle_distance()
56 vil3d_image_view<int> sub_im3 = vil3d_crop(image0,4,ni1,2,nj1,2,nk1); in test_algo_abs_shuffle_distance()
57 image1.set_size(ni1,nj1,nk1); in test_algo_abs_shuffle_distance()
71 vil3d_image_view<int> image2(ni1,nj1,nk1); in test_algo_abs_shuffle_distance()
/dports/misc/vxl/vxl-3.3.2/contrib/mul/vil3d/algo/
H A Dvil3d_grad_1x3.cxx60 const unsigned nj1 = nj-1; in vil3d_grad_1x3_1plane() local
70 for (unsigned j=1;j<nj1;++j) in vil3d_grad_1x3_1plane()
126 const unsigned nj1 = nj-1; in vil3d_grad_1x3_1plane() local
131 for (unsigned j=1;j<nj1;++j) in vil3d_grad_1x3_1plane()
186 const unsigned nj1 = nj-1; in vil3d_grad_1x3_1plane() local
191 for (unsigned j=1;j<nj1;++j) in vil3d_grad_1x3_1plane()
245 const unsigned nj1 = nj-1; in vil3d_grad_1x3_mag_sq_1plane() local
250 for (unsigned j=1;j<nj1;++j) in vil3d_grad_1x3_mag_sq_1plane()
302 const unsigned nj1 = nj-1; in vil3d_grad_1x3_mag_sq_1plane() local
307 for (unsigned j=1;j<nj1;++j) in vil3d_grad_1x3_mag_sq_1plane()
[all …]
/dports/math/plplot-ada/plplot-5.15.0/examples/tcl/
H A Dplgrid.tcl27 set nj1 [expr $nj + 1]
31 matrix xj f $nj1
32 matrix yj f $nj1
46 for {set j 0} {$j < $nj1} {incr j} {
H A Dx03.tcl11 set nj1 [expr {$nj + 1}]
16 matrix xj f $nj1
17 matrix yj f $nj1
H A Dx14.tcl226 set nj1 [expr {$nj + 1}]
231 matrix xj f $nj1
232 matrix yj f $nj1
235 for {set j 0} {$j < $nj1} {incr j} {
/dports/math/plplot/plplot-5.15.0/examples/tcl/
H A Dplgrid.tcl27 set nj1 [expr $nj + 1]
31 matrix xj f $nj1
32 matrix yj f $nj1
46 for {set j 0} {$j < $nj1} {incr j} {
H A Dx03.tcl11 set nj1 [expr {$nj + 1}]
16 matrix xj f $nj1
17 matrix yj f $nj1
H A Dx14.tcl226 set nj1 [expr {$nj + 1}]
231 matrix xj f $nj1
232 matrix yj f $nj1
235 for {set j 0} {$j < $nj1} {incr j} {
/dports/misc/vxl/vxl-3.3.2/core/vil/algo/tests/
H A Dtest_algo_abs_shuffle_distance.cxx42 unsigned ni1 = ni - 10, nj1 = nj - 10; in test_algo_abs_shuffle_distance() local
43 vil_image_view<vxl_byte> sub_im1 = vil_crop(image0, 2, ni1, 2, nj1); in test_algo_abs_shuffle_distance()
44 vil_image_view<vxl_byte> sub_im2 = vil_crop(image0, 3, ni1, 2, nj1); in test_algo_abs_shuffle_distance()
45 vil_image_view<vxl_byte> sub_im3 = vil_crop(image0, 4, ni1, 2, nj1); in test_algo_abs_shuffle_distance()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/baml/tests/
H A Dtest_dem_appear.cxx79 size_t ni1 = grad_x_view1.ni(), nj1 = grad_x_view1.nj(); in update_hist_dem() local
80 vil_image_view<float> grad_mag_view0(ni0, nj0), grad_mag_view1(ni1, nj1); in update_hist_dem()
87 for(size_t j = 0; j<nj1; ++j) in update_hist_dem()
99 size_t ni1 = view1.ni(), nj1 = view1.nj(); in update_hist_dem() local
116 if(jmax>(nj1-1)) jmin = nj1-1; in update_hist_dem()
191 size_t ni1 = vnl_math::rnd(bb1.width()), nj1 = vnl_math::rnd(bb1.height()); in test_dem_appear() local
201 baml_warp_perspective(view0, img0_to_img1_cropped, ni1, nj1, view01); in test_dem_appear()
202 vil_image_view<float> view1 = img1->get_view(i1, ni1, j1, nj1); in test_dem_appear()
207 for (size_t j = 0; j < nj1; ++j) in test_dem_appear()
H A Dtest_appearance.cxx117 size_t ni1 = vnl_math::rnd(bb1.width()), nj1 = vnl_math::rnd(bb1.height()); in update_hist_multi_regions() local
127 baml_warp_perspective(view0, img0_to_img1_cropped, ni1, nj1, view01); in update_hist_multi_regions()
128 vil_image_view<float> view1 = img1->get_view(i1, ni1, j1, nj1); in update_hist_multi_regions()
186 size_t ni1 = vnl_math::rnd(bb1.width()), nj1 = vnl_math::rnd(bb1.height()); in test_appearance() local
196 baml_warp_perspective(view0, img0_to_img1_cropped, ni1, nj1, view01); in test_appearance()
197 vil_image_view<float> view1 = img1->get_view(i1, ni1, j1, nj1); in test_appearance()
203 for (size_t j = 0; j < nj1; ++j) in test_appearance()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/brip/
H A Dbrip_phase_correlation.cxx30 int ni1 = img1.ni(), nj1 = img1.nj(); in brip_phase_correlation() local
35 if(nj>nj1) nj = nj1; in brip_phase_correlation()
43 nip2_margin1_ = (ni1-nip2)/2; njp2_margin1_ = (nj1-njp2)/2; in brip_phase_correlation()
56 if(di1<0||dj1<0||di1>=ni1||dj1>=nj1) in brip_phase_correlation()
73 unsigned ni1 = phase1_.ni(), nj1 = phase1_.nj(); in compute_correlation_array() local
74 if(ni0 != ni1 || nj0 != nj1) return false; in compute_correlation_array()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bpgl/algo/
H A Dbpgl_rectify_image_pair.hxx100 compute_warp_dimensions_offsets(int ni0, int nj0, int ni1, int nj1) in compute_warp_dimensions_offsets() argument
103 double dni1 = static_cast<double>(ni1 - 1), dnj1 = static_cast<double>(nj1 - 1); in compute_warp_dimensions_offsets()
172 int ni1, int nj1) in scale_to_input_size() argument
174 this->compute_warp_dimensions_offsets(ni0, nj0, ni1, nj1); in scale_to_input_size()
176 double h0 = std::max(nj0, nj1); in scale_to_input_size()
192 int ni1, int nj1) in compute_rectification() argument
207 nj1 = fview1_.nj(); in compute_rectification()
216 double dni1 = static_cast<double>(ni1), dnj1 = static_cast<double>(nj1); in compute_rectification()
240 bool proj_1_good = (u1 >= 0 && u1 < ni1 && v1 >= 0 && v1 < nj1); in compute_rectification()
335 double sf = this->scale_to_input_size(ni0, nj0, ni1, nj1); in compute_rectification()
H A Dbpgl_rectify_image_pair.h120 int ni1 = -1, int nj1 = -1);
179 int ni1, int nj1);
187 int ni1, int nj1);
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bpgl/algo/tests/
H A Dtest_rectify_image_pair.cxx50 size_t ni1 = 963, nj1 = 906; in test_rectify_image_pair() local
52 vil_image_view<vxl_byte> img1(ni1, nj1); in test_rectify_image_pair()
123 ni1 = 2048; nj1 = 1532; in test_rectify_image_pair()
125 vil_image_view<vxl_byte> pimg1(ni1, nj1); in test_rectify_image_pair()
H A Dtest_rectify_affine_image_pair.cxx49 size_t ni1 = 963, nj1 = 906; in test_rectify_affine_image_pair() local
51 vil_image_view<vxl_byte> img1(ni1, nj1); in test_rectify_affine_image_pair()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bpro/core/vil_pro/processes/
H A Dvil_image_pair_process.cxx47 unsigned ni1 = image1->ni(), nj1 = image1->nj(); in vil_image_pair_process() local
50 if (nj>nj1) nj = nj1; in vil_image_pair_process()

123456