/frameworks/base/media/java/android/mtp/ |
package.html | 3 <p>Provides APIs that let you interact directly with connected cameras and other devices, using the
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowCamera.java | 28 private static Map<Integer, Camera.CameraInfo> cameras = new HashMap<Integer,Camera.CameraInfo>(); field in class:ShadowCamera 104 Camera.CameraInfo foundCam = cameras.get( cameraId ); 111 return cameras.size(); 143 * the existence of one or more cameras. By default, no 144 * cameras are defined. 150 cameras.put(id, camInfo); 154 cameras.clear();
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
motion_estimators.hpp | 60 cameras. 74 @param cameras Estimated camera parameters 79 std::vector<CameraParams> &cameras) 80 { return estimate(features, pairwise_matches, cameras); } 88 @param cameras Estimated camera parameters 93 std::vector<CameraParams> &cameras) = 0; 107 std::vector<CameraParams> &cameras); 148 std::vector<CameraParams> &cameras); 152 @param cameras Camera parameters 154 virtual void setUpInitialCameraParams(const std::vector<CameraParams> &cameras) = 0 [all...] |
/device/generic/goldfish/camera/ |
EmulatedCameraFactory.h | 29 * Contains declaration of a class EmulatedCameraFactory that manages cameras 34 /* Class EmulatedCameraFactoryManages cameras available for the emulation. 37 * it enumerates cameras available for the emulation by connecting to the 40 * cameras. In addition to the cameras reported by the emulator, a fake camera 55 * emulated cameras. All errors that occur on this constructor are reported 133 /* Gets number of emulated cameras. 152 /* Populates emulated cameras array with cameras that are available via 179 /* Array of cameras available for the emulation. * [all...] |
EmulatedCameraFactory.cpp | 18 * Contains implementation of a class EmulatedCameraFactory that manages cameras 51 /* Connect to the factory service in the emulator, and create Qemu cameras. */ 53 /* Connection has succeeded. Create emulated cameras for each camera 65 * cameras created. Note that we preallocate the array so it may contain 66 * two fake cameras: one facing back, and another facing front. */ 122 * cameras created. */ 172 ALOGV("%d cameras are being emulated. %d of them are fake cameras.", 343 * connected cameras found. */ 353 * Calculate number of connected cameras. Number of EOLs in the camera lis [all...] |
EmulatedCameraHal.cpp | 23 * managing emulated cameras.
|
/external/autotest/client/cros/camera/ |
camera_utils.py | 36 cameras = [os.path.basename(camera) for camera in 38 if not cameras: 40 camera = cameras[0]
|
/external/opencv3/modules/stitching/src/ |
motion_estimators.cpp | 63 : num_images(_num_images), pairwise_matches(&_pairwise_matches[0]), cameras(&_cameras[0]) {} 70 K_from(0,0) = cameras[edge.from].focal; 71 K_from(1,1) = cameras[edge.from].focal * cameras[edge.from].aspect; 72 K_from(0,2) = cameras[edge.from].ppx; 73 K_from(1,2) = cameras[edge.from].ppy; 76 K_to(0,0) = cameras[edge.to].focal; 77 K_to(1,1) = cameras[edge.to].focal * cameras[edge.to].aspect; 78 K_to(0,2) = cameras[edge.to].ppx 87 CameraParams* cameras; member in struct:__anon22636::CalcRotation [all...] |
/external/ceres-solver/examples/ |
bundle_adjuster.cc | 41 // a set of cameras P_1, ..., P_m. If the point X_i is visible in 77 "automatic, cameras, points, cameras,points, points,cameras"); 148 double* cameras = bal_problem->mutable_cameras(); local 151 if (FLAGS_blocks_for_inner_iterations == "cameras") { 155 options->inner_iteration_ordering->AddElementToGroup(cameras + camera_block_size * i, 0); 163 } else if (FLAGS_blocks_for_inner_iterations == "cameras,points") { 167 options->inner_iteration_ordering->AddElementToGroup(cameras + camera_block_size * i, 0); 172 } else if (FLAGS_blocks_for_inner_iterations == "points,cameras") { 254 double* cameras = bal_problem->mutable_cameras(); local [all...] |
/external/opencv3/samples/winrt/ImageManipulations/ |
Constants.cpp | 21 { "Enumerate cameras and add a video effect", "SDKSample.MediaCapture.AdvancedCapture" },
|
/packages/apps/Messaging/tests/src/com/android/messaging/ui/mediapicker/ |
MockCameraFactory.java | 48 public static CameraWrapper createCameraWrapper(final Camera... cameras) { 50 Mockito.when(wrapper.getNumberOfCameras()).thenReturn(cameras.length); 54 return cameras[(Integer) invocation.getArguments()[0]]; 61 cameras[(Integer) invocation.getArguments()[0]],
|
/hardware/libhardware/modules/camera/ |
ExampleCamera.h | 25 // contains all logic common between all cameras (e.g. front and back cameras),
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/ |
CameraBinderTestUtils.java | 42 * actually working. On most systems there are only 0, 1, or 2 cameras, 44 * cameras, but this will at least check the first 2. 68 + " cameras");
|
/external/opencv3/modules/python/test/ |
findstereocorrespondence.py | 8 # from the left and the right cameras, respectively
|
/external/opencv3/samples/cpp/ |
stitching_detailed.cpp | 509 vector<CameraParams> cameras; local 510 if (!estimator(features, pairwise_matches, cameras)) 516 for (size_t i = 0; i < cameras.size(); ++i) 519 cameras[i].R.convertTo(R, CV_32F); 520 cameras[i].R = R; 521 LOGLN("Initial intrinsics #" << indices[i]+1 << ":\n" << cameras[i].K()); 540 if (!(*adjuster)(features, pairwise_matches, cameras)) 549 for (size_t i = 0; i < cameras.size(); ++i) 551 LOGLN("Camera #" << indices[i]+1 << ":\n" << cameras[i].K()); 552 focals.push_back(cameras[i].focal) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
functiondiscoverykeys.h | 22 #define PNPX_DEVICECATEGORY_CAMERA L"Cameras"
|
/external/ceres-solver/internal/ceres/ |
visibility_based_preconditioner.h | 74 // the visibility structure of the scene, i.e. which cameras see which 78 // cameras that we expect have strong interactions, and then using the 82 // CLUSTER_JACOBI identifies these camera pairs by clustering cameras, 87 // similarity or the degree of interaction between a pair of cameras 89 // cameras. Thus the name VisibilityBasedPreconditioner. Further, if we 90 // were to permute the parameter blocks such that all the cameras in 101 // 3D points visible to cameras in both the clusters. A degree-2 175 // Mapping from cameras to clusters.
|
/hardware/libhardware/tests/camera3/ |
camera3tests.cpp | 23 ASSERT_LT(0, num_cams()) << "No cameras found"; 24 ASSERT_GE(kMmaxCams, num_cams()) << "Too many cameras found";
|
/external/opencv3/modules/videoio/include/opencv2/ |
videoio.hpp | 163 // Properties of cameras available through OpenNI interfaces 252 // Properties of cameras available through XIMEA SDK interface 276 // Properties of cameras available through AVFOUNDATION interface 285 // Properties of cameras available through Smartek Giganetix Ethernet Vision interface 339 /** @brief Class for video capturing from video files, image sequences or cameras. The class provides C++ API 340 for capturing video from cameras or for reading video files and image sequences. Here is how the 442 The primary use of the function is in multi-camera environments, especially when the cameras do not 446 from different cameras will be closer in time. 496 - **CAP_PROP_BRIGHTNESS** Brightness of the image (only for cameras). 497 - **CAP_PROP_CONTRAST** Contrast of the image (only for cameras) [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/ |
CameraManagerTest.java | 142 * Test: that if the device has front or rear facing cameras, then there 241 // Skip test if the device doesn't have multiple cameras. 251 // Ignore state changes from other cameras 293 * 2) The camera did not open because there were too many other cameras opened. 304 // Camera did not open because too many other cameras were opened 331 // Keep track of cameras so we can close it later 349 * after closing the cameras. 500 String[] cameras = mCameraManager.getCameraIdList(); local 502 if (cameras.length == 0) { 503 Log.i(TAG, "No cameras present, skipping test") [all...] |
/packages/services/Car/car-lib/src/android/car/hardware/camera/ |
CarCameraManager.java | 68 * @return Array of CAR_CAMERA_TYPE_* telling which cameras are present 94 // Find cameraType in the list of available cameras
|
/external/autotest/client/site_tests/camera_V4L2/src/ |
media_v4l2_is_capture_device.cc | 27 // mem2mem devices have V4L2_CAP_VIDEO_OUTPUT but real cameras do not.
|
/external/opencv3/samples/winrt/JavaScript/html/ |
AdvancedCapture.html | 11 This scenario shows how to enumerate cameras in the system.
|
/external/webrtc/webrtc/modules/video_capture/windows/ |
video_capture_ds.h | 71 // Microsoft DV interface (external DV cameras)
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
CameraDeviceInfo.java | 25 * The device info for all attached cameras. 43 * @return The first (lowest) ID of the back cameras or {@code NO_DEVICE} 49 * @return The first (lowest) ID of the front cameras or {@code NO_DEVICE} 116 * cameras, which is necessary iff the OS/driver is
|