SqueezeBrains SDK 1.13
deep_cortex_detect.c
Go to the documentation of this file.
1
44#include "../common/common.h"
45
49int main(void)
50{
52 sb_t_info* sb_info = NULL;
53 SB_HANDLE project = NULL;
54 sb_t_image* image = NULL;
55 sb_t_res* res = NULL;
56 sb_t_par par;
57 sb_t_folder* folder = NULL;
58 sb_t_solution_info* solution = NULL;
59 int i;
60
62 printf("Initialize the SqueezeBrains library\n");
63 CHECK_FN_GOTO(sb_init("../sb.lic"));
64
66#if defined(_WIN32)
67 // "../../../win_x64/dl_framework" is the pre-defined relative path between working directory and SB Deep Learning Framework into the installation folder.
68 CHECK_FN_GOTO(sb_init_dl("../../../win_x64/dl_framework"));
69#else
71#endif
72
73 // Print library version.
74 CHECK_FN_GOTO(sb_get_info(&sb_info, 0));
75 printf("sb ver. %s, compiled on %s %s\n", sb_info->version_str, sb_info->compile_date, sb_info->compile_time);
76
78 printf("wait for license...\n");
80
82 CHECK_FN_GOTO(sb_solution_get_info("solution/deep_cortex_tutorial." SB_SOLUTION_EXT, &solution));
84 CHECK_FN_GOTO(sb_project_load(&project, "solution/deep_cortex_tutorial." SB_SOLUTION_EXT, solution->projects.info[solution->current_project].uuid, SB_PROJECT_MODE_DETECTION_ONLY));
87 CHECK_FN_GOTO(sb_project_get_par(project, &par));
88 par.devices.type = SB_DEVICE_GPU; // set GPU device
89 par.devices.id[0] = 0; // set the first GPU detected on the machine (with index 0)
90 CHECK_FN_GOTO(sb_project_set_par(project, &par));
91 CHECK_FN_GOTO(sb_folder_load(&folder, "dataset", "png", 1, 0));
92 for (i = 0; i < folder->n; i++)
93 {
95 CHECK_FN_GOTO(sb_image_load(&image, folder->file[i].name));
97 CHECK_FN_GOTO(sb_project_detection(project, image, NULL, NULL, NULL));
99 CHECK_FN_GOTO(sb_project_get_res(project, &res, 0));
100 // Print the results
101 printf("image: %s\n", folder->file[i].fname);
102 printf("\t model=\"%s\"\t weight=%f\n", res->samples.sample[0].model_name, res->samples.sample[0].weight);
103 // Destroy the handles.
106 }
107
108FnExit:
110 sb_destroy_info(&sb_info);
111 sb_project_destroy(&project);
112 sb_image_destroy(&image);
113 sb_res_destroy(&res);
114 sb_folder_destroy(&folder);
115 sb_solution_destroy_info(&solution);
116
118 printf("Release SqueezeBrains library\n");
119 sb_release();
120
121 printf("Press ENTER to terminate\n");
122 getchar();
123 return (int)err;
124}
EXTERN_C sb_t_err wait_license(void)
The functions wait until the license status is active.
Definition: common.c:11
#define CHECK_FN_GOTO(function)
Definition: common.h:34
int main(void)
sb_t_err
Errors code enum.
Definition: sb.h:5541
@ SB_ERR_NONE
No errors.
Definition: sb.h:5542
sb_t_err sb_folder_destroy(sb_t_folder **folder)
Frees all the resources of the sb_t_folder structure.
sb_t_err sb_folder_load(sb_t_folder **const f, const char *const path, const char *const ext, int sort, int verbosity)
Creates the list of the name of the files in a specified folder.
sb_t_err sb_destroy_info(sb_t_info **const info)
Destroys the structure.
sb_t_err sb_init_dl(const char *const search_path)
Initialize the Deep Learning library.
sb_t_err sb_release(void)
Releases all the resources allocates in the library.
sb_t_err sb_init(const char *const license_file)
Initializes the SB library.
void * SB_HANDLE
HANDLE definition.
Definition: sb.h:6042
sb_t_err sb_get_info(sb_t_info **const info, int gpu_info)
The function gets information about the sb library and the available computational devices.
@ SB_DEVICE_GPU
GPU device.
Definition: sb.h:6109
sb_t_err sb_image_destroy(sb_t_image **const pimg)
Destroys the image.
sb_t_err sb_image_load(sb_t_image **const img, const char *const file)
Loads an image from a file.
sb_t_err sb_project_set_par(SB_HANDLE handle, const sb_t_par *const par)
Sets the parameters structure into the project handle.
sb_t_err sb_project_get_par(SB_HANDLE handle, sb_t_par *const par)
Retrieves the project parameters structure.
sb_t_err sb_project_load(SB_HANDLE *phandle, const char *const solution_file, const char *const project_uuid, sb_t_project_mode mode)
Loads an existing project from file.
sb_t_err sb_project_detection(SB_HANDLE handle, const sb_t_image *const img, const sb_t_roi *const roi, const sb_t_roi *const roi_defects, const sb_t_samples *const samples)
Detection function.
sb_t_err sb_project_get_res(SB_HANDLE handle, sb_t_res **const res, int details)
Retrieves the results of the last elaborated image.
sb_t_err sb_project_destroy(SB_HANDLE *phandle)
Frees all the resources of the project handle.
@ SB_PROJECT_MODE_DETECTION_ONLY
Load/save the minimum module information to allow detection.
Definition: sb.h:9026
sb_t_err sb_res_destroy(sb_t_res **const res)
Destroys the module results structure.
sb_t_err sb_solution_get_info(const char *const solution_file, sb_t_solution_info **const solution)
Returns the information contained in the solution_file.
#define SB_SOLUTION_EXT
Extension of the SqueezeBrains solution file.
Definition: sb.h:8925
sb_t_err sb_solution_destroy_info(sb_t_solution_info **const solution)
Destroys the structure of the solution information.
int id[SB_DEVICES_MAX_NUMBER]
Identifier of the devices to be used.
Definition: sb.h:10108
sb_t_device_type type
Device type.
Definition: sb.h:10099
char name[256]
Name of the file included of path.
Definition: sb.h:6578
char * fname
Name of file excluded the path.
Definition: sb.h:6579
defines the list of the file in a folder.
Definition: sb.h:6586
sb_t_file * file
Array of files.
Definition: sb.h:6587
int n
Number of elements of the array file.
Definition: sb.h:6588
Defines an image.
Definition: sb.h:7310
General information about sb library and computing devices like CPU and GPUs.
Definition: sb.h:6180
char compile_time[32]
String with the compilation time of the sb library.
Definition: sb.h:6184
char compile_date[32]
String with the compilation date of the sb library.
Definition: sb.h:6183
char version_str[16]
String with the version of the sb library.
Definition: sb.h:6182
Project parameters.
Definition: sb.h:10647
sb_t_devices_par devices
Devices used for detection.
Definition: sb.h:10714
char uuid[SB_PROJECT_UUID_LEN]
Project UUID.
Definition: sb.h:8901
sb_t_project_info * info
Array of solution project information.
Definition: sb.h:8911
Results of detection.
Definition: sb.h:11276
sb_t_samples samples
Samples found in the image.
Definition: sb.h:11296
char model_name[SB_PAR_STRING_LEN]
Name of the model.
Definition: sb.h:8191
float weight
Weight of classification.
Definition: sb.h:8223
sb_t_sample * sample
Pointer to the array of sample. The number of element is sb_t_samples::size .
Definition: sb.h:8378
Solution info structure.
Definition: sb.h:8931
sb_t_projects_info projects
Array of the projects info.
Definition: sb.h:8932
int current_project
Index of the current project in the projects array.
Definition: sb.h:8933