SOD C/C++ API Reference - Image Processing


Syntax

void sod_image_free_blob(unsigned char *zBlob);

Description

Release the raw memory chunk obtained from a prior successful call to sod_image_to_blob(). This interface must be called in order to avoid memory leaks.

Parameters

unsigned char    *zBlob

A pointer to the raw memory chunk 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_find_blobssod_hough_lines_detectsod_img_set_load_from_directorysod_composite_image.



Back