Home
last modified time | relevance | path

Searched refs:weight_fore (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/gil/image_processing/
Dthreshold.hpp288 std::size_t weight_back = 0, weight_fore = 0, threshold = 0; in otsu_impl() local
301 weight_fore = total_pixel - weight_back; // Weight Foreground in otsu_impl()
302 if (weight_fore == 0) break; in otsu_impl()
307 mean_fore = (sum_total - sum_back) / weight_fore; // Mean Foreground in otsu_impl()
310 … var_intra_class = weight_back * weight_fore * (mean_back - mean_fore) * (mean_back - mean_fore); in otsu_impl()