Added image width/height to uploaded json

This commit is contained in:
Matt Hill
2014-06-07 13:34:51 -04:00
parent 81bc97db86
commit 19c87c1150

View File

@@ -178,9 +178,6 @@ void streamRecognitionThread(void* arg)
Alpr alpr(tdata->country_code, tdata->config_file); Alpr alpr(tdata->country_code, tdata->config_file);
std::cout << "asdf" << std::endl;
int framenum = 0; int framenum = 0;
VideoBuffer videoBuffer; VideoBuffer videoBuffer;
@@ -224,6 +221,8 @@ void streamRecognitionThread(void* arg)
cJSON_AddStringToObject(root, "uuid", uuid.c_str()); cJSON_AddStringToObject(root, "uuid", uuid.c_str());
cJSON_AddNumberToObject(root, "camera_id", tdata->camera_id); cJSON_AddNumberToObject(root, "camera_id", tdata->camera_id);
cJSON_AddStringToObject(root, "site_id", tdata->site_id.c_str()); cJSON_AddStringToObject(root, "site_id", tdata->site_id.c_str());
cJSON_AddNumberToObject(root, "img_width", latestFrame.cols);
cJSON_AddNumberToObject(root, "img_height", latestFrame.rows);
cJSON_AddItemToObject(root, "results", array); cJSON_AddItemToObject(root, "results", array);
char *out; char *out;
@@ -291,6 +290,7 @@ void dataUploadThread(void* arg)
if (job.id() > 0) if (job.id() > 0)
{ {
//std::cout << job.body() << std::endl;
if (uploadPost(udata->upload_url, job.body())) if (uploadPost(udata->upload_url, job.body()))
{ {
client.del(job.id()); client.del(job.id());