1. 19 12月, 2019 14 次提交
  2. 18 12月, 2019 5 次提交
  3. 17 12月, 2019 1 次提交
  4. 15 12月, 2019 3 次提交
  5. 14 12月, 2019 1 次提交
  6. 13 12月, 2019 10 次提交
  7. 12 12月, 2019 3 次提交
    • P
      Merge pull request #16138 from pmur:reg_16137 · 1c4a64f0
      Paul Murphy 提交于
      * imgproc: Prevent 1B overrun of 8C3 SIMD optimization
      
      The fourth value read via v_load_q is essentially ignored,
      but can cause trouble if it happens to cross page boundaries.
      
      The final few iterations may attempt to read the most extreme
      elements of S, which will read 1B beyond the array in most
      aligment cases. Dynamically compute the stop. This could be
      hoised from the loop, but will require a more extensive change.
      
      Likewise, cleanup the iteration increment statements to make
      it more obvious they do channel count (3) elements per pass.
      
      This should resolve #16137
      
      * imgproc(resize): extra check
      1c4a64f0
    • A
      Merge pull request #16120 from alalek:python3.8 · afa07257
      Alexander Alekhin 提交于
      afa07257
    • A
      Merge pull request #16088 from alalek:dnn_eltwise_layer_different_src_channels · 5ee7abbe
      Alexander Alekhin 提交于
      dnn(eltwise): fix handling of different number of channels
      
      * dnn(test): reproducer for Eltwise layer issue from PR16063
      
      * dnn(eltwise): rework support for inputs with different channels
      
      * dnn(eltwise): get rid of finalize(), variableChannels
      
      * dnn(eltwise): update input sorting by number of channels
      
      - do not swap inputs if number of channels are same after truncation
      
      * dnn(test): skip "shortcut" with batch size 2 on MYRIAD targets
      5ee7abbe
  8. 11 12月, 2019 3 次提交