vitis::ai::MedicalSegmentation
Segmentation
database (EDD2020). Input is an image (cv:Mat).
Output is a struct of detection results, named MedicalSegmentationResult
.
Sample code :
Mat img = cv::imread("sample_medicalsegmentation.jpg");
auto medicalsegmentation =
vitis::ai::MedicalSegmentation::create("FPN_Res18_Medical_segmentation",true);
auto results = medicalsegmentation->run(img);
// results is std::vector<cv::Mat>(5) for 5 classes.
// please check test samples for detail usage.
Quick Function Reference
The following table lists all the functions defined in the vitis::ai::MedicalSegmentation
class:
Type | Name | Arguments |
---|---|---|
std::unique_ptr< MedicalSegmentation > | create |
|
vitis::ai::MedicalSegmentationResult | run |
|
std::vector< vitis::ai::MedicalSegmentationResult > | run |
|
int | getInputWidth |
|
int | getInputHeight |
|
size_t | get_input_batch |
|
create
Factory function to get an instance of derived classes of class MedicalSegmentation
.
Prototype
std::unique_ptr< MedicalSegmentation
> create(const std::string &model_name, bool need_preprocess=true);
Parameters
The following table lists the create
function arguments.
Type | Name | Description |
---|---|---|
const std::string & | model_name | Model name |
bool | need_preprocess | Normalize with mean/scale or not, default value is true. |
Returns
An instance ofMedicalSegmentation
class. run
Function of get result of the MedicalSegmentation
neuron network.
Prototype
vitis::ai::MedicalSegmentationResult
run(const cv::Mat &img)=0;
Parameters
The following table lists the run
function arguments.
Type | Name | Description |
---|---|---|
const cv::Mat & | img | Input data of input image (cv::Mat). |
Returns
MedicalSegmentationResult
. run
Function to get running results of the MedicalSegmentation
neuron network in batch mode.
Prototype
std::vector< vitis::ai::MedicalSegmentationResult
> run(const std::vector< cv::Mat > &imgs)=0;
Parameters
The following table lists the run
function arguments.
Type | Name | Description |
---|---|---|
const std::vector< cv::Mat > & | imgs | Input data of input images (vector<cv::Mat>).The size of input images equals batch size obtained by get_input_batch. |
Returns
The vector ofMedicalSegmentationResult
. getInputWidth
Function to get InputWidth of the MedicalSegmentation
network (input image columns).
Prototype
int getInputWidth() const =0;
Returns
InputWidth of theMedicalSegmentation
network. getInputHeight
Function to get InputHeight of the MedicalSegmentation
network (input image rows).
Prototype
int getInputHeight() const =0;
Returns
InputHeight of theMedicalSegmentation
network. get_input_batch
Function to get the number of images processed by the DPU at one time.
Prototype
size_t get_input_batch() const =0;