Libvje / contourextract : param 1 naming

* Normal / Reverse
This commit is contained in:
[d.j.a.y] Jerome Blanchi
2016-08-08 11:06:24 +02:00
parent 4b9dd72176
commit ee7b274f32

View File

@@ -86,6 +86,12 @@ vj_effect *contourextract_init(int width, int height)
ve->has_user = 1;
ve->user_data = NULL;
ve->param_description = vje_build_param_list( ve->num_params, "Threshold", "Mode", "Show image/contour", "Thinning", "Min weight" );
ve->hints = vje_init_value_hint_list (ve->num_params);
vje_build_value_hint_list (ve->hints, ve->limits[1][1],1,
"Normal", //0
"Reverse"); //1
return ve;
}