Home
last modified time | relevance | path

Searched refs:x_img (Results 1 – 24 of 24) sorted by relevance

/dports/graphics/birdfont/birdfont-2.29.5/libbirdfont/
H A DBackgroundSelection.vala25 return x_img * parent_image.img_scale_x + parent_image.img_middle_x;
29 x_img = (value - parent_image.img_middle_x) / parent_image.img_scale_x;
65 public double x_img;
81 double x_img, double y_img, double width, double height) {
86 this.x_img = x_img;
H A DBirdFontFile.vala233 os.put_string (@"x=\"$(selection.x_img)\" ");
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/pyscripts/
H A Dboxm2_adaptor.py1778 x_img = 0
1781 return x_img, y_img, z_img
1804 x_img = 0
1807 return x_img, y_img, z_img
1824 return x_img, y_img, z_img
1843 x_img = 0
1864 x_img = 0
1890 x_img = 0
1918 x_img = 0
1945 x_img = 0
[all …]
H A Dboxm2_scene_adaptor.py278 def ingest_height_map(self, x_img, y_img, z_img, argument
281 boxm2_adaptor.ingest_height_map(self.scene, cache, x_img, y_img,
287 self, x_img, y_img, z_img, crust_thickness, device_string=""): argument
289 boxm2_adaptor.ingest_height_map_space(self.scene, cache, x_img,
294 def ingest_to_zero_out_alpha(self, x_img, y_img, z_img, device_string=""): argument
296 boxm2_adaptor.ingest_to_zero_out_alpha(self.scene, cache, x_img, y_img,
302 def ingest_label_map(self, x_img, y_img, z_img, argument
306 boxm2_adaptor.ingest_label_map(self.scene, cache, x_img, y_img,
311 def ingest_osm_label_map(self, x_img, y_img, z_img, argument
314 boxm2_adaptor.ingest_osm_label_map(self.scene, cache, x_img,
H A Dboxm2_mesh_adaptor.py15 def gen_mesh(z_img, x_img, y_img, out_dir): argument
18 batch.set_input_from_db(1, x_img)
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/view/pro/processes/
H A Dboxm2_view_init_trajectory_process.cxx204 vil_image_view<float> x_img(x_imgs); in boxm2_view_init_height_map_trajectory_process() local
208 if (x_img.ni() != y_img.ni() || x_img.ni() != z_img.ni() || in boxm2_view_init_height_map_trajectory_process()
209 x_img.nj() != y_img.nj() || x_img.nj() != z_img.nj() ) in boxm2_view_init_height_map_trajectory_process()
229 …boxm2_trajectory_sptr traj = new boxm2_trajectory(scene->bounding_box(), x_img, y_img, z_img, ni, … in boxm2_view_init_height_map_trajectory_process()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/hdf5/
H A DossimHdf5GridModel.cpp198 hsize_t x_img = 0; in initCoarseGrid() local
202 x_img = x*GRID_SAMPLING_INTERVAL; in initCoarseGrid()
203 if ( x_img < (ossim_uint32) m_imageSize.x ) in initCoarseGrid()
205 val = values[x_img]; in initCoarseGrid()
228 cout << "x,y,x_img,y_img,val:" << x << "," << y << ","<< x_img << "," << y_img << "," in initCoarseGrid()
246 hsize_t x_img = x*GRID_SPACING; // Sample in image space in initCoarseGrid()
249 << x_img << "," << y_img << "," << val << endl; in initCoarseGrid()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/view/
H A Dboxm2_trajectory.cxx40 boxm2_trajectory::boxm2_trajectory(vgl_box_3d<double> bb, vil_image_view<float>& x_img, vil_image_v… in boxm2_trajectory() argument
44 unsigned img_ni = x_img.ni(); in boxm2_trajectory()
45 unsigned img_nj = x_img.nj(); in boxm2_trajectory()
56 double x = x_img(i,j); in boxm2_trajectory()
H A Dboxm2_trajectory.h40 …boxm2_trajectory(vgl_box_3d<double> bb, vil_image_view<float>& x_img, vil_image_view<float>& y_img…
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/ocl/pro/processes/
H A Dboxm2_ocl_compute_height_factor_process.cxx78 vil_image_view_base_sptr x_img = pro.get_input<vil_image_view_base_sptr>(i++); in boxm2_ocl_compute_height_factor_process() local
81 …ap_pre_post::compute_pre_post(scene, device, opencl_cache, z_img, z_var_img, x_img, y_img,sradius); in boxm2_ocl_compute_height_factor_process()
H A Dboxm2_ocl_ingest_dem_process.cxx105 vil_image_view_base_sptr x_img = pro.get_input<vil_image_view_base_sptr>(i++); in boxm2_ocl_ingest_dem_process() local
116 auto * x_img_float = dynamic_cast<vil_image_view<float> * > (x_img.ptr()); in boxm2_ocl_ingest_dem_process()
334 vil_image_view_base_sptr x_img = pro.get_input<vil_image_view_base_sptr>(i++); in boxm2_ocl_ingest_dem_space_process() local
345 auto * x_img_float = dynamic_cast<vil_image_view<float> * > (x_img.ptr()); in boxm2_ocl_ingest_dem_space_process()
H A Dboxm2_ocl_ingest_label_process.cxx104 vil_image_view_base_sptr x_img = pro.get_input<vil_image_view_base_sptr>(i++); in boxm2_ocl_ingest_label_process() local
118 auto * x_img_float = dynamic_cast<vil_image_view<float> * > (x_img.ptr()); in boxm2_ocl_ingest_label_process()
H A Dboxm2_ocl_ingest_osm_label_process.cxx106 vil_image_view_base_sptr x_img = pro.get_input<vil_image_view_base_sptr>(i++); in boxm2_ocl_ingest_osm_label_process() local
120 auto * x_img_float = dynamic_cast<vil_image_view<float> * > (x_img.ptr()); in boxm2_ocl_ingest_osm_label_process()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/hfs/src/cuda/
H A Dgslic_seg_engine_gpu.cu218 int x_img = x_start + x_offset; in updateClusterCenterDevice() local
221 if (x_img >= 0 && x_img < img_size.x && y_img >= 0 && y_img < img_size.y) in updateClusterCenterDevice()
223 int img_idx = y_img * img_size.x + x_img; in updateClusterCenterDevice()
229 xy_shared[local_id] = Float2_(x_img, y_img); in updateClusterCenterDevice()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/bvxm/pyscripts/
H A Dbvxm_adaptor.py442 x_img = dbvalue(xi_id, xi_type)
448 x_img = 0
451 return x_img, y_img, z_img
466 x_img = dbvalue(xi_id, xi_type)
472 x_img = 0
475 return x_img, y_img, z_img
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/pro/processes/
H A Dboxm2_export_mesh_process.cxx84 auto* x_img = (vil_image_view<float>*) ximg.ptr(); in boxm2_export_mesh_process() local
144 verts[iv][0] = (*x_img)(i,j); in boxm2_export_mesh_process()
/dports/www/dillo2/dillo-3.0.5/dw/
H A Dstyle.cc62 x_img = -1; in initValues()
100 x_img = -1; in resetValues()
186 x_img == otherAttrs->x_img && in equals()
230 x_img + in hashValue()
340 x_img = attrs->x_img; in copyAttrs()
H A Dimage.cc325 (void)layout->emitLinkPress(this, currLink, getStyle()->x_img, -1, -1, in buttonPressImpl()
343 layout->emitLinkClick (this, currLink, getStyle()->x_img, x, y, event); in buttonReleaseImpl()
H A Dstyle.hh522 int x_img; member in dw::core::style::StyleAttrs
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/bvxm/pro/processes/
H A Dbvxm_dem_to_xyz_process.cxx364 vil_image_view<float> x_img = x_imgs[img_idx]; in bvxm_dem_to_xyz_process2() local
370 if ( (*out_img_x)(ix,jx) == -10.0f ) (*out_img_x)(ix,jx) = (x_img)(ix,jx); in bvxm_dem_to_xyz_process2()
/dports/math/gap/gap-4.11.0/pkg/guarana-0.96.2/gap/collec/
H A Dsetup.gi356 local x, x_img;
359 x_img := GUARANA.MapFromLCcapNtoLN( malCol, x );
360 if x_img = fail then
363 return MalcevGenElementByLieElement( x_img );
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bpro/core/pyscripts/
H A Dvpgl_adaptor.py445 x_img = dbvalue(id, type)
451 return x_img, y_img, z_img
/dports/www/dillo2/dillo-3.0.5/src/
H A Dstyleengine.cc703 attrs->x_img = p->value.intVal; in apply()
/dports/www/dillo2/dillo-3.0.5/
H A DChangeLog712 - Aded an x_img camp to style (an image array index, like x_link).