HomeSort by relevance Sort by last modified time
    Searched refs:img_height (Results 1 - 3 of 3) sorted by null

  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height)
41 const double yradius = xradius * img_height / img_width;
45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height);
48 for(int y = id; y < img_height; y += threadcount)
118 int img_height = widget->height()/widget->draft; local
122 render<float>(img_width, img_height);
124 render<double>(img_width, img_height);
mandelbrot.h 31 template<typename Real> void render(int img_width, int img_height);
  /external/opencv/ml/src/
mlcnn.cpp 228 const int img_height = first_layer->input_height;
230 const int img_size = img_width*img_height;
242 CV_CALL(X[0] = cvCreateMat( img_height*img_width,1,CV_32FC1 ));
329 int img_height, img_width, img_size;
341 img_height = first_layer->input_height;
343 img_size = img_height*img_width;
    [all...]

Completed in 1119 milliseconds