runtests 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #!/bin/bash
  2. #
  3. #################################################################################################
  4. # #
  5. # Accuracy test script for OpenCV 3.0 with OpenCL support #
  6. # #
  7. # Before executing this script the following environment variables should be defined: #
  8. # on K2H: export OPENCV_OPENCL_DEVICE='TI KeyStone II:ACCELERATOR:TI Multicore C66 DSP' #
  9. # on AM57: export OPENCV_OPENCL_DEVICE='TI AM57:ACCELERATOR:TI Multicore C66 DSP' #
  10. # #
  11. # export OPENCV_BUILDDIR=<BUILD_DIRECTORY_FOR_OPENCV> #
  12. # export OPENCV_TEST_DATA_PATH=<path to opencv_extra/testdata> #
  13. # #
  14. # The output log is in ./opencv_test_log.out #
  15. # #
  16. #################################################################################################
  17. declare -a modules=("calib3d" "features2d" "flann" "imgcodecs" "ml" "objdetect" "photo" "shape" "stitching" "superres" "video" "videoio")
  18. declare -a dsp_modules=("calib3d" "features2d" "objdetect" "photo" "video")
  19. declare -a dsp_modules_2=("stitching" "videoio")
  20. #OPENCV_BUILDDIR=../../builds/minbuild
  21. export OUTLOG_FILENAME="opencv_test_log.out"
  22. # now loop through the above array with OCL routines (OpenCL enabled)
  23. echo "....................................................................................................."
  24. echo ".................................. OpenCL Tests......................................................"
  25. SECONDS=0
  26. # special tests first
  27. echo "testing core module"
  28. ./test_core_ocl
  29. duration=$SECONDS
  30. SECONDS=0
  31. echo "elapsed time= $(($duration / 60)) minutes and $(($duration % 60)) seconds ."
  32. echo "testing imgproc module"
  33. ./test_imgproc_ocl
  34. curr_duration=$SECONDS
  35. SECONDS=0
  36. duration=$(( duration + curr_duration ))
  37. echo "elapsed time= $(($curr_duration / 60)) minutes and $(($curr_duration % 60)) seconds ."
  38. echo "total time= $(($duration / 60)) minutes and $(($duration % 60)) seconds ."
  39. for i in "${dsp_modules[@]}"
  40. do
  41. testfun=$OPENCV_BUILDDIR/bin/opencv_test_$i
  42. # echo $testfun
  43. if [ -e $testfun ]
  44. then
  45. echo "testing $i module"
  46. eval "$testfun --gtest_filter=OCL*/0:OCL*/1 >> $OUTLOG_FILENAME 2> tmp.txt"
  47. rm /tmp/*open* 2> tmp.txt
  48. fi
  49. # or do whatever with individual element of the array
  50. curr_duration=$SECONDS
  51. SECONDS=0
  52. duration=$(( duration + curr_duration ))
  53. echo "elapsed time= $(($curr_duration / 60)) minutes and $(($curr_duration % 60)) seconds ."
  54. echo "total time= $(($duration / 60)) minutes and $(($duration % 60)) seconds ."
  55. done
  56. for i in "${dsp_modules_2[@]}"
  57. do
  58. testfun=$OPENCV_BUILDDIR/bin/opencv_test_$i
  59. if [ -e $testfun ]
  60. then
  61. echo "testing $i module"
  62. eval "$testfun --gtest_filter=OCL* >> $OUTLOG_FILENAME 2> tmp.txt"
  63. rm /tmp/*open* 2> tmp.txt
  64. fi
  65. # or do whatever with individual element of the array
  66. curr_duration=$SECONDS
  67. SECONDS=0
  68. duration=$(( duration + curr_duration ))
  69. echo "elapsed time= $(($curr_duration / 60)) minutes and $(($curr_duration % 60)) seconds ."
  70. echo "total time= $(($duration / 60)) minutes and $(($duration % 60)) seconds ."
  71. done
  72. echo "....................................................................................................."
  73. echo ".................................. ARM Tests......................................................"
  74. # now loop through the above array with ARM routines (OpenCL disabled)
  75. export OPENCV_OPENCL_DEVICE=
  76. echo "testing core module"
  77. testcmd="$OPENCV_BUILDDIR/bin/opencv_test_core --gtest_filter=-*OCL*:*UMat* >> $OUTLOG_FILENAME 2> tmp.txt"
  78. eval $testcmd
  79. rm /tmp/*open* 2> tmp.txt
  80. curr_duration=$SECONDS
  81. SECONDS=0
  82. duration=$(( duration + curr_duration ))
  83. echo "elapsed time= $(($curr_duration / 60)) minutes and $(($curr_duration % 60)) seconds ."
  84. echo "total time= $(($duration / 60)) minutes and $(($duration % 60)) seconds ."
  85. #echo "testing imgproc module"
  86. testcmd="$OPENCV_BUILDDIR/bin/opencv_test_imgproc --gtest_filter=-*OCL* >> $OUTLOG_FILENAME 2> tmp.txt"
  87. eval $testcmd
  88. rm /tmp/*open* 2> tmp.txt
  89. curr_duration=$SECONDS
  90. SECONDS=0
  91. duration=$(( duration + curr_duration ))
  92. echo "elapsed time= $(($curr_duration / 60)) minutes and $(($curr_duration % 60)) seconds ."
  93. echo "total time= $(($duration / 60)) minutes and $(($duration % 60)) seconds ."
  94. for i in "${modules[@]}"
  95. do
  96. testfun=$OPENCV_BUILDDIR/bin/opencv_test_$i
  97. if [ -f $testfun ];
  98. then
  99. echo "testing $i module"
  100. eval "$testfun --gtest_filter=-*OCL*:*ShapeEMD*:*StereoSGBM*:*seek_random_synthetic*:*Image.write_read*:**ffmpeg_writebig*:*fisheyeTest.rectify*:*Image.write_imageseq* >> $OUTLOG_FILENAME 2> tmp.txt"
  101. rm /tmp/*open* 2> tmp.txt
  102. fi
  103. # or do whatever with individual element of the array
  104. curr_duration=$SECONDS
  105. SECONDS=0
  106. duration=$(( duration + curr_duration ))
  107. echo "elapsed time= $(($curr_duration / 60)) minutes and $(($curr_duration % 60)) seconds ."
  108. echo "total time= $(($duration / 60)) minutes and $(($duration % 60)) seconds ."
  109. done
  110. echo
  111. # now counting the number of errors
  112. all_count=0
  113. pass_count=$(grep -o "OK" $OUTLOG_FILENAME | wc -w)
  114. all_count=$(grep -o "RUN" $OUTLOG_FILENAME | wc -w)
  115. fail_count=$(( all_count - pass_count ))
  116. echo allTests =$all_count, passed=$pass_count, failed=$fail_count