1. 28 10月, 2019 2 次提交
  2. 27 10月, 2019 1 次提交
  3. 26 10月, 2019 1 次提交
  4. 25 10月, 2019 2 次提交
  5. 24 10月, 2019 3 次提交
  6. 23 10月, 2019 2 次提交
    • C
      Convert demosaic functions to HAL · c46f119e
      ChipKerchner 提交于
      c46f119e
    • F
      Tutorial - Make required input args positional. · 1accf3b3
      float13 提交于
      I think it would help to change all 3 of the the input file arguments to be "positional" for consistency with the other tutorials. This also simplifies the command line input to run this tutorial by reducing typing, and helpfully prints the "usage" info if any of the 3 required inputs are missing.
      
      I'm new to OpenCV and working through the tutorials. I kept getting runtime errors with this one until I realized that the arguments weren't positional, and I was missing the "--input1", "--input2, "--input3" flags preceding the filenames. All of the previous tutorials had required filenames as positional arguments and didn't require this.
      
      The original code would require each input to be specified like this:
      ./compareHist_Demo --input1 filename1 --input2 filename2 --input3 filename3 
      
      But with this change, the above command is simplified to:
      ./compareHist_Demo  filename1 filename2 filename3
      
      This avoids a confusing runtime error to make things simpler for newcomers like me :)
      1accf3b3
  7. 22 10月, 2019 5 次提交
  8. 20 10月, 2019 3 次提交
  9. 19 10月, 2019 7 次提交
  10. 18 10月, 2019 5 次提交
  11. 17 10月, 2019 8 次提交
  12. 16 10月, 2019 1 次提交