\brief Set the kernel weights for the deconvolution. The weights are specified as a contiguous array in \p CKRS order, where \p C the number of input channels, \p K the number of output feature maps, and \p R and \p S are the height and width of the filter. \see getWeights()
| 2626 | //! \see getWeights() |
| 2627 | //! |
| 2628 | void setKernelWeights(Weights weights) noexcept |
| 2629 | { |
| 2630 | mImpl->setKernelWeights(weights); |
| 2631 | } |
| 2632 | |
| 2633 | //! |
| 2634 | //! \brief Get the kernel weights for the deconvolution. |
nothing calls this directly
no test coverage detected