Searched refs:thikness (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/samples/android/image-manipulations/src/org/opencv/samples/imagemanipulations/ |
D | ImageManipulationsActivity.java | 222 int thikness = (int) (sizeRgba.width / (mHistSizeNum + 10) / 5); in onCameraFrame() local 223 if(thikness > 5) thikness = 5; in onCameraFrame() 224 int offset = (int) ((sizeRgba.width - (5*mHistSizeNum + 4*10)*thikness)/2); in onCameraFrame() 231 mP1.x = mP2.x = offset + (c * (mHistSizeNum + 10) + h) * thikness; in onCameraFrame() 234 Imgproc.line(rgba, mP1, mP2, mColorsRGB[c], thikness); in onCameraFrame() 244 mP1.x = mP2.x = offset + (3 * (mHistSizeNum + 10) + h) * thikness; in onCameraFrame() 247 Imgproc.line(rgba, mP1, mP2, mWhilte, thikness); in onCameraFrame() 254 mP1.x = mP2.x = offset + (4 * (mHistSizeNum + 10) + h) * thikness; in onCameraFrame() 257 Imgproc.line(rgba, mP1, mP2, mColorsHue[h], thikness); in onCameraFrame()
|
/external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/OcvTransform/ |
D | OcvTransform.cpp | 1362 int thikness = (int) (BgrFrame.cols / (mHistSizeNum + 10) / 5); in OnProcessOutput() local 1363 if(thikness > 5) thikness = 5; in OnProcessOutput() 1364 int offset = (int) ((BgrFrame.cols - (5*mHistSizeNum + 4*10)*thikness)/2); in OnProcessOutput() 1375 mP1.x = mP2.x = offset + (c * (mHistSizeNum + 10) + h) * thikness; in OnProcessOutput() 1378 cv::line(OutputY, mP1, mP2, mColorsY[c], thikness); in OnProcessOutput() 1385 cv::line(OutputUV, mP1, mP2, mColorsUV[c], thikness/2); in OnProcessOutput()
|