天天看點

Halcon 算子翻譯 region_to_mean

名稱

region_to_mean - 用平均灰階值繪制區域。

用法

region_to_mean(Regions, Image : ImageMean : : )

描述

  region_to_mean根據圖像Image傳回一個圖像,其中Regions的區域被繪制為其平均灰階值。 該算子主要是為了将分割結果可視化。

并行

●  多線程類型:可重入(與非獨占算子并行運作)。

●  多線程範圍:全局(可以從任何線程調用)。

●  在通道級别自動并行化處理。

參數

Regions (input_object)   region(-array) → object

  輸入區域。

Image (input_object)    (multichannel-)image → object (byte / uint2)

  原始的灰階值圖像。

ImageMean (output_object)    image → object (byte / uint2)

  結果圖像與繪制區域。

Example (HDevelop)

read_image(Image,'fabrik')
regiongrowing(Image,Regions,3,3,6,100)
region_to_mean(Regions,Image,Disp)
disp_image(Disp,WindowHandle)
set_draw(WindowHandle,'margin')
set_color(WindowHandle,'black')
disp_region(Regions,WindowHandle)      

結果

  如果所有參數都正确,region_to_mean傳回2(H_MSG_TRUE)。 如果輸入為空,則可以通過set_system('no_object_result',<Result>)設定行為。 如有必要,會引發異常。

Possible Predecessors

regiongrowing, connection

Possible Successors

disp_image

Alternatives

子產品

HDevelop例程

繼續閱讀