SOD C/C++ API Reference - Image Processing


Syntax

void sod_hough_lines_release(sod_pts *pLines);

Description

Release the sod_pts array obtained from a previous call to sod_hough_lines_detect(). This interface must be called in order to avoid memory leaks.

Parameters

sod_pts    *pLines

A pointer to sod_pts array that is to be released.

Return Value

None.

Example

Checkout the introduction course, the C/C++ samples on the download page or refer to the SOD Github Repository.

See also

sod_canny_edge_imagesod_image_draw_boxsod_image_find_blobssod_hough_lines_detectsod_crop_imagesod_composite_image.



Back