Home
last modified time | relevance | path

Searched refs:prob_image (Results 1 – 20 of 20) sorted by relevance

/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/bvxm/pro/processes/
H A Dbvxm_change_detection_display_process.cxx102 vil_image_view<float> prob_image(img1); in bvxm_change_detection_display_process() local
118 if (prob_image(i , j) > max_prob) in bvxm_change_detection_display_process()
119 max_prob = prob_image(i,j); in bvxm_change_detection_display_process()
126 … prob_img_byte(i,j) = static_cast<unsigned char>(std::floor((prob_image(i,j)/max_prob) * 255.0f)); in bvxm_change_detection_display_process()
139 if ( prob_image(i,j) < prob_thresh && mask_image(i,j)) { in bvxm_change_detection_display_process()
140 this_prob = prob_image( i,j )/(prob_thresh); in bvxm_change_detection_display_process()
H A Dbvxm_roc_process.cxx93 std::string prob_image = detected_changes_dir + "\\" + name + ".tiff"; in bvxm_roc_process() local
94 vil_image_view<float> prob_change = vil_load( prob_image.c_str() ); in bvxm_roc_process()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/ocl/cl/bit/
H A Dcompute_probability_of_image.cl21 float* prob_image;
36 … __global float * prob_image, // input image and store vis_inf and pre_inf
73 float prob = prob_image[imIndex[llid]];
80 aux_args.prob_image = &prob;
96 prob_image[imIndex[llid]] = prob; //expected_int;
113 float* prob_image;
130 … __global float * prob_image, // input image and store vis_inf and pre_inf
169 float prob = prob_image[imIndex[llid]];
176 aux_args.prob_image = &prob;
192 prob_image[imIndex[llid]] = prob;
H A Drender_height_map.cl37 __global float * prob_image,
69 float probsum =prob_image[imIndex[llid]];
89 prob_image[imIndex[llid]] = (* aux_args.probsum);
319 __global float * prob_image,
369 float probsum = prob_image[imIndex[llid]];
393 prob_image[imIndex[llid]] = (*aux_args.probsum);
H A Drender_bit_scene.cl235 __global float * prob_image,
274 float probsum = prob_image[imIndex[llid]];
295 prob_image[imIndex[llid]] = (* aux_args.probsum);
567 __global float * prob_image,
606 float probsum = prob_image[imIndex[llid]];
622 prob_image[imIndex[llid]] = *aux_args.probsum;
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/ocl/pro/processes/
H A Dboxm2_ocl_probability_of_image_gl_process.cxx230 …bocl_mem_sptr prob_image=new bocl_mem(device->context(),prob_image_buff,cl_ni*cl_nj*sizeof(float),… in boxm2_ocl_probability_of_image_gl_process() local
231 prob_image->create_buffer(CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR); in boxm2_ocl_probability_of_image_gl_process()
280 kern->set_arg( prob_image.ptr() ); in boxm2_ocl_probability_of_image_gl_process()
302 normalize_prob_image_kernel->set_arg( prob_image.ptr() ); in boxm2_ocl_probability_of_image_gl_process()
315 convert_to_rgba_image_kernel->set_arg( prob_image.ptr() ); in boxm2_ocl_probability_of_image_gl_process()
H A Dboxm2_ocl_probability_of_image_wcubic_process.cxx198 …bocl_mem_sptr prob_image=new bocl_mem(device->context(),prob_image_buff,cl_ni*cl_nj*sizeof(float),… in boxm2_ocl_probability_of_image_wcubic_process() local
199 prob_image->create_buffer(CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR); in boxm2_ocl_probability_of_image_wcubic_process()
261 kern->set_arg( prob_image.ptr() ); in boxm2_ocl_probability_of_image_wcubic_process()
285 normalize_prob_image_kernel->set_arg( prob_image.ptr() ); in boxm2_ocl_probability_of_image_wcubic_process()
297 prob_image->read_to_buffer(queue); in boxm2_ocl_probability_of_image_wcubic_process()
H A Dboxm2_ocl_probability_of_image_process.cxx230 …bocl_mem_sptr prob_image=new bocl_mem(device->context(),prob_image_buff,cl_ni*cl_nj*sizeof(float),… in boxm2_ocl_probability_of_image_process() local
231 prob_image->create_buffer(CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR); in boxm2_ocl_probability_of_image_process()
286 kern->set_arg( prob_image.ptr() ); in boxm2_ocl_probability_of_image_process()
308 normalize_prob_image_kernel->set_arg( prob_image.ptr() ); in boxm2_ocl_probability_of_image_process()
320 prob_image->read_to_buffer(queue); in boxm2_ocl_probability_of_image_process()
H A Dboxm2_ocl_render_expected_z_image_process.cxx170 …bocl_mem_sptr prob_image = opencl_cache->alloc_mem(cl_ni*cl_nj*sizeof(float), prob_buff, "vis x om… in boxm2_ocl_render_expected_z_image_process() local
171 prob_image->create_buffer(CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR); in boxm2_ocl_render_expected_z_image_process()
233 kern->set_arg( prob_image.ptr() ); in boxm2_ocl_render_expected_z_image_process()
256 normalize_kern->set_arg( prob_image.ptr() ); in boxm2_ocl_render_expected_z_image_process()
279 opencl_cache->unref_mem(prob_image.ptr()); in boxm2_ocl_render_expected_z_image_process()
H A Dboxm2_ocl_render_gl_expected_depth_process.cxx184 …bocl_mem_sptr prob_image=opencl_cache->alloc_mem(cl_ni*cl_nj*sizeof(float),prob_buff,"vis x omega … in boxm2_ocl_render_gl_expected_depth_process() local
185 prob_image->create_buffer(CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR); in boxm2_ocl_render_gl_expected_depth_process()
246 kern->set_arg( prob_image.ptr() ); in boxm2_ocl_render_gl_expected_depth_process()
320 opencl_cache->unref_mem(prob_image.ptr()); in boxm2_ocl_render_gl_expected_depth_process()
H A Dboxm2_ocl_render_expected_height_map_process.cxx218 …bocl_mem_sptr prob_image = opencl_cache->alloc_mem(cl_ni*cl_nj*sizeof(float), prob_buff, "vis x om… in boxm2_ocl_render_expected_height_map_process() local
219 prob_image->create_buffer(CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR); in boxm2_ocl_render_expected_height_map_process()
274 kern->set_arg(prob_image.ptr()); in boxm2_ocl_render_expected_height_map_process()
343 opencl_cache->unref_mem(prob_image.ptr()); in boxm2_ocl_render_expected_height_map_process()
H A Dboxm2_ocl_render_expected_depth_process.cxx186 …bocl_mem_sptr prob_image=opencl_cache->alloc_mem(cl_ni*cl_nj*sizeof(float),prob_buff,"vis x omega … in boxm2_ocl_render_expected_depth_process() local
187 prob_image->create_buffer(CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR); in boxm2_ocl_render_expected_depth_process()
314 kern->set_arg( prob_image.ptr() ); in boxm2_ocl_render_expected_depth_process()
387 opencl_cache->unref_mem(prob_image.ptr()); in boxm2_ocl_render_expected_depth_process()
H A Dboxm2_ocl_render_expected_depth_region_process.cxx198 …bocl_mem_sptr prob_image=new bocl_mem(device->context(),prob_buff,cl_ni*cl_nj*sizeof(float),"vis x… in boxm2_ocl_render_expected_depth_region_process() local
199 prob_image->create_buffer(CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR); in boxm2_ocl_render_expected_depth_region_process()
373 kern->set_arg( prob_image.ptr() ); in boxm2_ocl_render_expected_depth_region_process()
/dports/science/py-dipy/dipy-1.4.1/dipy/segment/tests/
H A Dtest_mrf.py100 PLY = com.prob_image(image, nclasses, mu, sigmasq, PLN)
185 PLY = com.prob_image(image_gauss, nclasses, mu, sigmasq, PLN)
279 PLY = com.prob_image(square_gauss, nclasses, mu, sigmasq, PLN)
/dports/science/py-dipy/dipy-1.4.1/dipy/segment/
H A Dtissue.py98 PVE = com.prob_image(image_gauss, nclasses, mu, sigmasq, PLN)
H A Dmrf.pyx161 def prob_image(self, img, cnp.npy_intp nclasses, mu, sigmasq, P_L_N): member in ConstantObservationModel
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/ocl/cl/
H A Dupdate_cubic_functors.cl21 float * prob_image)
32 (*prob_image) += prob_den*omega;
H A Dexpected_functor.cl231 float * prob_image,
244 (*prob_image) += prob_den*omega;
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/boxm2/pyscripts/
H A Dboxm2_scene_adaptor.py273 z_image, var_image, x_image, y_image, prob_image = \
275 return z_image, var_image, x_image, y_image, prob_image
H A Dboxm2_adaptor.py431 prob_image = dbvalue(id, type)
437 return z_image, var_image, x_image, y_image, prob_image # , app_image;
868 prob_image = dbvalue(id, type)
871 return exp_image, prob_image, vis_image