| 12280 | } |
| 12281 | |
| 12282 | bool sam3_save_mask(const sam3_mask& mask, const std::string& path) { |
| 12283 | if (mask.data.empty()) return false; |
| 12284 | return stbi_write_png(path.c_str(), mask.width, mask.height, 1, |
| 12285 | mask.data.data(), mask.width) != 0; |
| 12286 | } |
| 12287 | |
| 12288 | sam3_image sam3_decode_video_frame(const std::string& video_path, int frame_index) { |
| 12289 | sam3_image img; |