| 18 | } |
| 19 | |
| 20 | int main() { |
| 21 | // Create image processor |
| 22 | auto processor = inspire::nexus::ImageProcessor::Create(inspire::Launch::IMAGE_PROCESSING_RGA); |
| 23 | test_resize(processor, 4); |
| 24 | test_resize(processor, 16); |
| 25 | // wrong aligned width |
| 26 | test_resize(processor, 7); |
| 27 | |
| 28 | return 0; |
| 29 | } |
nothing calls this directly
no test coverage detected