/external/opencv3/modules/viz/src/ |
D | clouds.cpp | 51 cv::viz::WCloud::WCloud(InputArray cloud, InputArray colors) in WCloud() argument 53 WCloud cloud_widget(cloud, colors, cv::noArray()); in WCloud() 57 cv::viz::WCloud::WCloud(InputArray cloud, const Color &color) in WCloud() argument 59 WCloud cloud_widget(cloud, Mat(cloud.size(), CV_8UC3, color)); in WCloud() 63 cv::viz::WCloud::WCloud(InputArray cloud, const Color &color, InputArray normals) in WCloud() argument 65 WCloud cloud_widget(cloud, Mat(cloud.size(), CV_8UC3, color), normals); in WCloud() 69 cv::viz::WCloud::WCloud(cv::InputArray cloud, cv::InputArray colors, cv::InputArray normals) in WCloud() argument 71 CV_Assert(!cloud.empty() && !colors.empty()); in WCloud() 74 cloud_source->SetColorCloudNormals(cloud, colors, normals); in WCloud() 103 cv::viz::WPaintedCloud::WPaintedCloud(InputArray cloud) in WPaintedCloud() argument [all …]
|
D | vizcore.cpp | 170 void cv::viz::writeCloud(const String& file, InputArray cloud, InputArray colors, InputArray normal… in writeCloud() argument 176 source->SetColorCloudNormals(cloud, colors, normals); in writeCloud() 233 cv::Mat cloud; in readCloud() local 237 sink->SetOutput(cloud, colors, normals); in readCloud() 240 return cloud; in readCloud() 348 normals.convertTo(_normals, mesh.cloud.type()); in computeNormals()
|
/external/opencv3/modules/viz/src/vtk/ |
D | vtkCloudMatSink.cpp | 57 cloud = _cloud; in SetOutput() 71 if (cloud.needed() && points_Data) in WriteData() 76 … cloud.create(1, points_Data->GetNumberOfPoints(), vtktype == VTK_FLOAT ? CV_32FC3 : CV_64FC3); in WriteData() 77 Vec3d *ddata = cloud.getMat().ptr<Vec3d>(); in WriteData() 78 Vec3f *fdata = cloud.getMat().ptr<Vec3f>(); in WriteData() 80 if (cloud.depth() == CV_32F) in WriteData() 81 for(size_t i = 0; i < cloud.total(); ++i) in WriteData() 84 if (cloud.depth() == CV_64F) in WriteData() 85 for(size_t i = 0; i < cloud.total(); ++i) in WriteData() 89 cloud.release(); in WriteData() [all …]
|
D | vtkCloudMatSource.cpp | 74 Mat cloud = _cloud.getMat(); in SetCloud() local 76 … int total = _cloud.depth() == CV_32F ? filterNanCopy<float>(cloud) : filterNanCopy<double>(cloud); in SetCloud() 97 Mat cloud = _cloud.getMat(); in SetColorCloud() local 100 if (cloud.depth() == CV_32F) in SetColorCloud() 101 filterNanColorsCopy<float>(colors, cloud, total); in SetColorCloud() 102 else if (cloud.depth() == CV_64F) in SetColorCloud() 103 filterNanColorsCopy<double>(colors, cloud, total); in SetColorCloud() 183 int cv::viz::vtkCloudMatSource::filterNanCopy(const Mat& cloud) in filterNanCopy() argument 185 CV_DbgAssert(DataType<_Tp>::depth == cloud.depth()); in filterNanCopy() 188 points->Allocate((vtkIdType)cloud.total()); in filterNanCopy() [all …]
|
D | vtkCloudMatSource.h | 64 virtual int SetCloud(InputArray cloud); 65 virtual int SetColorCloud(InputArray cloud, InputArray colors); 66 … virtual int SetColorCloudNormals(InputArray cloud, InputArray colors, InputArray normals); 67 …virtual int SetColorCloudNormalsTCoords(InputArray cloud, InputArray colors, InputArray normals, I… 84 template<typename _Tp> int filterNanCopy(const Mat& cloud);
|
D | vtkCloudMatSink.h | 62 …void SetOutput(OutputArray cloud, OutputArray colors = noArray(), OutputArray normals = noArray(),… 76 _OutputArray cloud, colors, normals, tcoords; variable
|
/external/chromium-trace/catapult/dashboard/docs/ |
D | cloud-debugger.md | 1 # Updating the cloud repository 3 [Cloud debugger](https://cloud.google.com/tools/cloud-debugger/) 6 Repository](https://cloud.google.com/tools/cloud-repositories/docs/). 13 git remote add cloud-repo https://source.developers.google.com/p/chromeperf/ 14 git push --all cloud-repo
|
/external/opencv3/modules/viz/include/opencv2/viz/ |
D | widgets.hpp | 681 WCloud(InputArray cloud, InputArray colors); 689 WCloud(InputArray cloud, const Color &color = Color::white()); 698 WCloud(InputArray cloud, InputArray colors, InputArray normals); 708 WCloud(InputArray cloud, const Color &color, InputArray normals); 715 WPaintedCloud(InputArray cloud); 718 WPaintedCloud(InputArray cloud, const Point3d& p1, const Point3d& p2); 721 …WPaintedCloud(InputArray cloud, const Point3d& p1, const Point3d& p2, const Color& c1, const Color… 738 … void addCloud(InputArray cloud, InputArray colors, const Affine3d &pose = Affine3d::Identity()); 745 …void addCloud(InputArray cloud, const Color &color = Color::white(), const Affine3d &pose = Affine… 768 …WCloudNormals(InputArray cloud, InputArray normals, int level = 64, double scale = 0.1, const Colo… [all …]
|
/external/opencv3/samples/python2/ |
D | digits_adjust.py | 29 import cloud 69 cloud.files.put(DIGITS_FN) 70 self.preprocess_job = cloud.call(self.preprocess, _env=self.cloud_env) 76 cloud.files.get(DIGITS_FN) 86 return cloud.result(self.preprocess_job) 92 … jids = cloud.map(f, jobs, _env=self.cloud_env, _profile=True, _depends_on=self.preprocess_job) 93 ires = cloud.iresult(jids)
|
/external/opencv3/samples/cpp/tutorial_code/viz/ |
D | transformations.cpp | 36 Mat cloud(1, 1889, CV_32FC3); in cvcloud_load() local 43 Point3f* data = cloud.ptr<cv::Point3f>(); in cvcloud_load() 48 cloud *= 5.0f; in cvcloud_load() 49 return cloud; in cvcloud_load()
|
/external/opencv3/modules/viz/test/ |
D | tests_simple.cpp | 100 Mat cloud = readCloud(get_dragon_ply_file_path()); in TEST() local 103 …ccol.addCloud(cloud, Color::white(), Affine3d().translate(Vec3d(0, 0, 0)).rotate(Vec3d(CV_PI/2, 0,… in TEST() 104 ccol.addCloud(cloud, Color::blue(), Affine3d().translate(Vec3d(1, 0, 0))); in TEST() 105 ccol.addCloud(cloud, Color::red(), Affine3d().translate(Vec3d(2, 0, 0))); in TEST() 118 Mat cloud = readCloud(get_dragon_ply_file_path()); in TEST() local 123 …viz.showWidget("cloud1", WPaintedCloud(cloud), Affine3d(Vec3d(0.0, -CV_PI/2, 0.0), Vec3d(-1.5, 0.0… in TEST() 124 …viz.showWidget("cloud2", WPaintedCloud(cloud, Vec3d(0.0, -0.75, -1.0), Vec3d(0.0, 0.75, 0.0)), Aff… in TEST() 125 …viz.showWidget("cloud3", WPaintedCloud(cloud, Vec3d(0.0, 0.0, -1.0), Vec3d(0.0, 0.0, 1.0), Color::… in TEST() 203 mesh.cloud = Mat(points, true).reshape(3, 1); in TEST() 245 …viz.showWidget("normals", WCloudNormals(mesh.cloud, mesh.normals, 30, 0.1f, Color::green()), pose); in TEST() [all …]
|
D | test_viz3d.cpp | 48 cv::Mat cloud = cv::viz::readCloud(get_dragon_ply_file_path()); in TEST() local 53 viz.showWidget("cloud", cv::viz::WPaintedCloud(cloud)); in TEST()
|
/external/autotest/apache/conf/ |
D | site-misc-directives | 10 RewriteRule ^/results/([0-9].*) https://storage.cloud.google.com/chromeos-autotest-results/$1 [R=30… 16 RewriteRule ^/results/hosts/(.*/[0-9].*) https://storage.cloud.google.com/chromeos-autotest-results…
|
/external/libweave/src/privet/ |
D | publisher.cc | 30 const CloudDelegate* cloud, in Publisher() argument 33 : dns_sd_{dns_sd}, device_{device}, cloud_{cloud}, wifi_{wifi} { in Publisher()
|
D | wifi_ssid_generator.cc | 48 WifiSsidGenerator::WifiSsidGenerator(const CloudDelegate* cloud, in WifiSsidGenerator() argument 50 : gcd_(cloud), wifi_(wifi), get_random_(base::Bind(&base::RandInt, 0, 99)) { in WifiSsidGenerator()
|
D | privet_handler.cc | 216 const CloudDelegate& cloud) { in CreateManifestSection() argument 219 GetDeviceUiKind(cloud.GetModelId())); in CreateManifestSection() 220 manifest->SetString(kInfoManifestOemName, cloud.GetOemName()); in CreateManifestSection() 221 manifest->SetString(kInfoManifestModelName, cloud.GetModelName()); in CreateManifestSection() 289 const CloudDelegate& cloud) { in CreateGcdSection() argument 291 gcd->SetString(kInfoIdKey, cloud.GetCloudId()); in CreateGcdSection() 292 SetStateProperties(cloud.GetConnectionState(), gcd.get()); in CreateGcdSection() 296 AuthScope GetAnonymousMaxScope(const CloudDelegate& cloud, in GetAnonymousMaxScope() argument 300 return cloud.GetAnonymousMaxScope(); in GetAnonymousMaxScope() 368 PrivetHandler::PrivetHandler(CloudDelegate* cloud, in PrivetHandler() argument [all …]
|
D | publisher.h | 30 const CloudDelegate* cloud,
|
/external/opencv3/doc/tutorials/viz/transformations/ |
D | transformations.markdown | 43 - Create a cloud widget from bunny.ply file 45 /// Create a cloud widget. 67 - Visualize the cloud widget with the estimated global pose
|
/external/libweave/examples/daemon/ |
D | README.md | 31 # Control device with the cloud 56 ### Register device to cloud 108 "parameters": { "name": "cloud user" }
|
/external/autotest/server/site_tests/video_VDAStressSetup/ |
D | control | 16 from cloud storage. Do not run this test. Run server/video_VDAStress.
|
/external/chromium-trace/catapult/third_party/gsutil/ |
D | README.chromium | 3 URL: https://cloud.google.com/storage/docs/gsutil
|
/external/owasp/sanitizer/tools/findbugs/bin/ |
D | findbugs-dbStats | 64 fb_mainclass=edu.umd.cs.findbugs.cloud.db.DBStats
|
/external/skia/site/dev/testing/ |
D | skps.md | 36 * Download the gsutil tool https://developers.google.com/cloud/sdk/#Quick_Start. 58 * Download the gsutil tool https://developers.google.com/cloud/sdk/#Quick_Start.
|
/external/chromium-trace/catapult/dashboard/ |
D | README.md | 8 - [Debugging in production](/dashboard/docs/cloud-debugger.md)
|
/external/autotest/server/site_tests/video_VDAStress/ |
D | control.vp8.private.0 | 16 VDA stress test to download and run with vp8 test videos from cloud storage.
|