OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:img_path
(Results
1 - 6
of
6
) sorted by null
/external/autotest/client/bin/
partition.py
874
def _create_disk_img(self,
img_path
, size):
878
@param
img_path
: Path to the desired image file.
882
logging.debug('Creating disk image %s, size = %d Bytes',
img_path
, size)
884
cmd = 'dd if=/dev/zero of=%s bs=1024 count=%d' % (
img_path
, size)
887
e_msg = 'Error creating disk image %s: %s' % (
img_path
, e)
889
return
img_path
892
def _attach_img_loop(self,
img_path
):
896
@param
img_path
: Path of the image file that will be attached to a
900
logging.debug('Attaching image %s to a loop device',
img_path
)
904
cmd = 'losetup -f %s' %
img_path
[
all
...]
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
main_registration.cpp
23
string
img_path
= tutorial_path + "Data/resized_IMG_3875.JPG"; // image to register
variable
110
Mat img_in = imread(
img_path
, IMREAD_COLOR);
/external/opencv3/modules/imgcodecs/test/
test_grfmt.cpp
194
string
img_path
= cv::tempfile(ext_from_int(ext).c_str());
local
195
ts->printf(ts->LOG, "writing image : %s\n",
img_path
.c_str());
196
imwrite(
img_path
, img);
198
ts->printf(ts->LOG, "reading test image : %s\n",
img_path
.c_str());
199
Mat img_test = imread(
img_path
, IMREAD_UNCHANGED);
/build/tools/releasetools/
add_img_to_target_files
390
img_path
= 'IMAGES/' + img_name
391
assert
img_path
in output_zip.namelist(), "cannot find " + img_name
add_img_to_target_files.py
390
img_path
= 'IMAGES/' + img_name
391
assert
img_path
in output_zip.namelist(), "cannot find " + img_name
/external/autotest/server/hosts/
adb_host.py
[
all
...]
Completed in 3755 milliseconds