| 627 | |
| 628 | template <typename T> |
| 629 | void assign_image ( |
| 630 | const long arg_idx, |
| 631 | T&, |
| 632 | const dlib::uint8* data, |
| 633 | long nr, |
| 634 | long nc |
| 635 | ) |
| 636 | { |
| 637 | std::ostringstream sout; |
| 638 | sout << "mex_function has some bug in it related to processing input argument " << arg_idx+1; |
| 639 | throw invalid_args_exception(sout); |
| 640 | } |
| 641 | |
| 642 | template <typename MM> |
| 643 | void assign_image( |
no test coverage detected