Skip to content

Latest commit

 

History

History
 
 

Sam

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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