Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 475 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 475 Bytes

Segment Anything

1. 模型简介

该模型是 Segment Anything 的 paddle 实现, 可输入点或框进行分割。

2. 示例

2.1 动态图推理

#box
python run_predict.py \
--input_image mage_you_want_to_seg.jpg \
--box_prompt  x y x y \
--input_type boxs

#points
python run_predict.py \
--input_image mage_you_want_to_seg.jpg \
--points_prompt points x y
--input_type points