Home
last modified time | relevance | path

Searched refs:frameHeight (Results 1 – 21 of 21) sorted by relevance

/external/opencv3/modules/videoio/src/
Dcap_pvapi.cpp100 bool resizeCaptureFrame (int frameWidth, int frameHeight);
187 tPvUint32 frameWidth, frameHeight; in open() local
191 PvAttrUint32Get(Camera.Handle, "Height", &frameHeight); in open()
203 resizeCaptureFrame(frameWidth, frameHeight); in open()
519 bool CvCaptureCAM_PvAPI::resizeCaptureFrame (int frameWidth, int frameHeight) in resizeCaptureFrame() argument
548 if ((frameHeight < 0) || ((tPvUint32)frameHeight > sensorHeight)) in resizeCaptureFrame()
550 frameHeight = sensorHeight; in resizeCaptureFrame()
554 if (PvAttrUint32Set(Camera.Handle, "Height", frameHeight) != ePvErrSuccess) in resizeCaptureFrame()
570 frame = cvCreateImage(cvSize((int)frameWidth, (int)frameHeight), IPL_DEPTH_8U, 1); in resizeCaptureFrame()
577 frame = cvCreateImage(cvSize((int)frameWidth, (int)frameHeight), IPL_DEPTH_16U, 1); in resizeCaptureFrame()
[all …]
Dcap_dc1394_v2.cpp226 int frameWidth, frameHeight; member in CvCaptureCAM_DC1394_v2_CPP
289 frameHeight = 480; in CvCaptureCAM_DC1394_v2_CPP()
367 frameHeight = (int)height; in startCapture()
371 if (userMode == -1 && (frameWidth > 0 || frameHeight > 0)) in startCapture()
387 if ((int)width == frameWidth || (int)height == frameHeight) in startCapture()
664 return frameWidth ? frameWidth : frameHeight*4 / 3; in getProperty()
666 return frameHeight ? frameHeight : frameWidth*3 / 4; in getProperty()
713 frameHeight = 0; in setProperty()
719 frameHeight = cvRound(value); in setProperty()
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
DvktDynamicStateVPTests.cpp156 const deInt32 frameHeight = referenceFrame.getHeight(); in buildReferenceFrame() local
160 for (int y = 0; y < frameHeight; y++) in buildReferenceFrame()
162 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in buildReferenceFrame()
203 const deInt32 frameHeight = referenceFrame.getHeight(); in buildReferenceFrame() local
207 for (int y = 0; y < frameHeight; y++) in buildReferenceFrame()
209 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in buildReferenceFrame()
348 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
352 for (int y = 0; y < frameHeight; y++) in iterate()
354 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
DvktDynamicStateGeneralTests.cpp121 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
125 for (int y = 0; y < frameHeight; y++) in iterate()
127 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
231 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
235 for (int y = 0; y < frameHeight; y++) in iterate()
237 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
381 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
385 for (int y = 0; y < frameHeight; y++) in iterate()
387 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
DvktDynamicStateRSTests.cpp456 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
460 for (int y = 0; y < frameHeight; y++) in iterate()
462 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
562 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
566 for (int y = 0; y < frameHeight; y++) in iterate()
568 float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
668 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
672 for (int y = 0; y < frameHeight; y++) in iterate()
674 float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
679 … float lineHalfWidth = (float)(deFloor(deviceProperties.limits.lineWidthRange[1]) / frameHeight); in iterate()
DvktDynamicStateCBTests.cpp130 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
134 for (int y = 0; y < frameHeight; y++) in iterate()
136 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
DvktDynamicStateDSTests.cpp495 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
499 for (int y = 0; y < frameHeight; y++) in iterate()
501 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
647 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
649 for (int y = 0; y < frameHeight; y++) in iterate()
651 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
817 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
819 for (int y = 0; y < frameHeight; y++) in iterate()
821 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
DVideoCapturerAndroidTestFixtures.java66 public int frameHeight() { in frameHeight() method in VideoCapturerAndroidTestFixtures.RendererCallbacks
107 private int frameHeight = 0; field in VideoCapturerAndroidTestFixtures.FakeCapturerObserver
128 frameHeight = height; in onByteBufferFrameCaptured()
140 frameHeight = height; in onTextureFrameCaptured()
176 int frameHeight() { in frameHeight() method in VideoCapturerAndroidTestFixtures.FakeCapturerObserver
178 return frameHeight; in frameHeight()
385 && observer.frameHeight() == format.height); in startStopWithDifferentResolutions()
387 && observer.frameHeight() == format.width); in startStopWithDifferentResolutions()
389 fail("Wrong resolution, got: " + observer.frameWidth() + "x" + observer.frameHeight() in startStopWithDifferentResolutions()
587 final int startHeight = renderer.frameHeight(); in scaleCameraOutput()
[all …]
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DSurfaceViewRenderer.java100 private int frameHeight; field in SurfaceViewRenderer
254 frameHeight = 0; in release()
342 if (frameWidth == 0 || frameHeight == 0) { in onMeasure()
537 if (frameWidth == 0 || frameHeight == 0) { in frameAspectRatio()
540 return (frameRotation % 180 == 0) ? (float) frameWidth / frameHeight in frameAspectRatio()
541 : (float) frameHeight / frameWidth; in frameAspectRatio()
548 if (frameWidth != frame.width || frameHeight != frame.height in updateFrameDimensionsAndReportEvents()
556 frameHeight = frame.height; in updateFrameDimensionsAndReportEvents()
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawSimpleTest.cpp170 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
176 for (int y = 0; y < frameHeight; y++) in iterate()
178 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
278 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
284 for (int y = 0; y < frameHeight; y++) in iterate()
286 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
DvktDrawIndexedTest.cpp176 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
182 for (int y = 0; y < frameHeight; y++) in iterate()
184 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
299 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
305 for (int y = 0; y < frameHeight; y++) in iterate()
307 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
DvktDrawIndirectTest.cpp294 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
300 for (int y = 0; y < frameHeight; y++) in iterate()
302 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
480 const deInt32 frameHeight = referenceFrame.getHeight(); in iterate() local
486 for (int y = 0; y < frameHeight; y++) in iterate()
488 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f; in iterate()
/external/opencv3/samples/winrt/OcvImageProcessing/OcvImageProcessing/
DMainPage.xaml.cpp75 frameHeight = frame->PixelHeight; in MainPage()
83 Lena = cv::Mat(frameHeight, frameWidth, CV_8UC4); in MainPage()
84 memcpy(Lena.data, srcPixels->Data, 4*frameWidth*frameHeight); in MainPage()
DMainPage.xaml.h49 unsigned int frameWidth, frameHeight; variable
/external/skia/src/codec/
DSkGifCodec.cpp369 int frameHeight = desc.Height; local
375 height = SkTMax(height, frameHeight + frameTop);
380 if (frameLeft < 0 || frameTop < 0 || frameWidth < 0 || frameHeight < 0 || width <= 0 ||
385 frameRect->setXYWH(frameLeft, frameTop, frameWidth, frameHeight);
/external/opencv3/modules/cudacodec/src/
Dvideo_decoder.hpp76 unsigned long frameHeight() const { return createInfo_.ulHeight; } in frameHeight() function in cv::cudacodec::detail::VideoDecoder
Dvideo_parser.cpp107 format->coded_height != thiz->videoDecoder_->frameHeight() || in HandleVideoSequence()
/external/webrtc/webrtc/modules/video_capture/mac/qtkit/
Dvideo_capture_qtkit_objc.mm241 size_t frameHeight = CVPixelBufferGetHeight(videoFrame);
242 size_t frameSize = bytesPerRow * frameHeight;
/external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
DDirect3DInterop.h77 unsigned int frameWidth, frameHeight; variable
/external/robolectric/v3/runtime/
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...