Skip to content
Snippets Groups Projects
Commit 3fe04da6 authored by Prakalp Srivastava's avatar Prakalp Srivastava
Browse files

Comment out the imshow in visc_parallel version of pipeline

parent a6a728e7
No related branches found
No related tags found
No related merge requests found
......@@ -942,12 +942,12 @@ int main (int argc, char *argv[]) {
//pb_SwitchToTimer( &timers, pb_TimerID_COMPUTE );
//showInOut(src, E);
Mat in, out;
resize(src, in, Size(HEIGHT, WIDTH));
resize(E, out, Size(HEIGHT, WIDTH));
imshow(input_window, in);
imshow(output_window, out);
waitKey(0);
//Mat in, out;
//resize(src, in, Size(HEIGHT, WIDTH));
//resize(E, out, Size(HEIGHT, WIDTH));
//imshow(input_window, in);
//imshow(output_window, out);
//waitKey(0);
//NUM_FRAMES = 20;
pb_SwitchToTimer( &timers, visc_TimerID_COMPUTATION );
......@@ -1024,13 +1024,13 @@ int main (int argc, char *argv[]) {
//std::cout << "E.data = " << (float*)E.data << "\n";
//std::cout << "Max G = " << *maxG << "\n";
Mat in, out;
resize(src, in, Size(HEIGHT, WIDTH));
//Mat in, out;
//resize(src, in, Size(HEIGHT, WIDTH));
//std::cout << "Show E\n";
resize(E, out, Size(HEIGHT, WIDTH));
imshow(output_window, out);
imshow(input_window, in);
waitKey(1);
//resize(E, out, Size(HEIGHT, WIDTH));
//imshow(output_window, out);
//imshow(input_window, in);
//waitKey(1);
//waitKey(0);
//std::cout << "Show Is\n";
//resize(Is, out, Size(HEIGHT, WIDTH));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment