| 371 | } |
| 372 | |
| 373 | void Matrix::setTo(const double value) |
| 374 | { |
| 375 | try |
| 376 | { |
| 377 | spImpl->mCvMat.setTo(value); |
| 378 | } |
| 379 | catch (const std::exception& e) |
| 380 | { |
| 381 | error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | void Matrix::copyTo(Matrix& outputMat) const |
| 386 | { |