sophon_ai_project/docs/sail_api/5.resize插值策略.md

17 lines
491 B
Markdown
Raw Normal View History

2025-10-17 16:30:24 +08:00
# resize 插值策略(sail.bmcv_resize_algorithm)
定义图像resize中常见的插值策略
**接口形式**
```python
sail.bmcv_resize_algorithm.BMCV_INTER_NEAREST
sail.bmcv_resize_algorithm.BMCV_INTER_LINEAR
sail.bmcv_resize_algorithm.BMCV_INTER_BICUBIC
```
**参数说明**
- sail.bmcv_resize_algorithm.BMCV_INTER_NEAREST 最近邻插值算法
- sail.bmcv_resize_algorithm.BMCV_INTER_LINEAR 双线性插值算法
- sail.bmcv_resize_algorithm.BMCV_INTER_BICUBIC 双三次插值算法