Home
last modified time | relevance | path

Searched refs:mask_path (Results 1 – 25 of 50) sorted by relevance

12

/dports/science/py-dipy/dipy-1.4.1/dipy/workflows/tests/
H A Dtest_reconst_csa_csd.py32 mask_path = pjoin(out_dir, 'tmp_mask.nii.gz')
33 save_nifti(mask_path, mask.astype(np.uint8), affine)
39 reconst_flow.run(data_path, bval_path, bvec_path, mask_path,
45 reconst_flow.run(data_path, bval_path, bvec_path, mask_path,
102 reconst_flow.run(data_path, bval_path, bvec_path, mask_path,
106 reconst_flow.run(data_path, bval_path, bvec_path, mask_path,
110 reconst_flow.run(data_path, bval_path, bvec_path, mask_path,
114 reconst_flow2.run(data_path, bval_path, bvec_path, mask_path,
120 tmp_bval_path, tmp_bvec_path, mask_path,
126 reconst_flow.run(data_path, bval_path, bvec_path, mask_path,
[all …]
H A Dtest_tracking.py25 mask_path = join(out_dir, 'tmp_mask.nii.gz')
26 save_nifti(mask_path, mask, affine)
74 reconst_csd_flow.run(dwi_path, bval_path, bvec_path, mask_path,
113 mask_path = join(out_dir, 'tmp_mask.nii.gz')
114 save_nifti(mask_path, mask, affine)
117 reconst_csd_flow.run(data_path, bval_path, bvec_path, mask_path,
127 mask_path = mask_flow.last_generated_outputs['out_mask']
144 lf_track_pam.run(pam_path, mask_path, seeds_path,
H A Dtest_reconst_dki.py22 mask_path = pjoin(out_dir, 'tmp_mask.nii.gz')
23 save_nifti(mask_path, mask.astype(np.uint8), affine)
27 args = [data_path, bval_path, bvec_path, mask_path]
102 tmp_bval_path, tmp_bvec_path, mask_path,
H A Dtest_reconst_ivim.py47 mask_path = pjoin(out_dir, 'tmp_mask.nii.gz')
48 save_nifti(mask_path, mask, temp_affine)
52 args = [data_path, temp_bval_path, temp_bvec_path, mask_path]
H A Dtest_reconst_dti.py31 mask_path = join(out_dir, 'tmp_mask.nii.gz')
32 save_nifti(mask_path, mask, affine)
36 args = [data_path, bval_path, bvec_path, mask_path]
H A Dtest_masking.py22 mask_path = mask_flow.last_generated_outputs['out_mask']
23 mask_data, mask_affine = load_nifti(mask_path)
/dports/graphics/librasterlite2/librasterlite2-1.0.0-rc0/test/
H A Dtest_mask.c49 test_rgb_jpeg (const char *path, const char *mask_path) in test_rgb_jpeg() argument
79 mask_img = rl2_section_from_png (mask_path); in test_rgb_jpeg()
82 fprintf (stderr, "X Unable to read: %s\n", mask_path); in test_rgb_jpeg()
117 mask_path); in test_rgb_jpeg()
361 mask_img = rl2_section_from_png (mask_path); in test_gray_jpeg()
399 mask_path); in test_gray_jpeg()
464 test_rgb_png (const char *path, const char *mask_path) in test_rgb_png() argument
485 mask_img = rl2_section_from_png (mask_path); in test_rgb_png()
523 mask_path); in test_rgb_png()
632 mask_img = rl2_section_from_png (mask_path); in test_gray_png()
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/command_lib/util/apis/
H A Dupdate.py30 def GetMaskString(args, spec, mask_path, is_dotted=True): argument
58 api_field_name = _ExtractMaskField(mask_path, param.api_field, is_dotted)
85 def _ExtractMaskField(mask_path, api_field, is_dotted): argument
107 level = len(mask_path.split('.'))
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/tools/mac/icons/additional_tools/
H A Dunmakeicns.cc134 std::string mask_path; in main() member
252 images_and_masks[IMAGE_16].mask_path = output_icon_path; in main()
255 images_and_masks[IMAGE_32].mask_path = output_icon_path; in main()
258 images_and_masks[IMAGE_48].mask_path = output_icon_path; in main()
261 images_and_masks[IMAGE_128].mask_path = output_icon_path; in main()
296 !image_and_mask.mask_path.empty()) { in main()
299 image_and_mask.mask_path.c_str(), in main()
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/mac/icons/additional_tools/
H A Dunmakeicns.cc134 std::string mask_path; in main() member
252 images_and_masks[IMAGE_16].mask_path = output_icon_path; in main()
255 images_and_masks[IMAGE_32].mask_path = output_icon_path; in main()
258 images_and_masks[IMAGE_48].mask_path = output_icon_path; in main()
261 images_and_masks[IMAGE_128].mask_path = output_icon_path; in main()
296 !image_and_mask.mask_path.empty()) { in main()
299 image_and_mask.mask_path.c_str(), in main()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skottie/src/
H A DLayer.cpp83 sk_sp<sksg::RenderNode> makeMask(sk_sp<sksg::Path> mask_path) const { in makeMask()
84 auto mask = sksg::Draw::Make(std::move(mask_path), fMaskPaint); in makeMask()
114 sk_sp<sksg::Path> mask_path; // for clipping and masking in AttachMask() member
143 auto mask_path = abuilder->attachPath((*m)["pt"]); in AttachMask() local
144 if (!mask_path) { in AttachMask()
152 mask_path->setFillType(inverted ? SkPathFillType::kInverseWinding in AttachMask()
164 mask_stack.push_back({ std::move(mask_path), in AttachMask()
179 clip_node = std::move(mask_stack.front().mask_path); in AttachMask()
187 merge_recs.push_back({std::move(mask.mask_path), mode}); in AttachMask()
200 maskNode = rec.mask_adapter->makeMask(std::move(rec.mask_path)); in AttachMask()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skottie/src/
H A DLayer.cpp84 sk_sp<sksg::RenderNode> makeMask(sk_sp<sksg::Path> mask_path) const { in makeMask()
85 sk_sp<sksg::RenderNode> mask = sksg::Draw::Make(std::move(mask_path), fMaskPaint); in makeMask()
138 sk_sp<sksg::Path> mask_path; // for clipping and masking in AttachMask() member
167 auto mask_path = abuilder->attachPath((*m)["pt"]); in AttachMask() local
168 if (!mask_path) { in AttachMask()
186 mask_path->setFillType(mask_inverted ? SkPathFillType::kInverseWinding in AttachMask()
194 mask_stack.push_back({ std::move(mask_path), in AttachMask()
209 clip_node = std::move(mask_stack.front().mask_path); in AttachMask()
216 merge_recs.push_back({std::move(mask.mask_path), mask.merge_mode }); in AttachMask()
229 maskNode = rec.mask_adapter->makeMask(std::move(rec.mask_path)); in AttachMask()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/bvxm/algo/pro/processes/
H A Dbvxm_mog_l2_process.cxx56 std::string mask_path = pro.get_input<std::string>(1); in bvxm_mog_l2_process() local
70 if (vul_file::exists(mask_path)) in bvxm_mog_l2_process()
73 bvxm_voxel_grid<float> *mask_base = new bvxm_voxel_grid<float>(mask_path, apm_base->grid_size()); in bvxm_mog_l2_process()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/live_effects/
H A Dlpegroupbbox.cpp41 SPMask * mask_path = item->getMaskObject(); in clip_mask_bbox() local
42 if(mask_path) { in clip_mask_bbox()
43 bbox.unionWith(mask_path->visualBounds(affine)); in clip_mask_bbox()
/dports/graphics/colmap/colmap-3.6/src/base/
H A Dimage_reader.cc140 if (mask && !options_.mask_path.empty()) { in Next()
141 const std::string mask_path = in Next() local
142 JoinPaths(options_.mask_path, in Next()
144 if (ExistsFile(mask_path) && !mask->Read(mask_path, false)) { in Next()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/xphoto/test/
H A Dtest_inpainting.cpp13 string mask_path = cvtest::findDataFile("cv/inpaint/mask.png"); in test_inpainting() local
18 Mat mask_ = imread(mask_path, IMREAD_GRAYSCALE); in test_inpainting()
19 ASSERT_FALSE(mask_.empty()) << "Could not load error mask " << mask_path; in test_inpainting()
/dports/graphics/colmap/colmap-3.6/src/controllers/
H A Dautomatic_reconstruction.cc91 if (!options_.mask_path.empty()) { in AutomaticReconstructionController()
92 reader_options.mask_path = options_.mask_path; in AutomaticReconstructionController()
93 option_manager_.image_reader->mask_path = options_.mask_path; in AutomaticReconstructionController()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/bvxm/grid/pro/processes/
H A Dbvxm_threshold_grid_process.cxx86 std::string mask_path = pro.get_input<std::string>(2); in bvxm_threshold_grid_process() local
91 bvxm_voxel_grid_base_sptr mask_base = new bvxm_voxel_grid<float>(mask_path); in bvxm_threshold_grid_process()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/brip/tests/
H A Dtest_gain_offset_solver.cxx80 std::string mask_path = "e:/images/TextureTraining/mapped_images/test_mask_00.tiff"; in test_gain_offset_solver()
81 vil_save(test_mask, mask_path.c_str()); in test_gain_offset_solver()
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/protobuf/src/google/protobuf/util/
H A Dfield_mask_util.cc565 const string& mask_path = mask.paths(i); in IsPathInFieldMask() local
566 if (path == mask_path) { in IsPathInFieldMask()
568 } else if (mask_path.length() < path.length()) { in IsPathInFieldMask()
570 if (path.substr(0, mask_path.length() + 1).compare(mask_path + ".") == in IsPathInFieldMask()
/dports/multimedia/openshot/openshot-qt-2.6.1/src/classes/
H A Dthumbnail.py134 mask_path = os.path.join(info.IMAGES_PATH, "mask.png")
201 mask_path,
/dports/graphics/opencv/opencv-4.5.3/3rdparty/protobuf/src/google/protobuf/util/
H A Dfield_mask_util.cc641 const string& mask_path = mask.paths(i); in IsPathInFieldMask() local
642 if (path == mask_path) { in IsPathInFieldMask()
644 } else if (mask_path.length() < path.length()) { in IsPathInFieldMask()
646 if (path.substr(0, mask_path.length() + 1).compare(mask_path + ".") == in IsPathInFieldMask()
/dports/devel/py-grpcio-tools/grpcio-tools-1.43.0/third_party/protobuf/src/google/protobuf/util/
H A Dfield_mask_util.cc671 const std::string& mask_path = mask.paths(i); in IsPathInFieldMask() local
672 if (path == mask_path) { in IsPathInFieldMask()
674 } else if (mask_path.length() < path.length()) { in IsPathInFieldMask()
676 if (path.substr(0, mask_path.length() + 1).compare(mask_path + ".") == in IsPathInFieldMask()
/dports/misc/py-gluoncv/gluon-cv-0.9.0/gluoncv/data/
H A Dmhp.py166 for _, mask_path in enumerate(mask_paths):
167 mask_sub = Image.open(mask_path)
/dports/games/supertuxkart/SuperTuxKart-1.2-src/src/graphics/sp/
H A Dsp_texture.cpp379 std::string mask_path = StringUtils::getPath(m_path) + "/" + in useTextureCache() local
383 if (!file_manager->fileIsNewer(*cache_loc, mask_path)) in useTextureCache()
559 std::string mask_path = StringUtils::getPath(m_path) + "/" + in getMask() local
561 mask = getImageFromPath(mask_path); in getMask()
606 std::string mask_path = StringUtils::getPath(m_path) + "/" + in getMask() local
608 std::shared_ptr<video::IImage> mask = getImageFromPath(mask_path); in getMask()

12